From 48acae7fd0caa32166f9cc3e300e6fd48ec85c37 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Thu, 14 Mar 2024 14:29:06 -0400 Subject: [PATCH 01/21] Saving place. --- .../integration_tests/configured_catalog.json | 21 ++++++++++++++ .../source_bamboo_hr/source.py | 28 +++++++++++++------ .../source_bamboo_hr/utils.py | 26 ++++++++++++++++- 3 files changed, 66 insertions(+), 9 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json index 3138ca460460..5f8f9ffaf2ef 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json @@ -20,6 +20,27 @@ }, "sync_mode": "full_refresh", "destination_sync_mode": "append_dedup" + }, + { + "stream": { + "name": "meta_fields_stream", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "zipcode": { + "type": ["null", "string"] + }, + "terminationDate": { + "type": ["null", "string"] + } + } + }, + "supported_sync_modes": ["full_refresh"], + "supported_destination_sync_modes": ["overwrite", "append_dedup"] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append_dedup" } ] } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 66e893b53743..73c7c5bf4529 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -16,7 +16,7 @@ from airbyte_cdk.sources.streams.http.requests_native_auth import TokenAuthenticator from .exception import AvailableFieldsAccessDeniedError, CustomFieldsAccessDeniedError, NullFieldsError -from .utils import convert_custom_reports_fields_to_list, validate_custom_fields +from .utils import convert_custom_reports_fields_to_list, validate_custom_fields, chunk_iterable class BambooHrStream(HttpStream, ABC): @@ -50,22 +50,30 @@ def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapp yield from response.json() -class EmployeesDirectoryStream(BambooHrStream): - primary_key = "id" +# class EmployeesDirectoryStream(BambooHrStream): +# primary_key = "id" - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - yield from response.json()["employees"] +# def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: +# yield from response.json()["employees"] - def path(self, **kwargs) -> str: - return "employees/directory" +# def path(self, **kwargs) -> str: +# return "employees/directory" class CustomReportsStream(BambooHrStream): primary_key = None def __init__(self, *args, **kwargs): - self._schema = None super().__init__(*args, **kwargs) + self._schema = None + + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: + count = 0 + for fields in chunk_iterable(self.config.get("available_fields"), 100): + print("Yield Count") + print(count) + count += 1 + yield {"fields": fields} @property def schema(self): @@ -158,6 +166,7 @@ def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> if denied_fields: return False, CustomFieldsAccessDeniedError(denied_fields) + try: next(available_fields) return True, None @@ -166,6 +175,9 @@ def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> def streams(self, config: Mapping[str, Any]) -> List[Stream]: config = SourceBambooHr.add_authenticator_to_config(config) + available_fields = list(MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh)) + config["available_fields"] = available_fields return [ + MetaFieldsStream(config), CustomReportsStream(config), ] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py index ea662129fe19..f167747dedca 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py @@ -1,7 +1,7 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # - +import itertools def convert_custom_reports_fields_to_list(custom_reports_fields: str) -> list: return custom_reports_fields.split(",") if custom_reports_fields else [] @@ -15,3 +15,27 @@ def validate_custom_fields(custom_fields, available_fields): denied_fields.append(custom_field) return denied_fields + +def chunk_iterable(iterable, chunk_size): + """ + Generates chunks of the given iterable with the specified size. + + Args: + iterable: An iterable to be chunked. + chunk_size: The size of each chunk. + + Yields: + Chunks of the iterable, each up to the specified size. + """ + # An iterator for the input iterable + iterator = iter(iterable) + + while True: + # Take the next chunk_size elements from the iterator + chunk = tuple(itertools.islice(iterator, chunk_size)) + + if not chunk: + # If the chunk is empty, stop the loop + break + + yield chunk \ No newline at end of file From 52cb6ac983a2077953307b7764808a1d85f77fe0 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 09:51:01 -0400 Subject: [PATCH 02/21] Enhancing support for custom report fields. --- .../source_bamboo_hr/source.py | 34 ++++++++++++++----- .../source_bamboo_hr/utils.py | 6 +++- 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 73c7c5bf4529..226e9485ce92 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -6,7 +6,7 @@ import base64 import logging from abc import ABC -from typing import Any, Iterable, List, Mapping, Optional, Tuple +from typing import Any, Iterable, List, Mapping, Optional, Tuple, NamedTuple, Union import requests from airbyte_cdk.models.airbyte_protocol import SyncMode @@ -49,7 +49,6 @@ def path(self, **kwargs) -> str: def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: yield from response.json() - # class EmployeesDirectoryStream(BambooHrStream): # primary_key = "id" @@ -60,6 +59,15 @@ def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapp # return "employees/directory" +class BambooMetaField(NamedTuple): + """Immutable typed representation of what is returned from the meta/fields + endpoint.""" + id: Union[int, str] + name: str + type: str + alias: Optional[str] = None + deprecated: Optional[bool] = None + class CustomReportsStream(BambooHrStream): primary_key = None @@ -68,11 +76,8 @@ def __init__(self, *args, **kwargs): self._schema = None def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: - count = 0 - for fields in chunk_iterable(self.config.get("available_fields"), 100): - print("Yield Count") - print(count) - count += 1 + for raw_fields in chunk_iterable(self.config.get('available_fields'), 100): + fields = map(lambda field: BambooMetaField(**field), raw_fields) yield {"fields": fields} @property @@ -124,8 +129,19 @@ def path(self, **kwargs) -> str: def http_method(self) -> str: return "POST" - def request_body_json(self, **kwargs) -> Optional[Mapping]: - return {"title": "Airbyte", "fields": list(self.schema["properties"].keys())} + @staticmethod + def _convert_field_to_id(field:BambooMetaField) -> str: + """Converts a BambooMetaField to an id for the custom report endpoint.""" + if field.alias is None: + return str(id) + else: + return field.alias + + + def request_body_json(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> Optional[Mapping]: + fields = stream_slice["fields"] + field_ids = tuple(map(CustomReportsStream._convert_field_to_id, fields)) + return {"title": "Airbyte", "fields": field_ids} def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: yield from response.json()["employees"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py index f167747dedca..c50a30ba8143 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py @@ -1,8 +1,12 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # +from typing import Iterable, Iterator, TypeVar, Tuple import itertools +# T is a generic type variable that can be used to represent any type. +T = TypeVar('T') + def convert_custom_reports_fields_to_list(custom_reports_fields: str) -> list: return custom_reports_fields.split(",") if custom_reports_fields else [] @@ -16,7 +20,7 @@ def validate_custom_fields(custom_fields, available_fields): return denied_fields -def chunk_iterable(iterable, chunk_size): +def chunk_iterable(iterable: Iterable[T], chunk_size: int) -> Iterator[Tuple[T, ...]]: """ Generates chunks of the given iterable with the specified size. From e8e465f9ff6aec0d105c6e3002daf68d3744268e Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 10:26:32 -0400 Subject: [PATCH 03/21] Saving place.: --- .../source_bamboo_hr/schemas/custom_reports_stream.json | 2 +- .../source-bamboo-hr/source_bamboo_hr/source.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json index 8e9482fea238..f35baff6ed75 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json @@ -1,5 +1,5 @@ { - "type": ["null", "object"], + "type": [ "object"], "required": [], "properties": { "acaStatus": { diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 226e9485ce92..10e373fd6006 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -49,6 +49,15 @@ def path(self, **kwargs) -> str: def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: yield from response.json() +class MetaTablesStream(BambooHrStream): + primary_key = None + + def path(self, **kwargs) -> str: + return "meta/tables" + + def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: + yield from response.json() + # class EmployeesDirectoryStream(BambooHrStream): # primary_key = "id" From 25c4ab2df8da917d2e52aa668d93f372bfcba42c Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 12:30:56 -0400 Subject: [PATCH 04/21] Improving streams. --- .../source_bamboo_hr/source.py | 148 ++++++++++++------ 1 file changed, 98 insertions(+), 50 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 10e373fd6006..d9eaa7d32360 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -9,6 +9,7 @@ from typing import Any, Iterable, List, Mapping, Optional, Tuple, NamedTuple, Union import requests +from requests.exceptions import HTTPError from airbyte_cdk.models.airbyte_protocol import SyncMode from airbyte_cdk.sources import AbstractSource from airbyte_cdk.sources.streams import Stream @@ -58,15 +59,6 @@ def path(self, **kwargs) -> str: def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: yield from response.json() -# class EmployeesDirectoryStream(BambooHrStream): -# primary_key = "id" - -# def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: -# yield from response.json()["employees"] - -# def path(self, **kwargs) -> str: -# return "employees/directory" - class BambooMetaField(NamedTuple): """Immutable typed representation of what is returned from the meta/fields @@ -77,6 +69,53 @@ class BambooMetaField(NamedTuple): alias: Optional[str] = None deprecated: Optional[bool] = None +class TablesStream(BambooHrStream): + primary_key = None + raise_on_http_errors = False + skip_http_status_codes = [ + requests.codes.NOT_FOUND, + ] + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self._schema = None + + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: + # Each table has an 'alias' field that we use to grab + # all values. See `path` method for how it's used in the URL. + for meta_table in self.config.get('available_tables'): + table = meta_table.get('alias') + yield {"table": table} + + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + target_table = stream_slice["table"] + return f"employees/all/tables/{target_table}" + + def parse_response(self, response: requests.Response, stream_state: Mapping[str, Any] = None, **kwargs) -> Iterable[Mapping]: + try : + # This will raise an exception if the response is not 2xx + response.raise_for_status() + yield from response.json() + except HTTPError as e: + # If it's one of the status codes we're skipping, log a warning. + # Otherwise, raise the exception. + if not (self.skip_http_status_codes and e.response.status_code in self.skip_http_status_codes): + raise e + self.logger.warning(f"Stream `{self.name}`. An error occurred, details: {e}. Skipping for now.") + yield {} + + def read_records( + self, + sync_mode: SyncMode, + cursor_field: List[str] = None, + stream_slice: Mapping[str, Any] = None, + stream_state: Mapping[str, Any] = None, + ) -> Iterable[Mapping[str, Any]]: + table_name = stream_slice["table"] + for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): + # Augment the record with the table name. + record["knoetic_table_name"] = table_name + yield record class CustomReportsStream(BambooHrStream): primary_key = None @@ -89,47 +128,47 @@ def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: fields = map(lambda field: BambooMetaField(**field), raw_fields) yield {"fields": fields} - @property - def schema(self): - if not self._schema: - self._schema = self.get_json_schema() - return self._schema - - def _get_json_schema_from_config(self): - if self.config.get("custom_reports_fields"): - properties = { - field.strip(): {"type": ["null", "string"]} - for field in convert_custom_reports_fields_to_list(self.config.get("custom_reports_fields", "")) - } - else: - properties = {} - return { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": properties, - } - - def _get_json_schema_from_file(self): - return super().get_json_schema() - - @staticmethod - def _union_schemas(schema1, schema2): - schema1["properties"] = {**schema1["properties"], **schema2["properties"]} - return schema1 - - def get_json_schema(self) -> Mapping[str, Any]: - """ - Returns the JSON schema. - - The final schema is constructed by first generating a schema for the fields - in the config and, if default fields should be included, adding these to the - schema. - """ - schema = self._get_json_schema_from_config() - if self.config.get("custom_reports_include_default_fields"): - default_schema = self._get_json_schema_from_file() - schema = self._union_schemas(default_schema, schema) - return schema + # @property + # def schema(self): + # if not self._schema: + # self._schema = self.get_json_schema() + # return self._schema + + # def _get_json_schema_from_config(self): + # if self.config.get("custom_reports_fields"): + # properties = { + # field.strip(): {"type": ["null", "string"]} + # for field in convert_custom_reports_fields_to_list(self.config.get("custom_reports_fields", "")) + # } + # else: + # properties = {} + # return { + # "$schema": "http://json-schema.org/draft-07/schema#", + # "type": "object", + # "properties": properties, + # } + + # def _get_json_schema_from_file(self): + # return super().get_json_schema() + + # @staticmethod + # def _union_schemas(schema1, schema2): + # schema1["properties"] = {**schema1["properties"], **schema2["properties"]} + # return schema1 + + # def get_json_schema(self) -> Mapping[str, Any]: + # """ + # Returns the JSON schema. + + # The final schema is constructed by first generating a schema for the fields + # in the config and, if default fields should be included, adding these to the + # schema. + # """ + # schema = self._get_json_schema_from_config() + # if self.config.get("custom_reports_include_default_fields"): + # default_schema = self._get_json_schema_from_file() + # schema = self._union_schemas(default_schema, schema) + # return schema def path(self, **kwargs) -> str: return "reports/custom" @@ -200,9 +239,18 @@ def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> def streams(self, config: Mapping[str, Any]) -> List[Stream]: config = SourceBambooHr.add_authenticator_to_config(config) + + # Grabbing these early on and sending them through the config seemed + # simpler than passing them along as parent streams. available_fields = list(MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh)) + available_tables = list(MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh)) + config["available_fields"] = available_fields + config["available_tables"] = available_tables + return [ + MetaTablesStream(config), + TablesStream(config), MetaFieldsStream(config), CustomReportsStream(config), ] From f2311a7bfc074d75056c6c0ac3ef5cd3da04563c Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 12:31:18 -0400 Subject: [PATCH 05/21] Adding schemas. --- .../schemas/meta_fields_stream.json | 24 ++++++++++ .../schemas/meta_tables_stream.json | 47 +++++++++++++++++++ .../schemas/tables_stream.json | 6 +++ 3 files changed, 77 insertions(+) create mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json create mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json create mode 100644 airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json new file mode 100644 index 000000000000..0224432453fb --- /dev/null +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json @@ -0,0 +1,24 @@ +{ + "type": ["array"], + "items": { + "type": ["object"], + "required": ["id", "name", "type"], + "properties": { + "id": { + "type": ["string"] + }, + "name": { + "type": ["string"] + }, + "type": { + "type": ["string"] + }, + "alias": { + "type": ["string"] + }, + "deprecated": { + "type": ["boolean"] + } + } + } +} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json new file mode 100644 index 000000000000..715b2af74dba --- /dev/null +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json @@ -0,0 +1,47 @@ +{ + "type": [ + "array" + ], + "items": { + "type": "object", + "properties": { + "alias": { + "type": [ + "string" + ] + }, + "fields": { + "type": "array", + "items": [ + { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "alias": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "alias", + "type" + ] + } + ] + }, + "required": [ + "alias", + "fields" + ] + } + } +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json new file mode 100644 index 000000000000..b4f0b29e8517 --- /dev/null +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -0,0 +1,6 @@ +{ + "type": [ "object"], + "required": [], + "properties": { + } +} From 418267f151bb9b88b66e5541e8508b29d34a8291 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 15:50:41 -0400 Subject: [PATCH 06/21] A bit more cleanup. --- .../integration_tests/configured_catalog.json | 633 +++++++++++++++++- .../schemas/meta_fields_stream.json | 37 +- .../schemas/meta_tables_stream.json | 79 +-- .../schemas/tables_stream.json | 6 + .../source_bamboo_hr/source.py | 180 ++--- .../source_bamboo_hr/spec.json | 10 - .../source_bamboo_hr/utils.py | 14 - 7 files changed, 776 insertions(+), 183 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json index 5f8f9ffaf2ef..827089f4d23d 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json @@ -2,21 +2,560 @@ "streams": [ { "stream": { - "name": "custom_reports_stream", + "name": "meta_tables_stream", "json_schema": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { - "zipcode": { - "type": ["null", "string"] + "alias": { + "type": [ + "string" + ] + }, + "fields": { + "type": "array", + "items": [ + { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "alias": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "alias", + "type" + ] + } + ] + }, + "required": [ + "alias", + "fields" + ] + } + }, + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append_dedup" + }, + { + "stream": { + "name": "custom_reports_stream", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": [ + "object" + ], + "required": [], + "properties": { + "acaStatus": { + "type": [ + "null", + "string" + ] + }, + "acaStatusCategory": { + "type": [ + "null", + "string" + ] + }, + "address1": { + "type": [ + "null", + "string" + ] + }, + "address2": { + "type": [ + "null", + "string" + ] + }, + "age": { + "type": [ + "null", + "string" + ] + }, + "bestEmail": { + "type": [ + "null", + "string" + ] + }, + "birthday": { + "type": [ + "null", + "string" + ] + }, + "bonusAmount": { + "type": [ + "null", + "string" + ] + }, + "bonusComment": { + "type": [ + "null", + "string" + ] + }, + "bonusDate": { + "type": [ + "null", + "string" + ] + }, + "bonusReason": { + "type": [ + "null", + "string" + ] + }, + "city": { + "type": [ + "null", + "string" + ] + }, + "commissionAmount": { + "type": [ + "null", + "string" + ] + }, + "commissionComment": { + "type": [ + "null", + "string" + ] + }, + "commissionDate": { + "type": [ + "null", + "string" + ] + }, + "commisionDate": { + "type": [ + "null", + "string" + ] + }, + "country": { + "type": [ + "null", + "string" + ] + }, + "createdByUserId": { + "type": [ + "null", + "string" + ] + }, + "dateOfBirth": { + "type": [ + "null", + "string" + ] + }, + "department": { + "type": [ + "null", + "string" + ] + }, + "division": { + "type": [ + "null", + "string" + ] + }, + "eeo": { + "type": [ + "null", + "string" + ] + }, + "employeeNumber": { + "type": [ + "null", + "string" + ] + }, + "employmentHistoryStatus": { + "type": [ + "null", + "string" + ] + }, + "ethnicity": { + "type": [ + "null", + "string" + ] + }, + "exempt": { + "type": [ + "null", + "string" + ] + }, + "firstName": { + "type": [ + "null", + "string" + ] + }, + "flsaCode": { + "type": [ + "null", + "string" + ] + }, + "fullName1": { + "type": [ + "null", + "string" + ] + }, + "fullName2": { + "type": [ + "null", + "string" + ] + }, + "fullName3": { + "type": [ + "null", + "string" + ] + }, + "fullName4": { + "type": [ + "null", + "string" + ] + }, + "fullName5": { + "type": [ + "null", + "string" + ] + }, + "displayName": { + "type": [ + "null", + "string" + ] + }, + "gender": { + "type": [ + "null", + "string" + ] + }, + "hireDate": { + "type": [ + "null", + "string" + ] + }, + "originalHireDate": { + "type": [ + "null", + "string" + ] + }, + "homeEmail": { + "type": [ + "null", + "string" + ] + }, + "homePhone": { + "type": [ + "null", + "string" + ] + }, + "id": { + "type": [ + "null", + "string" + ] + }, + "isPhotoUploaded": { + "type": [ + "null", + "string" + ] + }, + "jobTitle": { + "type": [ + "null", + "string" + ] + }, + "lastChanged": { + "type": [ + "null", + "string" + ] + }, + "lastName": { + "type": [ + "null", + "string" + ] + }, + "location": { + "type": [ + "null", + "string" + ] + }, + "maritalStatus": { + "type": [ + "null", + "string" + ] + }, + "middleName": { + "type": [ + "null", + "string" + ] + }, + "mobilePhone": { + "type": [ + "null", + "string" + ] + }, + "nationalId": { + "type": [ + "null", + "string" + ] + }, + "nationality": { + "type": [ + "null", + "string" + ] + }, + "nin": { + "type": [ + "null", + "string" + ] + }, + "payChangeReason": { + "type": [ + "null", + "string" + ] + }, + "payGroup": { + "type": [ + "null", + "string" + ] + }, + "payGroupId": { + "type": [ + "null", + "string" + ] + }, + "payRate": { + "type": [ + "null", + "string" + ] + }, + "payRateEffectiveDate": { + "type": [ + "null", + "string" + ] + }, + "payType": { + "type": [ + "null", + "string" + ] + }, + "paidPer": { + "type": [ + "null", + "string" + ] + }, + "paySchedule": { + "type": [ + "null", + "string" + ] + }, + "payScheduleId": { + "type": [ + "null", + "string" + ] + }, + "payFrequency": { + "type": [ + "null", + "string" + ] + }, + "includeInPayroll": { + "type": [ + "null", + "string" + ] + }, + "timeTrackingEnabled": { + "type": [ + "null", + "string" + ] + }, + "preferredName": { + "type": [ + "null", + "string" + ] + }, + "ssn": { + "type": [ + "null", + "string" + ] + }, + "sin": { + "type": [ + "null", + "string" + ] + }, + "standardHoursPerWeek": { + "type": [ + "null", + "string" + ] + }, + "state": { + "type": [ + "null", + "string" + ] + }, + "stateCode": { + "type": [ + "null", + "string" + ] + }, + "status": { + "type": [ + "null", + "string" + ] + }, + "supervisor": { + "type": [ + "null", + "string" + ] + }, + "supervisorId": { + "type": [ + "null", + "string" + ] + }, + "supervisorEId": { + "type": [ + "null", + "string" + ] + }, + "supervisorEmail": { + "type": [ + "null", + "string" + ] }, "terminationDate": { - "type": ["null", "string"] + "type": [ + "null", + "string" + ] + }, + "workEmail": { + "type": [ + "null", + "string" + ] + }, + "workPhone": { + "type": [ + "null", + "string" + ] + }, + "workPhonePlusExtension": { + "type": [ + "null", + "string" + ] + }, + "workPhoneExtension": { + "type": [ + "null", + "string" + ] + }, + "zipcode": { + "type": [ + "null", + "string" + ] } } }, - "supported_sync_modes": ["full_refresh"], - "supported_destination_sync_modes": ["overwrite", "append_dedup"] + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] }, "sync_mode": "full_refresh", "destination_sync_mode": "append_dedup" @@ -26,21 +565,87 @@ "name": "meta_fields_stream", "json_schema": { "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", + "type": [ + "object" + ], + "required": [ + "id", + "name", + "type" + ], "properties": { - "zipcode": { - "type": ["null", "string"] + "id": { + "type": [ + "string" + ] }, - "terminationDate": { - "type": ["null", "string"] + "name": { + "type": [ + "string" + ] + }, + "type": { + "type": [ + "string" + ] + }, + "alias": { + "type": [ + "string" + ] + }, + "deprecated": { + "type": [ + "boolean" + ] + } + } + }, + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append_dedup" + }, + { + "stream": { + "name": "tables_stream", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": [ + "object" + ], + "required": [], + "properties": { + "id": { + "type": [ + "int", + "string" + ] + }, + "employeeId": { + "type": [ + "int", + "string" + ] } } }, - "supported_sync_modes": ["full_refresh"], - "supported_destination_sync_modes": ["overwrite", "append_dedup"] + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] }, "sync_mode": "full_refresh", "destination_sync_mode": "append_dedup" } ] -} +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json index 0224432453fb..b17392bcbfcc 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json @@ -1,24 +1,21 @@ { - "type": ["array"], - "items": { - "type": ["object"], - "required": ["id", "name", "type"], - "properties": { - "id": { - "type": ["string"] - }, - "name": { - "type": ["string"] - }, - "type": { - "type": ["string"] - }, - "alias": { - "type": ["string"] - }, - "deprecated": { - "type": ["boolean"] - } + "type": ["object"], + "required": ["id", "name", "type"], + "properties": { + "id": { + "type": ["string"] + }, + "name": { + "type": ["string"] + }, + "type": { + "type": ["string"] + }, + "alias": { + "type": ["string"] + }, + "deprecated": { + "type": ["boolean"] } } } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json index 715b2af74dba..1058b84749b7 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json @@ -1,47 +1,42 @@ { - "type": [ - "array" - ], - "items": { - "type": "object", - "properties": { - "alias": { - "type": [ - "string" - ] - }, - "fields": { - "type": "array", - "items": [ - { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "alias": { - "type": "string" - }, - "type": { - "type": "string" - } + "type": "object", + "properties": { + "alias": { + "type": [ + "string" + ] + }, + "fields": { + "type": "array", + "items": [ + { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "alias": { + "type": "string" }, - "required": [ - "id", - "name", - "alias", - "type" - ] - } - ] - }, - "required": [ - "alias", - "fields" + "type": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "alias", + "type" + ] + } ] - } + }, + "required": [ + "alias", + "fields" + ] } } \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index b4f0b29e8517..8118922f5257 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -2,5 +2,11 @@ "type": [ "object"], "required": [], "properties": { + "id": { + "type": ["int", "string"] + }, + "employeeId": { + "type": ["int", "string"] + } } } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index d9eaa7d32360..9e6ec74f93d8 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -16,8 +16,12 @@ from airbyte_cdk.sources.streams.http import HttpStream from airbyte_cdk.sources.streams.http.requests_native_auth import TokenAuthenticator -from .exception import AvailableFieldsAccessDeniedError, CustomFieldsAccessDeniedError, NullFieldsError -from .utils import convert_custom_reports_fields_to_list, validate_custom_fields, chunk_iterable +from .exception import ( + AvailableFieldsAccessDeniedError, +) +from .utils import ( + chunk_iterable, +) class BambooHrStream(HttpStream, ABC): @@ -27,48 +31,64 @@ def __init__(self, config: Mapping[str, Any]) -> None: @property def url_base(self) -> str: - return f"https://api.bamboohr.com/api/gateway.php/{self.config['subdomain']}/v1/" + return ( + f"https://api.bamboohr.com/api/gateway.php/{self.config['subdomain']}/v1/" + ) def request_headers( - self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, Any] = None, next_page_token: Mapping[str, Any] = None + self, + stream_state: Mapping[str, Any], + stream_slice: Mapping[str, Any] = None, + next_page_token: Mapping[str, Any] = None, ) -> Mapping[str, Any]: return {"Accept": "application/json"} - def next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]: + def next_page_token( + self, response: requests.Response + ) -> Optional[Mapping[str, Any]]: """ BambooHR does not support pagination. """ pass -class MetaFieldsStream(BambooHrStream): - primary_key = None - - def path(self, **kwargs) -> str: - return "meta/fields" - - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: - yield from response.json() - class MetaTablesStream(BambooHrStream): + """.bumpversion.cfg""" + primary_key = None def path(self, **kwargs) -> str: return "meta/tables" - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: + def parse_response( + self, response: requests.Response, **kwargs + ) -> Iterable[Mapping]: yield from response.json() class BambooMetaField(NamedTuple): """Immutable typed representation of what is returned from the meta/fields endpoint.""" + id: Union[int, str] name: str type: str alias: Optional[str] = None deprecated: Optional[bool] = None + +class MetaFieldsStream(BambooHrStream): + primary_key = None + + def path(self, **kwargs) -> str: + return "meta/fields" + + def parse_response( + self, response: requests.Response, **kwargs + ) -> Iterable[Mapping]: + yield from response.json() + + class TablesStream(BambooHrStream): primary_key = None raise_on_http_errors = False @@ -83,25 +103,36 @@ def __init__(self, *args, **kwargs): def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # Each table has an 'alias' field that we use to grab # all values. See `path` method for how it's used in the URL. - for meta_table in self.config.get('available_tables'): - table = meta_table.get('alias') + for meta_table in self.config.get("available_tables"): + table = meta_table.get("alias") yield {"table": table} def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: target_table = stream_slice["table"] return f"employees/all/tables/{target_table}" - def parse_response(self, response: requests.Response, stream_state: Mapping[str, Any] = None, **kwargs) -> Iterable[Mapping]: - try : + def parse_response( + self, + response: requests.Response, + stream_state: Mapping[str, Any] = None, + **kwargs, + ) -> Iterable[Mapping]: + try: # This will raise an exception if the response is not 2xx response.raise_for_status() + # If we're here, no issue. yield from response.json() except HTTPError as e: # If it's one of the status codes we're skipping, log a warning. # Otherwise, raise the exception. - if not (self.skip_http_status_codes and e.response.status_code in self.skip_http_status_codes): + if not ( + self.skip_http_status_codes + and e.response.status_code in self.skip_http_status_codes + ): raise e - self.logger.warning(f"Stream `{self.name}`. An error occurred, details: {e}. Skipping for now.") + self.logger.warning( + f"Stream `{self.name}`. An error occurred, details: {e}. Skipping for now." + ) yield {} def read_records( @@ -112,10 +143,14 @@ def read_records( stream_state: Mapping[str, Any] = None, ) -> Iterable[Mapping[str, Any]]: table_name = stream_slice["table"] - for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): + for record in super().read_records( + sync_mode, cursor_field, stream_slice, stream_state + ): # Augment the record with the table name. record["knoetic_table_name"] = table_name yield record + + class CustomReportsStream(BambooHrStream): primary_key = None @@ -124,52 +159,10 @@ def __init__(self, *args, **kwargs): self._schema = None def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: - for raw_fields in chunk_iterable(self.config.get('available_fields'), 100): + for raw_fields in chunk_iterable(self.config.get("available_fields"), 100): fields = map(lambda field: BambooMetaField(**field), raw_fields) yield {"fields": fields} - # @property - # def schema(self): - # if not self._schema: - # self._schema = self.get_json_schema() - # return self._schema - - # def _get_json_schema_from_config(self): - # if self.config.get("custom_reports_fields"): - # properties = { - # field.strip(): {"type": ["null", "string"]} - # for field in convert_custom_reports_fields_to_list(self.config.get("custom_reports_fields", "")) - # } - # else: - # properties = {} - # return { - # "$schema": "http://json-schema.org/draft-07/schema#", - # "type": "object", - # "properties": properties, - # } - - # def _get_json_schema_from_file(self): - # return super().get_json_schema() - - # @staticmethod - # def _union_schemas(schema1, schema2): - # schema1["properties"] = {**schema1["properties"], **schema2["properties"]} - # return schema1 - - # def get_json_schema(self) -> Mapping[str, Any]: - # """ - # Returns the JSON schema. - - # The final schema is constructed by first generating a schema for the fields - # in the config and, if default fields should be included, adding these to the - # schema. - # """ - # schema = self._get_json_schema_from_config() - # if self.config.get("custom_reports_include_default_fields"): - # default_schema = self._get_json_schema_from_file() - # schema = self._union_schemas(default_schema, schema) - # return schema - def path(self, **kwargs) -> str: return "reports/custom" @@ -178,23 +171,38 @@ def http_method(self) -> str: return "POST" @staticmethod - def _convert_field_to_id(field:BambooMetaField) -> str: + def _convert_field_to_id(field: BambooMetaField) -> str: """Converts a BambooMetaField to an id for the custom report endpoint.""" if field.alias is None: return str(id) else: return field.alias - - def request_body_json(self, stream_slice: Mapping[str, Any] = None, **kwargs) -> Optional[Mapping]: + def request_body_json( + self, stream_slice: Mapping[str, Any] = None, **kwargs + ) -> Optional[Mapping]: fields = stream_slice["fields"] field_ids = tuple(map(CustomReportsStream._convert_field_to_id, fields)) return {"title": "Airbyte", "fields": field_ids} - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: + def parse_response( + self, response: requests.Response, **kwargs + ) -> Iterable[Mapping]: yield from response.json()["employees"] +class EmployeesDirectoryStream(BambooHrStream): + primary_key = "id" + + def parse_response( + self, response: requests.Response, **kwargs + ) -> Iterable[Mapping]: + yield from response.json()["employees"] + + def path(self, **kwargs) -> str: + return "employees/directory" + + class SourceBambooHr(AbstractSource): @staticmethod def _get_authenticator(api_key): @@ -204,7 +212,10 @@ def _get_authenticator(api_key): The API token is concatenated with `:x` and the resulting string is base-64 encoded. See https://documentation.bamboohr.com/docs#authentication """ - return TokenAuthenticator(token=base64.b64encode(f"{api_key}:x".encode("utf-8")).decode("utf-8"), auth_method="Basic") + return TokenAuthenticator( + token=base64.b64encode(f"{api_key}:x".encode("utf-8")).decode("utf-8"), + auth_method="Basic", + ) @staticmethod def add_authenticator_to_config(config: Mapping[str, Any]) -> Mapping[str, Any]: @@ -214,24 +225,20 @@ def add_authenticator_to_config(config: Mapping[str, Any]) -> Mapping[str, Any]: config["authenticator"] = SourceBambooHr._get_authenticator(config["api_key"]) return config - def check_connection(self, logger: logging.Logger, config: Mapping[str, Any]) -> Tuple[bool, Optional[Any]]: + def check_connection( + self, logger: logging.Logger, config: Mapping[str, Any] + ) -> Tuple[bool, Optional[Any]]: """ Verifies the config and attempts to fetch the fields from the meta/fields endpoint. """ config = SourceBambooHr.add_authenticator_to_config(config) - if not config.get("custom_reports_fields") and not config.get("custom_reports_include_default_fields"): - return False, NullFieldsError() - - available_fields = MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh) - custom_fields = convert_custom_reports_fields_to_list(config.get("custom_reports_fields", "")) - denied_fields = validate_custom_fields(custom_fields, available_fields) - - if denied_fields: - return False, CustomFieldsAccessDeniedError(denied_fields) - + available_fields = MetaFieldsStream(config).read_records( + sync_mode=SyncMode.full_refresh + ) try: + # Check to see that we get some fields back. next(available_fields) return True, None except StopIteration: @@ -242,8 +249,12 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: # Grabbing these early on and sending them through the config seemed # simpler than passing them along as parent streams. - available_fields = list(MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh)) - available_tables = list(MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh)) + available_fields = list( + MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh) + ) + available_tables = list( + MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) + ) config["available_fields"] = available_fields config["available_tables"] = available_tables @@ -253,4 +264,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: TablesStream(config), MetaFieldsStream(config), CustomReportsStream(config), + # Keeping this around in case we ever need it, but + # we should be able to get the same data from custom_reports. + # EmployeesDirectoryStream ] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/spec.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/spec.json index 1c362f7fac33..d99ae51b7bc7 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/spec.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/spec.json @@ -15,16 +15,6 @@ "type": "string", "description": "Api key of bamboo hr", "airbyte_secret": true - }, - "custom_reports_fields": { - "type": "string", - "default": "", - "description": "Comma-separated list of fields to include in custom reports." - }, - "custom_reports_include_default_fields": { - "type": "boolean", - "default": true, - "description": "If true, the custom reports endpoint will include the default fields defined here: https://documentation.bamboohr.com/docs/list-of-field-names." } } } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py index c50a30ba8143..c4028b6f3680 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py @@ -4,22 +4,8 @@ from typing import Iterable, Iterator, TypeVar, Tuple import itertools -# T is a generic type variable that can be used to represent any type. T = TypeVar('T') -def convert_custom_reports_fields_to_list(custom_reports_fields: str) -> list: - return custom_reports_fields.split(",") if custom_reports_fields else [] - - -def validate_custom_fields(custom_fields, available_fields): - denied_fields = [] - for custom_field in custom_fields: - has_access_to_custom_field = any(available_field.get("name") == custom_field for available_field in available_fields) - if not has_access_to_custom_field: - denied_fields.append(custom_field) - - return denied_fields - def chunk_iterable(iterable: Iterable[T], chunk_size: int) -> Iterator[Tuple[T, ...]]: """ Generates chunks of the given iterable with the specified size. From 58fd1f54fc588aed8edf875ff2a4ede02e728cb0 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 18 Mar 2024 16:04:13 -0400 Subject: [PATCH 07/21] A bit more cleanup. --- .../sample_files/configured_catalog.json | 646 ++++++++++++++++-- .../source_bamboo_hr/exception.py | 10 - .../source-bamboo-hr/unit_tests/unit_test.py | 66 +- 3 files changed, 602 insertions(+), 120 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json index 2486e6964fb1..827089f4d23d 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json @@ -2,96 +2,650 @@ "streams": [ { "stream": { - "name": "employees_directory_stream", + "name": "meta_tables_stream", "json_schema": { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { - "id": { - "type": ["null", "string"] + "alias": { + "type": [ + "string" + ] }, - "displayName": { - "type": ["null", "string"] + "fields": { + "type": "array", + "items": [ + { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "alias": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "alias", + "type" + ] + } + ] + }, + "required": [ + "alias", + "fields" + ] + } + }, + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append_dedup" + }, + { + "stream": { + "name": "custom_reports_stream", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": [ + "object" + ], + "required": [], + "properties": { + "acaStatus": { + "type": [ + "null", + "string" + ] + }, + "acaStatusCategory": { + "type": [ + "null", + "string" + ] + }, + "address1": { + "type": [ + "null", + "string" + ] + }, + "address2": { + "type": [ + "null", + "string" + ] + }, + "age": { + "type": [ + "null", + "string" + ] + }, + "bestEmail": { + "type": [ + "null", + "string" + ] + }, + "birthday": { + "type": [ + "null", + "string" + ] + }, + "bonusAmount": { + "type": [ + "null", + "string" + ] + }, + "bonusComment": { + "type": [ + "null", + "string" + ] + }, + "bonusDate": { + "type": [ + "null", + "string" + ] + }, + "bonusReason": { + "type": [ + "null", + "string" + ] + }, + "city": { + "type": [ + "null", + "string" + ] + }, + "commissionAmount": { + "type": [ + "null", + "string" + ] + }, + "commissionComment": { + "type": [ + "null", + "string" + ] + }, + "commissionDate": { + "type": [ + "null", + "string" + ] + }, + "commisionDate": { + "type": [ + "null", + "string" + ] + }, + "country": { + "type": [ + "null", + "string" + ] + }, + "createdByUserId": { + "type": [ + "null", + "string" + ] + }, + "dateOfBirth": { + "type": [ + "null", + "string" + ] + }, + "department": { + "type": [ + "null", + "string" + ] + }, + "division": { + "type": [ + "null", + "string" + ] + }, + "eeo": { + "type": [ + "null", + "string" + ] + }, + "employeeNumber": { + "type": [ + "null", + "string" + ] + }, + "employmentHistoryStatus": { + "type": [ + "null", + "string" + ] + }, + "ethnicity": { + "type": [ + "null", + "string" + ] + }, + "exempt": { + "type": [ + "null", + "string" + ] }, "firstName": { - "type": ["null", "string"] + "type": [ + "null", + "string" + ] }, - "lastName": { - "type": ["null", "string"] + "flsaCode": { + "type": [ + "null", + "string" + ] }, - "preferredName": { - "type": ["null", "string"] + "fullName1": { + "type": [ + "null", + "string" + ] + }, + "fullName2": { + "type": [ + "null", + "string" + ] + }, + "fullName3": { + "type": [ + "null", + "string" + ] + }, + "fullName4": { + "type": [ + "null", + "string" + ] + }, + "fullName5": { + "type": [ + "null", + "string" + ] + }, + "displayName": { + "type": [ + "null", + "string" + ] + }, + "gender": { + "type": [ + "null", + "string" + ] + }, + "hireDate": { + "type": [ + "null", + "string" + ] + }, + "originalHireDate": { + "type": [ + "null", + "string" + ] + }, + "homeEmail": { + "type": [ + "null", + "string" + ] + }, + "homePhone": { + "type": [ + "null", + "string" + ] + }, + "id": { + "type": [ + "null", + "string" + ] + }, + "isPhotoUploaded": { + "type": [ + "null", + "string" + ] }, "jobTitle": { - "type": ["null", "string"] + "type": [ + "null", + "string" + ] }, - "workPhone": { - "type": ["null", "string"] + "lastChanged": { + "type": [ + "null", + "string" + ] + }, + "lastName": { + "type": [ + "null", + "string" + ] + }, + "location": { + "type": [ + "null", + "string" + ] + }, + "maritalStatus": { + "type": [ + "null", + "string" + ] + }, + "middleName": { + "type": [ + "null", + "string" + ] }, "mobilePhone": { - "type": ["null", "string"] + "type": [ + "null", + "string" + ] }, - "workEmail": { - "type": ["null", "string"] + "nationalId": { + "type": [ + "null", + "string" + ] }, - "department": { - "type": ["null", "string"] + "nationality": { + "type": [ + "null", + "string" + ] }, - "location": { - "type": ["null", "string"] + "nin": { + "type": [ + "null", + "string" + ] }, - "division": { - "type": ["null", "string"] + "payChangeReason": { + "type": [ + "null", + "string" + ] }, - "linkedIn": { - "type": ["null", "string"] + "payGroup": { + "type": [ + "null", + "string" + ] }, - "pronouns": { - "type": ["null", "string"] + "payGroupId": { + "type": [ + "null", + "string" + ] }, - "workPhoneExtension": { - "type": ["null", "string"] + "payRate": { + "type": [ + "null", + "string" + ] + }, + "payRateEffectiveDate": { + "type": [ + "null", + "string" + ] + }, + "payType": { + "type": [ + "null", + "string" + ] + }, + "paidPer": { + "type": [ + "null", + "string" + ] + }, + "paySchedule": { + "type": [ + "null", + "string" + ] + }, + "payScheduleId": { + "type": [ + "null", + "string" + ] + }, + "payFrequency": { + "type": [ + "null", + "string" + ] + }, + "includeInPayroll": { + "type": [ + "null", + "string" + ] + }, + "timeTrackingEnabled": { + "type": [ + "null", + "string" + ] + }, + "preferredName": { + "type": [ + "null", + "string" + ] + }, + "ssn": { + "type": [ + "null", + "string" + ] + }, + "sin": { + "type": [ + "null", + "string" + ] + }, + "standardHoursPerWeek": { + "type": [ + "null", + "string" + ] + }, + "state": { + "type": [ + "null", + "string" + ] + }, + "stateCode": { + "type": [ + "null", + "string" + ] + }, + "status": { + "type": [ + "null", + "string" + ] }, "supervisor": { - "type": ["null", "string"] + "type": [ + "null", + "string" + ] + }, + "supervisorId": { + "type": [ + "null", + "string" + ] }, - "photoUploaded": { - "type": ["null", "boolean"] + "supervisorEId": { + "type": [ + "null", + "string" + ] }, - "photoUrl": { - "type": ["null", "string"] + "supervisorEmail": { + "type": [ + "null", + "string" + ] }, - "canUploadPhoto": { - "type": ["null", "boolean"] + "terminationDate": { + "type": [ + "null", + "string" + ] + }, + "workEmail": { + "type": [ + "null", + "string" + ] + }, + "workPhone": { + "type": [ + "null", + "string" + ] + }, + "workPhonePlusExtension": { + "type": [ + "null", + "string" + ] + }, + "workPhoneExtension": { + "type": [ + "null", + "string" + ] + }, + "zipcode": { + "type": [ + "null", + "string" + ] } } }, - "supported_sync_modes": ["full_refresh"], - "supported_destination_sync_modes": ["overwrite", "append_dedup"] + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] }, "sync_mode": "full_refresh", "destination_sync_mode": "append_dedup" }, { "stream": { - "name": "custom_reports_stream", + "name": "meta_fields_stream", "json_schema": { "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", + "type": [ + "object" + ], + "required": [ + "id", + "name", + "type" + ], "properties": { - "zipcode": { - "type": ["null", "string"] + "id": { + "type": [ + "string" + ] }, - "terminationDate": { - "type": ["null", "string"] + "name": { + "type": [ + "string" + ] + }, + "type": { + "type": [ + "string" + ] + }, + "alias": { + "type": [ + "string" + ] + }, + "deprecated": { + "type": [ + "boolean" + ] + } + } + }, + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "append_dedup" + }, + { + "stream": { + "name": "tables_stream", + "json_schema": { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": [ + "object" + ], + "required": [], + "properties": { + "id": { + "type": [ + "int", + "string" + ] + }, + "employeeId": { + "type": [ + "int", + "string" + ] } } }, - "supported_sync_modes": ["full_refresh"], - "supported_destination_sync_modes": ["overwrite", "append_dedup"] + "supported_sync_modes": [ + "full_refresh" + ], + "supported_destination_sync_modes": [ + "overwrite", + "append_dedup" + ] }, "sync_mode": "full_refresh", "destination_sync_mode": "append_dedup" } ] -} +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/exception.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/exception.py index ec1c757bc428..616e0f180e97 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/exception.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/exception.py @@ -9,16 +9,6 @@ class BambooHrError(Exception): def __init__(self): super().__init__(self.message) - -class NullFieldsError(BambooHrError): - message = "Field `custom_reports_fields` cannot be empty if `custom_reports_include_default_fields` is false." - - class AvailableFieldsAccessDeniedError(BambooHrError): message = "You hasn't access to any report fields. Please check your access level." - -class CustomFieldsAccessDeniedError(Exception): - def __init__(self, denied_fields): - self.message = f"Access to fields: {', '.join(denied_fields)} - denied. Please check your access level." - super().__init__(self.message) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-bamboo-hr/unit_tests/unit_test.py index b842ff138f36..deb52cbf980f 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/unit_tests/unit_test.py @@ -5,80 +5,18 @@ import pytest from airbyte_cdk.logger import AirbyteLogger from airbyte_cdk.models import Status -from source_bamboo_hr.source import CustomReportsStream, EmployeesDirectoryStream, SourceBambooHr +from source_bamboo_hr.source import EmployeesDirectoryStream, SourceBambooHr @pytest.fixture def config(): - return {"api_key": "foo", "subdomain": "bar", "authenticator": "baz", "custom_reports_include_default_fields": True} - + return {"api_key": "foo", "subdomain": "bar", "authenticator": "baz" } def test_source_bamboo_hr_client_wrong_credentials(): source = SourceBambooHr() result = source.check(logger=AirbyteLogger, config={"subdomain": "test", "api_key": "blah-blah"}) assert result.status == Status.FAILED - -@pytest.mark.parametrize( - "custom_reports_fields,custom_reports_include_default_fields,available_fields,expected_message", - [ - ( - "", - False, - {}, - "NullFieldsError('Field `custom_reports_fields` cannot be empty if `custom_reports_include_default_fields` is false.')", - ), - ("", True, {}, 'AvailableFieldsAccessDeniedError("You hasn\'t access to any report fields. Please check your access level.")'), - ( - "Test", - True, - [{"name": "NewTest"}], - "CustomFieldsAccessDeniedError('Access to fields: Test - denied. Please check your access level.')", - ), - ], -) -def test_check_failed( - config, requests_mock, custom_reports_fields, custom_reports_include_default_fields, available_fields, expected_message -): - config["custom_reports_fields"] = custom_reports_fields - config["custom_reports_include_default_fields"] = custom_reports_include_default_fields - requests_mock.get("https://api.bamboohr.com/api/gateway.php/bar/v1/meta/fields", json=available_fields) - - source = SourceBambooHr() - result = source.check(logger=AirbyteLogger, config=config) - - assert result.status == Status.FAILED - assert result.message == expected_message - - def test_employees_directory_stream_url_base(config): stream = EmployeesDirectoryStream(config) assert stream.url_base == "https://api.bamboohr.com/api/gateway.php/bar/v1/" - - -def test_custom_reports_stream_get_json_schema_from_config(config): - config["custom_reports_fields"] = "one,two , three" - assert CustomReportsStream(config)._get_json_schema_from_config() == { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "one": {"type": ["null", "string"]}, - "two": {"type": ["null", "string"]}, - "three": {"type": ["null", "string"]}, - }, - } - - -def test_custom_reports_stream_union_schemas(): - schema1 = {"properties": {"one": 1, "two": 2}} - schema2 = {"properties": {"two": 2, "three": 3}} - assert CustomReportsStream._union_schemas(schema1, schema2) == {"properties": {"one": 1, "two": 2, "three": 3}} - - -def test_custom_reports_stream_request_body_json(config): - stream = CustomReportsStream(config) - stream._schema = {"properties": {"one": 1, "two": 2}} - assert stream.request_body_json() == { - "title": "Airbyte", - "fields": ["one", "two"], - } From 7edabf024d33cd47f9d612289c056bf552576e5c Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Tue, 19 Mar 2024 14:24:47 -0400 Subject: [PATCH 08/21] Updating schemas so more properties are included. --- .../connectors/source-bamboo-hr/output.json | 31154 ++++++++++++++++ .../schemas/custom_reports_stream.json | 1 + .../schemas/tables_stream.json | 3 +- .../source_bamboo_hr/source.py | 4 + 4 files changed, 31161 insertions(+), 1 deletion(-) create mode 100644 airbyte-integrations/connectors/source-bamboo-hr/output.json diff --git a/airbyte-integrations/connectors/source-bamboo-hr/output.json b/airbyte-integrations/connectors/source-bamboo-hr/output.json new file mode 100644 index 000000000000..17eee83f70b4 --- /dev/null +++ b/airbyte-integrations/connectors/source-bamboo-hr/output.json @@ -0,0 +1,31154 @@ +{"type": "LOG", "log": {"level": "INFO", "message": "Starting syncing SourceBambooHr"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as STARTED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564550.3508, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "STARTED"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: meta_tables_stream "}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as RUNNING"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564720.6099, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "RUNNING"}}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "jobInfo", "fields": [{"id": 4047, "name": "Job Information: Date", "alias": "date", "type": "date"}, {"id": 18, "name": "Location", "alias": "location", "type": "list"}, {"id": 4, "name": "Department", "alias": "department", "type": "list"}, {"id": 1355, "name": "Division", "alias": "division", "type": "list"}, {"id": 17, "name": "Job Title", "alias": "jobTitle", "type": "list"}, {"id": 91, "name": "Reporting to", "alias": "reportsTo", "type": "employee"}]}, "emitted_at": 1710872564719}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employmentStatus", "fields": [{"id": 1936, "name": "Employment Status: Date", "alias": "date", "type": "date"}, {"id": 16, "name": "Employment Status", "alias": "employmentStatus", "type": "list"}, {"id": 4046, "name": "Employment status comments", "alias": "comment", "type": "textarea"}, {"id": 4314, "name": "Termination Reason", "alias": "terminationReasonId", "type": "list"}, {"id": 4313, "name": "Termination Type", "alias": "terminationTypeId", "type": "list"}, {"id": 4315, "name": "Eligible For Re-hire", "alias": "terminationRehireId", "type": "list"}, {"id": 4912, "name": "Regrettable or Non-Regrettable", "alias": "terminationRegrettableId", "type": "list"}]}, "emitted_at": 1710872564721}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "compensation", "fields": [{"id": 4021, "name": "Compensation: Date", "alias": "startDate", "type": "date"}, {"id": 19, "name": "Pay rate", "alias": "rate", "type": "currency"}, {"id": 156, "name": "Pay type", "alias": "type", "type": "pay_type"}, {"id": 4042, "name": "Overtime Status", "alias": "exempt", "type": "exempt"}, {"id": 4017, "name": "Compensation Change Reason", "alias": "reason", "type": "list"}, {"id": 4045, "name": "Compensation comments", "alias": "comment", "type": "textarea"}, {"id": 4330, "name": "Paid per", "alias": "paidPer", "type": "paid_per"}, {"id": 4386, "name": "Pay Schedule", "alias": "paySchedule", "type": "list"}, {"id": 4518, "name": "Overtime Rate", "alias": "overtimeRate", "type": "currency"}]}, "emitted_at": 1710872564721}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "dependents", "fields": [{"id": 1923, "name": "Dependent First Name", "alias": "firstName", "type": "text"}, {"id": 1925, "name": "Dependent Middle Name", "alias": "middleName", "type": "text"}, {"id": 1924, "name": "Dependent Last Name", "alias": "lastName", "type": "text"}, {"id": 1926, "name": "Dependent Relationship", "alias": "relationship", "type": "relationship"}, {"id": 1927, "name": "Dependent Gender", "alias": "gender", "type": "gender"}, {"id": 1929, "name": "Dependent Street 1", "alias": "addressLine1", "type": "text"}, {"id": 1930, "name": "Dependent Street 2", "alias": "addressLine2", "type": "text"}, {"id": 1933, "name": "Dependent SSN", "alias": "ssn", "type": "ssn"}, {"id": 1928, "name": "Dependent Birth Date", "alias": "dateOfBirth", "type": "date"}, {"id": 1931, "name": "Dependent City", "alias": "city", "type": "text"}, {"id": 1932, "name": "Dependent State", "alias": "state", "type": "state"}, {"id": 1935, "name": "Dependent Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 3992, "name": "Dependent Country", "alias": "country", "type": "country"}, {"id": 1934, "name": "Dependent ZIP", "alias": "zipcode", "type": "text"}]}, "emitted_at": 1710872564721}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "contacts", "fields": [{"id": 158, "name": "Emergency Contact Name", "alias": "name", "type": "text"}, {"id": 160, "name": "Emergency Contact Relationship", "alias": "relationship", "type": "list"}, {"id": 159, "name": "Emergency Contact Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 691, "name": "Emergency Contact Street 1", "alias": "addressLine1", "type": "text"}, {"id": 2124, "name": "Emergency Contact Street 2", "alias": "addressLine2", "type": "text"}, {"id": 693, "name": "Emergency Contact Mobile Phone", "alias": "mobilePhone", "type": "phone"}, {"id": 2123, "name": "Emergency Contact Email", "alias": "email", "type": "email"}, {"id": 689, "name": "Emergency Contact ZIP Code", "alias": "zipcode", "type": "text"}, {"id": 692, "name": "Emergency Contact City", "alias": "city", "type": "text"}, {"id": 690, "name": "Emergency Contact State", "alias": "state", "type": "state"}, {"id": 3993, "name": "Emergency Contact Country", "alias": "country", "type": "country"}, {"id": 4044, "name": "Emergency Contact Work Phone", "alias": "workPhone", "type": "phone"}, {"id": 4063, "name": "Emergency Contact Work Ext", "alias": "workPhoneExtension", "type": "text"}, {"id": 4289, "name": "Emergency Contact Primary", "alias": "primaryContact", "type": "checkbox"}]}, "emitted_at": 1710872564722}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "emergencyContacts", "fields": [{"id": 158, "name": "Emergency Contact Name", "alias": "name", "type": "text"}, {"id": 160, "name": "Emergency Contact Relationship", "alias": "relationship", "type": "list"}, {"id": 159, "name": "Emergency Contact Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 691, "name": "Emergency Contact Street 1", "alias": "addressLine1", "type": "text"}, {"id": 2124, "name": "Emergency Contact Street 2", "alias": "addressLine2", "type": "text"}, {"id": 693, "name": "Emergency Contact Mobile Phone", "alias": "mobilePhone", "type": "phone"}, {"id": 2123, "name": "Emergency Contact Email", "alias": "email", "type": "email"}, {"id": 689, "name": "Emergency Contact ZIP Code", "alias": "zipcode", "type": "text"}, {"id": 692, "name": "Emergency Contact City", "alias": "city", "type": "text"}, {"id": 690, "name": "Emergency Contact State", "alias": "state", "type": "state"}, {"id": 3993, "name": "Emergency Contact Country", "alias": "country", "type": "country"}, {"id": 4044, "name": "Emergency Contact Work Phone", "alias": "workPhone", "type": "phone"}, {"id": 4063, "name": "Emergency Contact Work Ext", "alias": "workPhoneExtension", "type": "text"}, {"id": 4289, "name": "Emergency Contact Primary", "alias": "primaryContact", "type": "checkbox"}]}, "emitted_at": 1710872564722}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "earnings", "fields": [{"id": 4148, "name": "Earnings: Date", "alias": "date", "type": "date"}, {"id": 4149, "name": "Earnings: Prior Year W2/K1", "alias": "priorYear", "type": "currency"}]}, "emitted_at": 1710872564722}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "bonus", "fields": [{"id": 4151, "name": "Bonus: Date", "alias": "date", "type": "date"}, {"id": 4152, "name": "Bonus: Amount", "alias": "amount", "type": "currency"}, {"id": 4153, "name": "Bonus: Reason", "alias": "reason", "type": "list"}, {"id": 4154, "name": "Bonus: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564723}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "commission", "fields": [{"id": 4156, "name": "Commission: Date", "alias": "date", "type": "date"}, {"id": 4157, "name": "Commission: Amount", "alias": "amount", "type": "currency"}, {"id": 4158, "name": "Commission: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564723}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "benefit_class", "fields": [{"id": 4164, "name": "Benefit Class: Date", "alias": "date", "type": "date"}, {"id": 4165, "name": "Benefit Class: Class", "alias": "class", "type": "list"}, {"id": 4166, "name": "Benefit Class: Change Reason", "alias": "changeReason", "type": "list"}]}, "emitted_at": 1710872564723}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeVisas", "fields": [{"id": 4169, "name": "Visa:Date", "alias": "date", "type": "date"}, {"id": 4170, "name": "Visa", "alias": "visaType", "type": "list"}, {"id": 4171, "name": "Issuing country", "alias": "country", "type": "country"}, {"id": 4172, "name": "Issued", "alias": "issued", "type": "date"}, {"id": 4173, "name": "Expiration", "alias": "expires", "type": "date"}, {"id": 4174, "name": "Note", "alias": "note", "type": "text"}]}, "emitted_at": 1710872564723}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeEducation", "fields": [{"id": 4293, "name": "College/Institution", "alias": "school", "type": "text"}, {"id": 4297, "name": "Employee Education: Start Date", "alias": "startDate", "type": "date"}, {"id": 4298, "name": "Employee Education: End Date", "alias": "endDate", "type": "date"}, {"id": 4294, "name": "Degree", "alias": "degree", "type": "list"}, {"id": 4295, "name": "Major/Specialization", "alias": "major", "type": "text"}, {"id": 4296, "name": "GPA", "alias": "gpa", "type": "text"}]}, "emitted_at": 1710872564723}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeePassports", "fields": [{"id": 4391, "name": "Passport Number", "alias": "passportNumber", "type": "passport_number"}, {"id": 4392, "name": "Passport: Issued Date", "alias": "issuedDate", "type": "passport_issued"}, {"id": 4393, "name": "Passport: Expiry Date", "alias": "expiryDate", "type": "passport_expiry"}, {"id": 4396, "name": "Issuing Country", "alias": "issuingCountry", "type": "country"}]}, "emitted_at": 1710872564724}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeDriverLicenses", "fields": [{"id": 4532, "name": "Driver License: #", "alias": "license", "type": "text"}, {"id": 4533, "name": "Driver License: State", "alias": "state", "type": "state"}, {"id": 4534, "name": "Driver License: Expiration", "alias": "expirationDate", "type": "date"}, {"id": 4535, "name": "Driver License: Classification", "alias": "driverClassification", "type": "list"}, {"id": 4536, "name": "Driver License: DMV Violations ", "alias": "dmvViolations", "type": "int"}]}, "emitted_at": 1710872564724}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCertifications", "fields": [{"id": 4538, "name": "Certifications: Title", "alias": "title", "type": "list"}, {"id": 4539, "name": "Certifications: Completion Date", "alias": "completionDate", "type": "date"}, {"id": 4540, "name": "Certifications: Number", "alias": "certificationNumber", "type": "text"}, {"id": 4541, "name": "Certifications: Expiration Date", "alias": "expirationDate", "type": "date"}, {"id": 4542, "name": "Certifications: Notes", "alias": "notes", "type": "textarea"}]}, "emitted_at": 1710872564724}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeStockOptions", "fields": [{"id": 4544, "name": "Stock Options: Grant Date", "alias": "grantDate", "type": "date"}, {"id": 4545, "name": "Stock Options: # Options Granted", "alias": "numberOptionsGranted", "type": "text"}, {"id": 4546, "name": "Stock Options: Option Price", "alias": "optionPrice", "type": "currency"}, {"id": 4547, "name": "Stock Options: Vesting Date", "alias": "vestingDate", "type": "date"}, {"id": 4548, "name": "Stock Options: Plan", "alias": "plan", "type": "list"}, {"id": 4549, "name": "Stock Options: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564724}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeAssets", "fields": [{"id": 4551, "name": "Assets: Category", "alias": "category", "type": "list"}, {"id": 4552, "name": "Assets: Description", "alias": "description", "type": "text"}, {"id": 4553, "name": "Assets: Serial Number", "alias": "serialNumber", "type": "text"}, {"id": 4554, "name": "Assets: Date Loaned", "alias": "dateLoaned", "type": "date"}, {"id": 4555, "name": "Assets: Date Returned", "alias": "dateReturned", "type": "date"}, {"id": 4556, "name": "Assets: Cost", "alias": "cost", "type": "currency"}, {"id": 4557, "name": "Assets: Notes", "alias": "notes", "type": "text"}]}, "emitted_at": 1710872564724}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCreditCards", "fields": [{"id": 4380, "name": "Card Type", "alias": "cardType", "type": "list"}, {"id": 4382, "name": "Card #", "alias": "numberLast4", "type": "text"}, {"id": 4383, "name": "Expiration Month", "alias": "expirationMonth", "type": "expiration_month"}, {"id": 4384, "name": "Expiration Year", "alias": "expirationYear", "type": "expiration_year"}, {"id": 4385, "name": "Limit", "alias": "cardLimit", "type": "currency"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidTests", "fields": [{"id": 4614, "name": "Testing Tracker: Test Date", "alias": "testDate", "type": "date"}, {"id": 4615, "name": "Testing Tracker: Results", "alias": "results", "type": "list"}, {"id": 4616, "name": "Testing Tracker: Test Type", "alias": "testType", "type": "list"}, {"id": 4617, "name": "Testing Tracker: Testing Reason", "alias": "testingReason", "type": "list"}, {"id": 4618, "name": "Testing Tracker: Confirmed by HR", "alias": "confirmedByHr", "type": "checkbox"}, {"id": 4619, "name": "Testing Tracker: Office Eligibility", "alias": "officeEligibility", "type": "checkbox"}, {"id": 4620, "name": "Testing Tracker: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidVaccinations", "fields": [{"id": 4622, "name": "Vaccination History: Vaccination Status", "alias": "vaccinationStatus", "type": "list"}, {"id": 4623, "name": "Vaccination History: Administration Date", "alias": "administrationDate", "type": "date"}, {"id": 4624, "name": "Vaccination History: Vaccine Received", "alias": "vaccineReceived", "type": "list"}, {"id": 4625, "name": "Vaccination History: Dosage", "alias": "dosage", "type": "list"}, {"id": 4626, "name": "Vaccination History: Verified", "alias": "verified", "type": "checkbox"}, {"id": 4627, "name": "Vaccination History: Date Verified", "alias": "dateVerified", "type": "date"}, {"id": 4628, "name": "Vaccination History: Office Eligible Date", "alias": "officeEligibleDate", "type": "date"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidVaccinationExemptions", "fields": [{"id": 4630, "name": "Vaccination Exemptions: Exemption Date", "alias": "exemptionDate", "type": "date"}, {"id": 4631, "name": "Vaccination Exemptions: Exemption Reason", "alias": "exemptionReason", "type": "list"}, {"id": 4632, "name": "Vaccination Exemptions: Exemption Documentation Collected", "alias": "exemptionDocumentationCollected", "type": "checkbox"}, {"id": 4633, "name": "Vaccination Exemptions: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidExposures", "fields": [{"id": 4635, "name": "Exposure Tracker: Exposure Date", "alias": "exposureDate", "type": "date"}, {"id": 4636, "name": "Exposure Tracker: Vaccination Status", "alias": "vaccinationStatus", "type": "list"}, {"id": 4637, "name": "Exposure Tracker: Notified", "alias": "notified", "type": "checkbox"}, {"id": 4638, "name": "Exposure Tracker: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeEquityGrants", "fields": [{"id": 4933, "name": "Equity: Grant Type", "alias": "grantTypeId", "type": "list"}, {"id": 4934, "name": "Equity: Custom Grant Type Name", "alias": "customGrantTypeName", "type": "text"}, {"id": 4931, "name": "Equity: Grant Date", "alias": "grantDate", "type": "date"}, {"id": 4932, "name": "Equity: Vesting Start Date", "alias": "vestingStartDate", "type": "date"}, {"id": 4935, "name": "Equity: # of Equity Granted", "alias": "numberOfEquityGranted", "type": "int"}, {"id": 4936, "name": "Equity: Strike Price", "alias": "strikePrice", "type": "currency"}, {"id": 4937, "name": "Equity: Vesting Schedule", "alias": "vestingScheduleTypeId", "type": "list"}, {"id": 4938, "name": "Equity: Vesting Months", "alias": "vestingMonths", "type": "int"}, {"id": 4939, "name": "Equity: Cliff Months", "alias": "cliffMonths", "type": "int"}]}, "emitted_at": 1710872564725}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "levelsAndBands", "fields": [{"id": 5020, "name": "Levels and Bands: Name", "alias": "name", "type": "text"}, {"id": 5021, "name": "Levels and Bands: Mid", "alias": "mid", "type": "int"}, {"id": 5022, "name": "Levels and Bands: Low", "alias": "low", "type": "int"}, {"id": 5023, "name": "Levels and Bands: High", "alias": "high", "type": "int"}, {"id": 5024, "name": "Levels and Bands: Currency Code", "alias": "currencyCode", "type": "text"}, {"id": 5025, "name": "Levels and Bands: Percentage Range", "alias": "percentageRange", "type": "percentage"}, {"id": 5026, "name": "Levels and Bands: Compensation Type", "alias": "compensationType", "type": "text"}]}, "emitted_at": 1710872564726}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeProjectPayRates", "fields": [{"id": 5068, "name": "Project Pay Rates: Start Date", "alias": "startDate", "type": "date"}, {"id": 5069, "name": "Project Pay Rates: End Date", "alias": "endDate", "type": "date"}, {"id": 5070, "name": "Project Pay Rates: Project or Task Name", "alias": "projectTask", "type": "project_task"}, {"id": 5071, "name": "Project Pay Rates: Pay Rate", "alias": "payRate", "type": "currency"}, {"id": 5072, "name": "Project Pay Rates: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564726}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customBonus", "fields": [{"id": 4483, "name": "Spot Bonus - Date", "alias": "customDate", "type": "date"}, {"id": 4484, "name": "Spot Bonus: Amount", "alias": "customAmount", "type": "currency"}, {"id": 4485, "name": "Bonus Reason", "alias": "customBonusReason", "type": "list"}, {"id": 4486, "name": "Spot Bonus: Comment", "alias": "customComment", "type": "textarea"}]}, "emitted_at": 1710872564726}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customTargetVariable", "fields": [{"id": 4488, "name": "Target Variable - Date", "alias": "customDate1", "type": "date"}, {"id": 4489, "name": "Target Variable: Amount", "alias": "customAmount1", "type": "currency"}, {"id": 4490, "name": "Target Variable Reason", "alias": "customTargetVariableReason", "type": "list"}, {"id": 4491, "name": "Target Variable: Comment", "alias": "customComment1", "type": "textarea"}, {"id": 4568, "name": "Target Variable: Change Reason", "alias": "customChangeReason", "type": "list"}]}, "emitted_at": 1710872564726}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAdditionalJobInformation", "fields": [{"id": 4497, "name": "Effective Date - Additional Job Information", "alias": "customEffectiveDate", "type": "date"}, {"id": 4498, "name": "Division #", "alias": "customDepartment#", "type": "list"}, {"id": 4499, "name": "Team Name", "alias": "customJobCode", "type": "list"}, {"id": 4500, "name": "Entity", "alias": "customHRTitle", "type": "list"}, {"id": 4561, "name": "Headcount", "alias": "customHeadcount", "type": "list"}, {"id": 4650, "name": "E-staff", "alias": "customE-staff", "type": "employee"}, {"id": 4901, "name": "Job Change Reason", "alias": "customJobChangeReason", "type": "text"}, {"id": 5074, "name": "Position #", "alias": "customPosition", "type": "list"}]}, "emitted_at": 1710872564726}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAssets", "fields": [{"id": 4507, "name": "Asset category", "alias": "customAssetcategory", "type": "list"}, {"id": 4508, "name": "Asset description", "alias": "customAssetdescription", "type": "text"}, {"id": 4509, "name": "Serial #", "alias": "customSerial#", "type": "text"}, {"id": 4510, "name": "Date loaned", "alias": "customDateloaned", "type": "date"}, {"id": 4511, "name": "Date returned", "alias": "customDatereturned", "type": "date"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customStockOptions", "fields": [{"id": 4606, "name": "Effective Date - Stock Options", "alias": "customEffectiveDate1", "type": "date"}, {"id": 4608, "name": "Stock Options: Change Reason", "alias": "customChangeReason1", "type": "list"}, {"id": 4609, "name": "Stock Options: Amount", "alias": "customAmount2", "type": "int"}, {"id": 4765, "name": "Stock Options: Comment", "alias": "customComment2", "type": "text"}, {"id": 5076, "name": "Stock Options: Date Added", "alias": "customDateAdded", "type": "date"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customJobLeveling", "fields": [{"id": 4852, "name": "Corporate Job Level", "alias": "customCorporateJobLevel", "type": "list"}, {"id": 4855, "name": "Effective Date - Job Leveling", "alias": "customEffectiveDate-JobLeveling", "type": "date"}, {"id": 4856, "name": "Corporate Title", "alias": "customCorporateTitle", "type": "list"}, {"id": 4860, "name": "Comments", "alias": "customComments1", "type": "textarea"}, {"id": 4863, "name": "Benchmark Code", "alias": "customBenchmarkCode", "type": "text"}, {"id": 4913, "name": "Corporate Career Path", "alias": "customCorporateCareerPath", "type": "list"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customSalesJobInformation", "fields": [{"id": 4965, "name": "Effective Date - Sales", "alias": "customEffectiveDate-Sales", "type": "date"}, {"id": 4966, "name": "MBO", "alias": "customMBO", "type": "list"}, {"id": 4967, "name": "% Sales Commissions", "alias": "custom%SalesCommissions", "type": "textarea"}, {"id": 4968, "name": "% Variable Bonus", "alias": "custom%VariableBonus", "type": "textarea"}, {"id": 4969, "name": "Non-Recoverable Draw", "alias": "customNon-RecoverableDraw", "type": "list"}, {"id": 4970, "name": "Non-Recoverable Draw Monthly Amount", "alias": "customNon-RecoverableDrawMonthlyAmount", "type": "currency"}, {"id": 4971, "name": "Non-Recoverable Draw Total Amount", "alias": "customNon-RecoverableDrawTotalAmount", "type": "currency"}, {"id": 4974, "name": "Recoverable Draw", "alias": "customRecoverableDraw", "type": "list"}, {"id": 4975, "name": "Recoverable Draw Monthly Amount", "alias": "customRecoverableDrawMonthlyAmount", "type": "currency"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customTemporaryHireInformation", "fields": [{"id": 4999, "name": "Effective Date - Non-Employee", "alias": "customEffectiveDate-TemporaryHire", "type": "date"}, {"id": 5000, "name": "Non-Employee Type", "alias": "customTemporaryHireType", "type": "list"}, {"id": 5001, "name": "Agency Name", "alias": "customAgencyName", "type": "text"}, {"id": 5002, "name": "Anticipated End Date", "alias": "customAnticipatedEndDate", "type": "date"}, {"id": 5066, "name": "Notice Requirement", "alias": "customNoticeRequirement", "type": "textarea"}, {"id": 5067, "name": "Comments - Non-Employee", "alias": "customCommentsNonEmployee", "type": "textarea"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customContractExceptions", "fields": [{"id": 5085, "name": "Prior Inventions", "alias": "customPriorInventions", "type": "list"}, {"id": 5087, "name": "Guaranteed Severance", "alias": "customGuaranteedSeverance1", "type": "list"}, {"id": 5088, "name": "Vesting Acceleration", "alias": "customVestingAcceleration1", "type": "list"}, {"id": 5089, "name": "Notes", "alias": "customNotes", "type": "textarea"}, {"id": 5090, "name": "Post Term Obligations", "alias": "customPostTermObligations", "type": "textarea"}, {"id": 5104, "name": "Effective Date - Contract Exceptions", "alias": "customEffectiveDateContractExceptions", "type": "date"}]}, "emitted_at": 1710872564727}} +{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAuraRoles", "fields": [{"id": 5110, "name": "Effective Date", "alias": "customEffectiveDate2", "type": "date"}, {"id": 5111, "name": "Aura Role Indicator", "alias": "customAuraRoleIndicator", "type": "list"}, {"id": 5112, "name": "Aura Role", "alias": "customAuraRole4", "type": "list"}, {"id": 5113, "name": "Changed By", "alias": "customChangedBy", "type": "list"}, {"id": 5114, "name": "Change Reason", "alias": "customChangeReason2", "type": "text"}]}, "emitted_at": 1710872564728}} +{"type": "LOG", "log": {"level": "INFO", "message": "Read 35 records from meta_tables_stream stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as STOPPED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564728.6602, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "COMPLETE"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing meta_tables_stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream meta_tables_stream 0:00:00.390416"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as STARTED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872565059.883, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "STARTED"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: custom_reports_stream "}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as RUNNING"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872565472.272, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "RUNNING"}}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872565471}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Full-Time to Part-Time", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "payRateEffectiveDate": "2014-12-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "payRateEffectiveDate": "2019-10-16", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Market Adj", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "payRateEffectiveDate": "2024-01-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "G&A"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Solutions Eng (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "payRateEffectiveDate": "2022-02-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "payRateEffectiveDate": "2021-10-15", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "payRateEffectiveDate": "2018-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "payRateEffectiveDate": "2019-12-15", "payChangeReason": "Market Adj", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "payRateEffectiveDate": "2018-09-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "payRateEffectiveDate": "2018-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "payRateEffectiveDate": "2019-01-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "payRateEffectiveDate": "2019-01-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "payRateEffectiveDate": "2019-01-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "payRateEffectiveDate": "2021-01-25", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "payRateEffectiveDate": "2019-04-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "payRateEffectiveDate": "2019-05-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "payRateEffectiveDate": "2019-05-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "payRateEffectiveDate": "2019-06-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "payRateEffectiveDate": "2019-06-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "payRateEffectiveDate": "2019-07-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "payRateEffectiveDate": "2019-07-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Aura Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "payRateEffectiveDate": "2019-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "payRateEffectiveDate": "2019-10-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "payRateEffectiveDate": "2018-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "payRateEffectiveDate": "2021-03-07", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "payRateEffectiveDate": "2020-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "payRateEffectiveDate": "2019-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "payRateEffectiveDate": "2017-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "payRateEffectiveDate": "2018-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "payRateEffectiveDate": "2017-11-06", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "payRateEffectiveDate": "2019-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "payRateEffectiveDate": "2020-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "payRateEffectiveDate": "2019-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "payRateEffectiveDate": "2017-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "payRateEffectiveDate": "2019-11-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "payRateEffectiveDate": "2019-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "payRateEffectiveDate": "2021-08-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "payRateEffectiveDate": "2023-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "payRateEffectiveDate": "2019-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "payRateEffectiveDate": "2017-05-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "payRateEffectiveDate": "2019-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "payRateEffectiveDate": "2018-05-07", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "payRateEffectiveDate": "2018-05-14", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "payRateEffectiveDate": "2018-09-24", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "payRateEffectiveDate": "2023-09-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "payRateEffectiveDate": "2019-01-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "payRateEffectiveDate": "2019-02-04", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "payRateEffectiveDate": "2020-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "payRateEffectiveDate": "2019-02-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "payRateEffectiveDate": "2019-04-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "payRateEffectiveDate": "2019-05-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "payRateEffectiveDate": "2019-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "payRateEffectiveDate": "2020-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "payRateEffectiveDate": "2022-11-14", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "payRateEffectiveDate": "2021-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": null}, "emitted_at": 1710872567059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "payRateEffectiveDate": "2019-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "payRateEffectiveDate": "2019-06-02", "payChangeReason": null, "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "payRateEffectiveDate": "2019-06-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "payRateEffectiveDate": "2017-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "payRateEffectiveDate": "2013-08-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "payRateEffectiveDate": "2009-11-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "payRateEffectiveDate": "2018-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "payRateEffectiveDate": "2018-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "payRateEffectiveDate": "2011-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "payRateEffectiveDate": "2011-05-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "payRateEffectiveDate": "2011-09-20", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "payRateEffectiveDate": "2011-10-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "payRateEffectiveDate": "2013-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "payRateEffectiveDate": "2012-09-24", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "payRateEffectiveDate": "2012-11-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "payRateEffectiveDate": "2013-01-28", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "payRateEffectiveDate": "2014-01-02", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "payRateEffectiveDate": "2017-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "payRateEffectiveDate": "2014-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "payRateEffectiveDate": "2014-05-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "payRateEffectiveDate": "2014-10-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "payRateEffectiveDate": "2015-01-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "payRateEffectiveDate": "2015-10-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "payRateEffectiveDate": "2015-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "payRateEffectiveDate": "2016-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Support Eng (EMEA)", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "payRateEffectiveDate": "2017-11-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "payRateEffectiveDate": "2016-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "payRateEffectiveDate": "2016-06-06", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "payRateEffectiveDate": "2017-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "payRateEffectiveDate": "2017-01-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "payRateEffectiveDate": "2018-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "payRateEffectiveDate": "2017-03-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "payRateEffectiveDate": "2017-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "payRateEffectiveDate": "2017-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "payRateEffectiveDate": "2017-04-03", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "payRateEffectiveDate": "2017-04-17", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "payRateEffectiveDate": "2017-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "payRateEffectiveDate": "2019-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "payRateEffectiveDate": "2017-09-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "payRateEffectiveDate": "2017-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "payRateEffectiveDate": "2017-10-03", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "payRateEffectiveDate": "2017-10-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "payRateEffectiveDate": "2017-11-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "payRateEffectiveDate": "2018-01-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "payRateEffectiveDate": "2018-01-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "payRateEffectiveDate": "2018-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "payRateEffectiveDate": "2018-03-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "payRateEffectiveDate": "2018-03-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "payRateEffectiveDate": "2018-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "payRateEffectiveDate": "2018-06-11", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "payRateEffectiveDate": "2018-06-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting-US", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "payRateEffectiveDate": "2018-06-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "payRateEffectiveDate": "2019-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "payRateEffectiveDate": "2018-07-16", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "payRateEffectiveDate": "2018-08-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "payRateEffectiveDate": "2019-03-25", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "payRateEffectiveDate": "2019-04-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "payRateEffectiveDate": "2019-07-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "payRateEffectiveDate": "2020-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "payRateEffectiveDate": "2020-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "payRateEffectiveDate": "2019-12-10", "payChangeReason": null, "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "payRateEffectiveDate": "2019-10-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "G&A"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "payRateEffectiveDate": "2019-11-11", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "payRateEffectiveDate": "2020-01-21", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "payRateEffectiveDate": "2019-12-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Analytics", "division": "G&A"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "payRateEffectiveDate": "2020-02-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "payRateEffectiveDate": "2017-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "payRateEffectiveDate": "2020-03-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "payRateEffectiveDate": "2020-04-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "payRateEffectiveDate": "2020-03-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "payRateEffectiveDate": "2019-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "payRateEffectiveDate": "2020-04-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "payRateEffectiveDate": "2021-07-21", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "payRateEffectiveDate": "2023-11-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "payRateEffectiveDate": "2021-10-28", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "payRateEffectiveDate": "2020-07-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "payRateEffectiveDate": "2020-06-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "payRateEffectiveDate": "2020-09-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "payRateEffectiveDate": "2020-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "payRateEffectiveDate": "2023-08-26", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "payRateEffectiveDate": "2023-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "payRateEffectiveDate": "2020-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "payRateEffectiveDate": "2021-02-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "payRateEffectiveDate": "2020-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "payRateEffectiveDate": "2023-05-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "payRateEffectiveDate": "2020-10-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "payRateEffectiveDate": "2020-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "payRateEffectiveDate": "2021-08-21", "payChangeReason": "Full-Time to Part-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "payRateEffectiveDate": "2020-11-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "payRateEffectiveDate": "2020-11-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "payRateEffectiveDate": "2021-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "payRateEffectiveDate": "2020-11-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "payRateEffectiveDate": "2022-01-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "payRateEffectiveDate": "2020-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "payRateEffectiveDate": "2024-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "payRateEffectiveDate": "2023-09-18", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "payRateEffectiveDate": "2021-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "payRateEffectiveDate": "2020-12-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "payRateEffectiveDate": "2021-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "payRateEffectiveDate": "2021-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "payRateEffectiveDate": "2021-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "payRateEffectiveDate": "2021-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "payRateEffectiveDate": "2021-04-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Aura Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "payRateEffectiveDate": "2021-03-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "payRateEffectiveDate": "2021-09-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "payRateEffectiveDate": "2021-03-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "payRateEffectiveDate": "2021-03-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "payRateEffectiveDate": "2021-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "payRateEffectiveDate": "2021-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "payRateEffectiveDate": "2022-02-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "payRateEffectiveDate": "2021-04-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "payRateEffectiveDate": "2021-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "payRateEffectiveDate": "2021-06-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "payRateEffectiveDate": "2020-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "payRateEffectiveDate": "2021-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "payRateEffectiveDate": "2021-05-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "payRateEffectiveDate": "2021-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "payRateEffectiveDate": "2021-07-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "payRateEffectiveDate": "2021-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "payRateEffectiveDate": "2021-06-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "payRateEffectiveDate": "2021-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "payRateEffectiveDate": "2021-05-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "payRateEffectiveDate": "2021-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "payRateEffectiveDate": "2021-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "payRateEffectiveDate": "2021-07-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "payRateEffectiveDate": "2021-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "payRateEffectiveDate": "2021-07-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "payRateEffectiveDate": "2022-06-07", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "payRateEffectiveDate": "2021-08-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "payRateEffectiveDate": "2021-07-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "payRateEffectiveDate": "2021-08-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "payRateEffectiveDate": "2021-07-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "payRateEffectiveDate": "2021-07-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "payRateEffectiveDate": "2021-08-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "payRateEffectiveDate": "2021-08-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "payRateEffectiveDate": "2021-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "payRateEffectiveDate": "2021-08-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "payRateEffectiveDate": "2023-08-14", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "payRateEffectiveDate": "2021-09-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "payRateEffectiveDate": "2022-01-04", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "payRateEffectiveDate": "2021-09-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "payRateEffectiveDate": "2021-09-27", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "payRateEffectiveDate": "2021-09-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "payRateEffectiveDate": "2021-10-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "payRateEffectiveDate": "2021-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "payRateEffectiveDate": "2021-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "payRateEffectiveDate": "2021-11-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "payRateEffectiveDate": "2021-09-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "payRateEffectiveDate": "2021-10-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "payRateEffectiveDate": "2021-10-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "payRateEffectiveDate": "2023-03-13", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "payRateEffectiveDate": "2023-03-13", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "payRateEffectiveDate": "2021-10-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "payRateEffectiveDate": "2022-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "payRateEffectiveDate": "2022-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "payRateEffectiveDate": "2022-01-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "payRateEffectiveDate": "2022-04-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Analytics", "division": "G&A"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "payRateEffectiveDate": "2022-02-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "payRateEffectiveDate": "2022-03-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "payRateEffectiveDate": "2022-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "payRateEffectiveDate": "2022-02-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "payRateEffectiveDate": "2022-02-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "payRateEffectiveDate": "2022-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "payRateEffectiveDate": "2023-05-30", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "payRateEffectiveDate": "2022-02-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "payRateEffectiveDate": "2022-03-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "payRateEffectiveDate": "2022-05-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "payRateEffectiveDate": "2022-04-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "payRateEffectiveDate": "2022-06-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "payRateEffectiveDate": "2022-04-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "payRateEffectiveDate": "2022-04-04", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "payRateEffectiveDate": "2022-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "payRateEffectiveDate": "2022-04-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "payRateEffectiveDate": "2022-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "payRateEffectiveDate": "2022-05-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "payRateEffectiveDate": "2022-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "payRateEffectiveDate": "2023-02-21", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Job Evaluation", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "payRateEffectiveDate": "2022-06-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "payRateEffectiveDate": "2022-07-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "payRateEffectiveDate": "2023-01-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "payRateEffectiveDate": "2022-06-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "payRateEffectiveDate": "2023-06-27", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "payRateEffectiveDate": "2022-07-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "payRateEffectiveDate": "2022-06-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "payRateEffectiveDate": "2022-06-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "payRateEffectiveDate": "2022-08-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "payRateEffectiveDate": "2022-08-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "payRateEffectiveDate": "2023-11-16", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "payRateEffectiveDate": "2022-08-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "payRateEffectiveDate": "2022-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "payRateEffectiveDate": "2022-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "payRateEffectiveDate": "2022-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "payRateEffectiveDate": "2023-08-07", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "payRateEffectiveDate": "2022-10-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "payRateEffectiveDate": "2022-10-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "payRateEffectiveDate": "2022-08-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "payRateEffectiveDate": "2022-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "payRateEffectiveDate": "2022-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "payRateEffectiveDate": "2022-10-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "payRateEffectiveDate": "2022-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "payRateEffectiveDate": "2022-12-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "payRateEffectiveDate": "2021-09-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "payRateEffectiveDate": "2023-01-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "payRateEffectiveDate": "2023-10-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "payRateEffectiveDate": "2023-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "payRateEffectiveDate": "2022-10-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "payRateEffectiveDate": "2022-10-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "payRateEffectiveDate": "2022-11-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "payRateEffectiveDate": "2022-12-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "payRateEffectiveDate": "2023-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "payRateEffectiveDate": "2022-11-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "payRateEffectiveDate": "2023-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "payRateEffectiveDate": "2023-01-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "payRateEffectiveDate": "2023-01-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "payRateEffectiveDate": "2022-12-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "payRateEffectiveDate": "2023-11-24", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "payRateEffectiveDate": "2022-12-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "payRateEffectiveDate": "2023-02-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "payRateEffectiveDate": "2022-12-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "payRateEffectiveDate": "2023-01-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "payRateEffectiveDate": "2023-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "payRateEffectiveDate": "2023-02-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "payRateEffectiveDate": "2023-02-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "payRateEffectiveDate": "2023-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "payRateEffectiveDate": "2023-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "payRateEffectiveDate": "2023-01-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "payRateEffectiveDate": "2023-01-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "payRateEffectiveDate": "2023-02-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "payRateEffectiveDate": "2023-01-30", "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "payRateEffectiveDate": "2023-02-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "payRateEffectiveDate": "2023-02-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "payRateEffectiveDate": "2023-02-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "payRateEffectiveDate": "2023-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "payRateEffectiveDate": "2023-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "payRateEffectiveDate": "2023-03-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "payRateEffectiveDate": "2023-04-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "payRateEffectiveDate": "2023-06-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "payRateEffectiveDate": "2023-03-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "payRateEffectiveDate": "2023-04-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "payRateEffectiveDate": "2023-03-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "payRateEffectiveDate": "2023-03-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "payRateEffectiveDate": "2023-04-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "payRateEffectiveDate": "2023-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "payRateEffectiveDate": "2023-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "payRateEffectiveDate": "2023-04-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "payRateEffectiveDate": "2023-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "payRateEffectiveDate": "2023-07-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "payRateEffectiveDate": "2023-05-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "payRateEffectiveDate": "2023-05-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "payRateEffectiveDate": "2023-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "payRateEffectiveDate": "2023-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "payRateEffectiveDate": "2024-03-05", "payChangeReason": "Intern to Full-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "payRateEffectiveDate": "2023-07-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "payRateEffectiveDate": "2023-05-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "payRateEffectiveDate": "2023-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "payRateEffectiveDate": "2023-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "payRateEffectiveDate": "2023-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "payRateEffectiveDate": "2023-04-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "payRateEffectiveDate": "2023-06-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "payRateEffectiveDate": "2023-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "payRateEffectiveDate": "2023-06-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "payRateEffectiveDate": "2023-07-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "payRateEffectiveDate": "2023-08-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "payRateEffectiveDate": "2023-07-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "payRateEffectiveDate": "2023-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "payRateEffectiveDate": "2024-02-05", "payChangeReason": "Intern to Full-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "payRateEffectiveDate": "2023-08-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "payRateEffectiveDate": "2023-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "payRateEffectiveDate": "2023-09-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "payRateEffectiveDate": "2023-09-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "payRateEffectiveDate": "2023-10-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "payRateEffectiveDate": "2023-09-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "payRateEffectiveDate": "2023-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "payRateEffectiveDate": "2023-09-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "payRateEffectiveDate": "2023-10-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "payRateEffectiveDate": "2023-10-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "payRateEffectiveDate": "2023-11-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "payRateEffectiveDate": "2023-11-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "payRateEffectiveDate": "2023-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "payRateEffectiveDate": "2023-11-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "payRateEffectiveDate": "2023-11-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "payRateEffectiveDate": "2024-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "payRateEffectiveDate": "2023-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "payRateEffectiveDate": "2023-12-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "payRateEffectiveDate": "2023-11-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "payRateEffectiveDate": "2024-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "payRateEffectiveDate": "2023-12-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "payRateEffectiveDate": "2023-12-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "payRateEffectiveDate": "2024-01-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "payRateEffectiveDate": "2024-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "payRateEffectiveDate": "2024-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "payRateEffectiveDate": "2024-01-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "payRateEffectiveDate": "2024-02-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "payRateEffectiveDate": "2024-03-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "payRateEffectiveDate": "2024-03-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "employeeNumber": "241", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-05", "ethnicity": "White", "firstName": "Anne", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-09"}, "emitted_at": 1710872569486}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "employeeNumber": "239", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": "White", "firstName": "Kelly", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-01"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "employeeNumber": "212", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-12", "ethnicity": "Asian", "firstName": "Tina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "employeeNumber": "247", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-10-15", "ethnicity": null, "firstName": "Michaela", "gender": "Female", "genderIdentity": null, "hireDate": "2010-10-15"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "employeeNumber": "286", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-09", "ethnicity": null, "firstName": "Lotta", "gender": "Female", "genderIdentity": null, "hireDate": "2015-09-10"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "employeeNumber": "100", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-01", "ethnicity": null, "firstName": "Aileen", "gender": "Female", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "employeeNumber": "101", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-10", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569487}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "employeeNumber": "102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Lars", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "employeeNumber": "103", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2012-05-08", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-08"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "employeeNumber": "104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-14", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-30"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "employeeNumber": "105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-18", "ethnicity": null, "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "employeeNumber": "106", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-23", "ethnicity": "Asian", "firstName": "Patricia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-23"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "employeeNumber": "107", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-23", "ethnicity": "Asian", "firstName": "Lance", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-14"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "employeeNumber": "108", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-15", "ethnicity": "Two or More Races", "firstName": "Matt", "gender": "Male", "genderIdentity": null, "hireDate": "2013-11-04"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "employeeNumber": "109", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-02-25", "ethnicity": "Asian", "firstName": "Viksit", "gender": "Male", "genderIdentity": null, "hireDate": "2014-02-25"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "employeeNumber": "110", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-08", "ethnicity": "Two or More Races", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-10"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "employeeNumber": "111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-14", "ethnicity": "White", "firstName": "Greta", "gender": "Female", "genderIdentity": null, "hireDate": "2014-06-02"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "employeeNumber": "112", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-18", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-18"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "employeeNumber": "113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-04", "ethnicity": "White", "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2011-06-01"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "employeeNumber": "114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-01"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "employeeNumber": "115", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-05", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-08"}, "emitted_at": 1710872569488}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "employeeNumber": "116", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-15"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "employeeNumber": "117", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-04-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "employeeNumber": "118", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-04-01", "ethnicity": "Asian", "firstName": "Seshaiyengar", "gender": "Male", "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "employeeNumber": "119", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-07", "ethnicity": "Asian", "firstName": "Sayuri", "gender": "Female", "genderIdentity": null, "hireDate": "2015-04-13"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "employeeNumber": "120", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-01", "ethnicity": "White", "firstName": "Matzen", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-04"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "employeeNumber": "121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-29", "ethnicity": "White", "firstName": "Bryce", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "employeeNumber": "122", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-05", "ethnicity": "White", "firstName": "Alexandria", "gender": "Female", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "employeeNumber": "123", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-06-29", "ethnicity": "Asian", "firstName": "Rohan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-29"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "employeeNumber": "124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2015-08-11"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "employeeNumber": "125", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-22", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "employeeNumber": "126", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "Asian", "firstName": "Kenny", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-28"}, "emitted_at": 1710872569489}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "employeeNumber": "127", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-05"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "employeeNumber": "128", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-10-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-05"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "employeeNumber": "129", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-11-02", "ethnicity": "White", "firstName": "Dana", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-02"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "employeeNumber": "130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-01", "ethnicity": "White", "firstName": "Ginger", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-09"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "employeeNumber": "131", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Renee", "gender": "Female", "genderIdentity": "Female", "hireDate": "2016-03-28"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "employeeNumber": "132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2016-05-09"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "employeeNumber": "133", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-06", "ethnicity": "Asian", "firstName": "Jianna", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-13"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "employeeNumber": "134", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-10-05", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2016-10-05"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "employeeNumber": "135", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-16", "ethnicity": "Hispanic or Latino", "firstName": "Darryl", "gender": "Male", "genderIdentity": null, "hireDate": "2016-11-01"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "employeeNumber": "136", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-11", "ethnicity": "White", "firstName": "Alessandro", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "employeeNumber": "137", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Julio", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-19"}, "emitted_at": 1710872569490}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "employeeNumber": "138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Christine", "gender": "Female", "genderIdentity": null, "hireDate": "2017-01-03"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "employeeNumber": "139", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-11", "ethnicity": "Asian", "firstName": "Candace", "gender": "Female", "genderIdentity": null, "hireDate": "2017-01-11"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "employeeNumber": "140", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Keoni", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-17"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "employeeNumber": "141", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-25", "ethnicity": "Asian", "firstName": "Navneet", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-25"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "employeeNumber": "142", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-02-01", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-01"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "employeeNumber": "143", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-03", "ethnicity": "White", "firstName": "Rostyslav", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-06"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "employeeNumber": "144", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-18", "ethnicity": "White", "firstName": "Amy", "gender": "Female", "genderIdentity": null, "hireDate": "2017-03-01"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "employeeNumber": "145", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-10"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "employeeNumber": "146", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "employeeNumber": "147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-21", "ethnicity": "White", "firstName": "Blake", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-15"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "employeeNumber": "148", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-21", "ethnicity": "White", "firstName": "Gabriella", "gender": "Female", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "employeeNumber": "149", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-01", "ethnicity": "Asian", "firstName": "Fawad", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "employeeNumber": "150", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-10", "ethnicity": "White", "firstName": "Nir", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-13"}, "emitted_at": 1710872569491}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "employeeNumber": "151", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-01", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "employeeNumber": "152", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-05", "ethnicity": "White", "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-05"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "employeeNumber": "153", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-15", "ethnicity": "Asian", "firstName": "Gopal", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-19"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "employeeNumber": "154", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-01", "ethnicity": "Asian", "firstName": "Ravi", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "employeeNumber": "155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Lewis", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-24"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "employeeNumber": "156", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ali", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-28"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "employeeNumber": "157", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": "White", "firstName": "Kurt", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "employeeNumber": "158", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-01", "ethnicity": "Asian", "firstName": "Nitin", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "employeeNumber": "159", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-18", "ethnicity": "White", "firstName": "Steven", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "employeeNumber": "160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-21", "ethnicity": "Asian", "firstName": "Noriko", "gender": "Female", "genderIdentity": null, "hireDate": "2017-10-02"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "employeeNumber": "161", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-05", "ethnicity": "Two or More Races", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-23"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "employeeNumber": "162", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-10-23", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-23"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "employeeNumber": "163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-18", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-25"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "employeeNumber": "164", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-13", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-06"}, "emitted_at": 1710872569492}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "employeeNumber": "165", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-30", "ethnicity": null, "firstName": "Karin", "gender": "Female", "genderIdentity": null, "hireDate": "2017-11-27"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "employeeNumber": "166", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-12-18", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-18"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "employeeNumber": "167", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-12-18", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-18"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "employeeNumber": "168", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-11", "ethnicity": "Hispanic or Latino", "firstName": "Rodrigo", "gender": "Male", "genderIdentity": null, "hireDate": "2018-01-02"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "employeeNumber": "169", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-01-08", "ethnicity": "Asian", "firstName": "Aji", "gender": "Female", "genderIdentity": null, "hireDate": "2018-01-08"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "employeeNumber": "170", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-31", "ethnicity": "White", "firstName": "Lance", "gender": "Male", "genderIdentity": null, "hireDate": "2018-01-22"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "employeeNumber": "171", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-05", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-05"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "employeeNumber": "172", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-15", "ethnicity": "White", "firstName": "Brock", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "employeeNumber": "173", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-20", "ethnicity": "Asian", "firstName": "Dung Thanh", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "employeeNumber": "174", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-05-19", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "employeeNumber": "175", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-01", "ethnicity": "Asian", "firstName": "Cecilia", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-26"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "employeeNumber": "176", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-26", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-26"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "employeeNumber": "177", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-04-09", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-09"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "employeeNumber": "178", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-14", "ethnicity": "White", "firstName": "Julianne", "gender": "Female", "genderIdentity": null, "hireDate": "2018-04-09"}, "emitted_at": 1710872569493}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "employeeNumber": "179", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Rod", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-30"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "employeeNumber": "180", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-05-07", "ethnicity": "White", "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-07"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "employeeNumber": "181", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-23", "ethnicity": "White", "firstName": "Jocelyn", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-16"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "employeeNumber": "182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-23", "ethnicity": "Asian", "firstName": "Leena", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-21"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "employeeNumber": "183", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-27", "ethnicity": "White", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "employeeNumber": "184", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-06-25", "ethnicity": "Asian", "firstName": "Ravindranatha", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-25"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "employeeNumber": "185", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-15", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-02"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "employeeNumber": "186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-20", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-09"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "employeeNumber": "187", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-28", "ethnicity": "White", "firstName": "Elaine", "gender": "Female", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "employeeNumber": "188", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-16", "ethnicity": "Asian", "firstName": "Anurag", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "employeeNumber": "189", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Susan", "gender": "Female", "genderIdentity": null, "hireDate": "2018-07-23"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "employeeNumber": "190", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-30", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-30"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "employeeNumber": "192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "Hispanic or Latino", "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-29"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "employeeNumber": "193", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-24", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-10"}, "emitted_at": 1710872569494}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "employeeNumber": "194", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-01", "ethnicity": "White", "firstName": "Kurt", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-20"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "employeeNumber": "195", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-15", "ethnicity": "Asian", "firstName": "Sumeet", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-15"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "employeeNumber": "196", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-29", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-29"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "employeeNumber": "197", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-11-12", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-12"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "employeeNumber": "198", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-27"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "employeeNumber": "199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-31", "ethnicity": "White", "firstName": "Justin", "gender": "Male", "genderIdentity": null, "hireDate": "2018-12-03"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "employeeNumber": "200", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-07", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "employeeNumber": "201", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-16", "ethnicity": null, "firstName": "Raji", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "employeeNumber": "202", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-11", "ethnicity": "White", "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-11"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "employeeNumber": "203", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-14", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Nina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "employeeNumber": "204", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "employeeNumber": "205", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "White", "firstName": "Sara", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-16"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "employeeNumber": "206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-20", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-28"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "employeeNumber": "207", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": "Asian", "firstName": "Pragya", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-28"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "employeeNumber": "208", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-22", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-25"}, "emitted_at": 1710872569495}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "employeeNumber": "209", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-02", "ethnicity": "White", "firstName": "Alicia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "employeeNumber": "210", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-18"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "employeeNumber": "211", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-03-25", "ethnicity": "White", "firstName": "Rob", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "employeeNumber": "213", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": "Hispanic or Latino", "firstName": "Yancarlo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-01"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "employeeNumber": "214", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-15", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-08"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "employeeNumber": "215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-23", "ethnicity": "Hispanic or Latino", "firstName": "Veronica", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "employeeNumber": "216", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-16", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-16"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "employeeNumber": "217", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-22", "ethnicity": "Asian", "firstName": "Naveen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-22"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "employeeNumber": "218", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-29", "ethnicity": "White", "firstName": "Cynthia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "employeeNumber": "219", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-29", "ethnicity": "Asian", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "employeeNumber": "220", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "White", "firstName": "Logan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "employeeNumber": "221", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-07", "ethnicity": "White", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-01"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "employeeNumber": "222", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": "White", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "employeeNumber": "223", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-19", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569496}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "employeeNumber": "224", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-01", "ethnicity": "White", "firstName": "Merton", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "employeeNumber": "225", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-10", "ethnicity": "White", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-30"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "employeeNumber": "226", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": "White", "firstName": "Joann", "gender": "Female", "genderIdentity": null, "hireDate": "2019-06-03"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "employeeNumber": "227", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-06-10", "ethnicity": "White", "firstName": "Geoffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "employeeNumber": "228", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-12", "ethnicity": "Asian", "firstName": "Allison", "gender": "Female", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "employeeNumber": "229", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-09", "ethnicity": "Asian", "firstName": "Shreyans", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-23"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "employeeNumber": "230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-21", "ethnicity": "Asian", "firstName": "Amit", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-24"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "employeeNumber": "231", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-22"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "employeeNumber": "232", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-13", "ethnicity": "White", "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-22"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "employeeNumber": "233", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-02", "ethnicity": "White", "firstName": "Corbett", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-29"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "employeeNumber": "234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Suresh Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-27"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "employeeNumber": "235", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-22", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-08-12"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "employeeNumber": "236", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-08-19", "ethnicity": "Asian", "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-19"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "employeeNumber": "237", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-08-19", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-19"}, "emitted_at": 1710872569497}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "employeeNumber": "238", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-13", "ethnicity": "White", "firstName": "Derek", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-28"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "employeeNumber": "240", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-03", "ethnicity": "Hispanic or Latino", "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-03"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "employeeNumber": "242", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-21", "ethnicity": "White", "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-30"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "employeeNumber": "243", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-19", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "employeeNumber": "244", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-21", "ethnicity": "White", "firstName": "Kambiz", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-14"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "employeeNumber": "245", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-24", "ethnicity": null, "firstName": "Tobias", "gender": "Male", "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "employeeNumber": "246", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-02-01", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2010-02-01"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "employeeNumber": "248", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-10-25", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2010-10-25"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "employeeNumber": "249", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2011-01-01"}, "emitted_at": 1710872569498}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "employeeNumber": "250", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-01-01", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2009-10-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "employeeNumber": "251", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": "White", "firstName": "Alistair", "gender": "Male", "genderIdentity": null, "hireDate": "2011-08-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "employeeNumber": "252", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-16", "ethnicity": null, "firstName": "Cedric", "gender": "Male", "genderIdentity": null, "hireDate": "2012-07-03"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "employeeNumber": "253", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "employeeNumber": "254", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": "White", "firstName": "Rik", "gender": "Male", "genderIdentity": null, "hireDate": "2012-08-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "employeeNumber": "255", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2013-10-01", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "employeeNumber": "256", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2012-06-01", "ethnicity": null, "firstName": "Lasse", "gender": "Male", "genderIdentity": null, "hireDate": "2012-06-01"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "employeeNumber": "257", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-19", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2013-05-13"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "employeeNumber": "258", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-14", "ethnicity": null, "firstName": "Benjamin", "gender": "Male", "genderIdentity": null, "hireDate": "2013-09-02"}, "emitted_at": 1710872569499}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "employeeNumber": "259", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-30", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2013-09-02"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "employeeNumber": "260", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2013-10-01", "ethnicity": null, "firstName": "Magnus", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-01"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "employeeNumber": "261", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-31", "ethnicity": null, "firstName": "Claudia", "gender": "Female", "genderIdentity": null, "hireDate": "2014-01-20"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "employeeNumber": "262", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-11"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "employeeNumber": "263", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-04", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-05-19"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "employeeNumber": "264", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-21", "ethnicity": null, "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-06"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "employeeNumber": "265", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-07-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2014-07-01"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "employeeNumber": "266", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-29", "ethnicity": null, "firstName": "Kostiantyn", "gender": "Male", "genderIdentity": null, "hireDate": "2014-07-15"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "employeeNumber": "267", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-01", "ethnicity": "White", "firstName": "Oskar", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-01"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "employeeNumber": "268", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-04", "ethnicity": null, "firstName": "Pontus", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-04"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "employeeNumber": "269", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-31", "ethnicity": null, "firstName": "Nigel", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-06"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "employeeNumber": "270", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-22", "ethnicity": null, "firstName": "Craig", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-06"}, "emitted_at": 1710872569500}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "employeeNumber": "271", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-31", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2014-09-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "employeeNumber": "272", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-30", "ethnicity": null, "firstName": "Zhen", "gender": "Female", "genderIdentity": null, "hireDate": "2014-09-15"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "employeeNumber": "273", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Petra", "gender": "Female", "genderIdentity": null, "hireDate": "2014-10-15"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "employeeNumber": "274", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-11-03", "ethnicity": null, "firstName": "Cornelis", "gender": "Male", "genderIdentity": null, "hireDate": "2014-11-03"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "employeeNumber": "275", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-23", "ethnicity": null, "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "employeeNumber": "276", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-01-01", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "employeeNumber": "277", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Bruno", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-07"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "employeeNumber": "278", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2021-09-23", "ethnicity": "White", "firstName": "Mats", "gender": "Male", "genderIdentity": null, "hireDate": "2015-03-23"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "employeeNumber": "279", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "employeeNumber": "280", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-22", "ethnicity": null, "firstName": "Mykhailo", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-22"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "employeeNumber": "281", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-06-01", "ethnicity": null, "firstName": "Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "employeeNumber": "282", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-07-01", "ethnicity": null, "firstName": "Jesus", "gender": "Male", "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "employeeNumber": "283", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-07-01", "ethnicity": null, "firstName": "Eva", "gender": "Female", "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569501}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "employeeNumber": "284", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-01", "ethnicity": null, "firstName": "Henrik", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "employeeNumber": "285", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-01", "ethnicity": null, "firstName": "Ragnar", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "employeeNumber": "287", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-14", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-14"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "employeeNumber": "288", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-10-01", "ethnicity": null, "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "employeeNumber": "289", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-11-01", "ethnicity": null, "firstName": "Jonatan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "employeeNumber": "290", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-01-11", "ethnicity": "White", "firstName": "Olivia", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-11"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "employeeNumber": "291", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-19", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-18"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "employeeNumber": "292", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Eve", "gender": "Female", "genderIdentity": null, "hireDate": "2016-02-29"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "employeeNumber": "293", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-31", "ethnicity": null, "firstName": "Sven", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "employeeNumber": "294", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-31", "ethnicity": null, "firstName": "Alastair", "gender": "Male", "genderIdentity": null, "hireDate": "2016-04-20"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "employeeNumber": "295", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Anton", "gender": "Male", "genderIdentity": null, "hireDate": "2016-05-02"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "employeeNumber": "296", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-14", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-01"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "employeeNumber": "297", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Dirk", "gender": "Male", "genderIdentity": null, "hireDate": "2016-10-03"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "employeeNumber": "298", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-11-07", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2016-11-07"}, "emitted_at": 1710872569502}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "employeeNumber": "299", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-23", "ethnicity": null, "firstName": "Ragnar", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "employeeNumber": "300", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-12-05", "ethnicity": null, "firstName": "Jos\u00e9", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-05"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "employeeNumber": "301", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-21"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "employeeNumber": "302", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-02-27", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-27"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "employeeNumber": "303", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Charlotte", "gender": "Female", "genderIdentity": null, "hireDate": "2017-03-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "employeeNumber": "304", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-01", "ethnicity": null, "firstName": "Petar", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "employeeNumber": "305", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-01", "ethnicity": "White", "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "employeeNumber": "306", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-18", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-18"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "employeeNumber": "307", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-02-01", "ethnicity": null, "firstName": "Caroline", "gender": "Female", "genderIdentity": null, "hireDate": "2017-04-27"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "employeeNumber": "308", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Tom", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "employeeNumber": "309", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Anton", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "employeeNumber": "310", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "employeeNumber": "311", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-09", "ethnicity": null, "firstName": "Gordon", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-08"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "employeeNumber": "312", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-15", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-15"}, "emitted_at": 1710872569503}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "employeeNumber": "313", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-31", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-22"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "employeeNumber": "314", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-06-01", "ethnicity": null, "firstName": "Sascha", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-01"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "employeeNumber": "315", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-01", "ethnicity": null, "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "employeeNumber": "316", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-10", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-10"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "employeeNumber": "317", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-15", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-15"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "employeeNumber": "318", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-24", "ethnicity": null, "firstName": "Julien", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "employeeNumber": "319", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-17", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "employeeNumber": "320", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-17", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "employeeNumber": "321", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": null, "firstName": "Ljubica", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "employeeNumber": "322", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-07"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "employeeNumber": "323", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2022-06-06", "ethnicity": null, "firstName": "Satia", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-14"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "employeeNumber": "324", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-21", "ethnicity": null, "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-21"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "employeeNumber": "325", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-21", "ethnicity": null, "firstName": "Louise", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-21"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "employeeNumber": "326", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-13", "ethnicity": null, "firstName": "Sandrine", "gender": "Female", "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569504}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "employeeNumber": "327", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-01", "ethnicity": null, "firstName": "Gerrit", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "employeeNumber": "328", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-05", "ethnicity": null, "firstName": "Umar", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-05"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "employeeNumber": "329", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-18", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "employeeNumber": "330", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-01", "ethnicity": null, "firstName": "Christos", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "employeeNumber": "331", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-10-16", "ethnicity": null, "firstName": "Karl-Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-16"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "employeeNumber": "332", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-17", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-16"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "employeeNumber": "333", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-28", "ethnicity": null, "firstName": "Tiago Andre da Silva", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-09"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "employeeNumber": "334", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-30", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-01"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "employeeNumber": "335", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-12", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-12"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "employeeNumber": "336", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Matt", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-02"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "employeeNumber": "337", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-09", "ethnicity": null, "firstName": "Frederic", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-07"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "employeeNumber": "338", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-31", "ethnicity": null, "firstName": "Dinuke", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-14"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "employeeNumber": "339", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-06-01", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-01"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "employeeNumber": "340", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-01", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-07"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "employeeNumber": "341", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2010-09-01"}, "emitted_at": 1710872569505}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "employeeNumber": "342", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-01", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "employeeNumber": "343", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-08-06", "ethnicity": null, "firstName": "Irfan Nuri", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-06"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "employeeNumber": "344", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-13"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "employeeNumber": "345", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2018-09-01", "ethnicity": null, "firstName": "Jan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "employeeNumber": "346", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "employeeNumber": "347", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-09-10", "ethnicity": null, "firstName": "Arvid", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-10"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "employeeNumber": "348", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-15", "ethnicity": null, "firstName": "Wayne", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-24"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "employeeNumber": "349", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-01", "ethnicity": null, "firstName": "Therese", "gender": "Female", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "employeeNumber": "350", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2018-10-01", "ethnicity": null, "firstName": "Jaroslaw", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "employeeNumber": "351", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "S\u00f6ren", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "employeeNumber": "352", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-01", "ethnicity": "White", "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-01"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "employeeNumber": "353", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-15", "ethnicity": null, "firstName": "Tobias", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-15"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "employeeNumber": "354", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-11-19", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-19"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "employeeNumber": "355", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Sabine", "gender": "Female", "genderIdentity": null, "hireDate": "2018-11-27"}, "emitted_at": 1710872569506}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "employeeNumber": "356", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-01", "ethnicity": null, "firstName": "Linus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-01"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "employeeNumber": "357", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-01", "ethnicity": null, "firstName": "Penny", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-01"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "employeeNumber": "358", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-07", "ethnicity": null, "firstName": "Lorena", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "employeeNumber": "359", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "employeeNumber": "360", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Petr", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "employeeNumber": "361", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Elizaveta", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "employeeNumber": "362", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Clemens", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-15"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "employeeNumber": "363", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-16", "ethnicity": null, "firstName": "Sara", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-16"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "employeeNumber": "364", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Herman", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-01"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "employeeNumber": "365", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-31", "ethnicity": null, "firstName": "Jochem", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-04"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "employeeNumber": "366", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-02", "ethnicity": null, "firstName": "Elliot", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-11"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "employeeNumber": "367", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-07", "ethnicity": null, "firstName": "J\u00e9r\u00e9mie", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-18"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "employeeNumber": "368", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2019-03-01", "ethnicity": "White", "firstName": "Gal", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-01"}, "emitted_at": 1710872569507}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "employeeNumber": "369", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": null, "firstName": "Florentin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "employeeNumber": "370", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2019-03-01", "ethnicity": null, "firstName": "Yossi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-01"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "employeeNumber": "371", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-03-04", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "employeeNumber": "372", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-13"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "employeeNumber": "373", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-01"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "employeeNumber": "374", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-03", "ethnicity": null, "firstName": "Dimitrios", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-03"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "employeeNumber": "375", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-11", "ethnicity": null, "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-08"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "employeeNumber": "376", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-15", "ethnicity": null, "firstName": "Valdemar", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-15"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "employeeNumber": "377", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-17", "ethnicity": null, "firstName": "Angeliki", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-17"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "employeeNumber": "378", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-30", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-01"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "employeeNumber": "379", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-05-07", "ethnicity": null, "firstName": "Lucy", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-07"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "employeeNumber": "380", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-05-13", "ethnicity": null, "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-13"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "employeeNumber": "381", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": "White", "firstName": "Angelo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-13"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "employeeNumber": "382", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-31", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-01"}, "emitted_at": 1710872569508}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "employeeNumber": "383", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Jonatan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "employeeNumber": "384", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-06-15", "ethnicity": null, "firstName": "Bledi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-15"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "employeeNumber": "385", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-30", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "employeeNumber": "386", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "employeeNumber": "387", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": "White", "firstName": "Bert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "employeeNumber": "388", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "employeeNumber": "389", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "Two or More Races", "firstName": "Sadie", "gender": "Female", "genderIdentity": null, "hireDate": "2019-07-03"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "employeeNumber": "390", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": null, "firstName": "Nicolas", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "employeeNumber": "391", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-24", "ethnicity": "White", "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-02"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "employeeNumber": "392", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-30", "ethnicity": null, "firstName": "Dario", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-02"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "employeeNumber": "393", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-09", "ethnicity": null, "firstName": "Luis", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-09"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "employeeNumber": "394", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-01", "ethnicity": null, "firstName": "Riccardo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "employeeNumber": "395", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-28", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569509}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "employeeNumber": "396", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Lasse", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "employeeNumber": "397", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-01", "ethnicity": null, "firstName": "Valerio", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "employeeNumber": "398", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-21", "ethnicity": null, "firstName": "Pontus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "employeeNumber": "399", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-07", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-07"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "employeeNumber": "400", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-14"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "employeeNumber": "401", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-14", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-14"}, "emitted_at": 1710872569510}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "employeeNumber": "402", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-18", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "employeeNumber": "403", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-21", "ethnicity": null, "firstName": "Rui", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "employeeNumber": "404", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": null, "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "employeeNumber": "405", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-05", "ethnicity": null, "firstName": "Vladislav", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-05"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "employeeNumber": "406", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-07", "ethnicity": null, "firstName": "Marie", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-07"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "employeeNumber": "410", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-06", "ethnicity": "Asian", "firstName": "Marissa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-29"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "employeeNumber": "414", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-04", "ethnicity": null, "firstName": "Heorhi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-04"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "employeeNumber": "Inactive100", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-08-25", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "employeeNumber": "Inactive102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-04-01", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "employeeNumber": "Inactive103", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-11-21", "ethnicity": "White", "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "employeeNumber": "Inactive104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-12-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "employeeNumber": "Inactive105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-01-02", "ethnicity": "White", "firstName": "Allison", "gender": "Female", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "employeeNumber": "Inactive106", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-11-01", "ethnicity": "White", "firstName": "Yuri", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-30"}, "emitted_at": 1710872569512}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "employeeNumber": "Inactive107", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-04-16", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2012-09-06"}, "emitted_at": 1710872569512}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "employeeNumber": "Inactive108", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-07-12", "ethnicity": "White", "firstName": "Kerstin", "gender": "Female", "genderIdentity": null, "hireDate": "2012-09-13"}, "emitted_at": 1710872569512}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "employeeNumber": "Inactive109", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-30", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-15"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "employeeNumber": "Inactive110", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-08-07", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2012-12-10"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "employeeNumber": "Inactive111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-30", "ethnicity": "Asian", "firstName": "Ruma", "gender": "Female", "genderIdentity": null, "hireDate": "2013-01-21"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "employeeNumber": "Inactive112", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-01-07", "ethnicity": null, "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2013-06-17"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "employeeNumber": "Inactive113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-02-04", "ethnicity": "White", "firstName": "Rebecca", "gender": "Female", "genderIdentity": null, "hireDate": "2013-06-24"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "employeeNumber": "Inactive114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-10-13", "ethnicity": "White", "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2013-08-19"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "employeeNumber": "Inactive115", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-11-14", "ethnicity": "White", "firstName": "Kenneth", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-01"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "employeeNumber": "Inactive116", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-05-15", "ethnicity": "White", "firstName": "Gabriel", "gender": "Male", "genderIdentity": null, "hireDate": "2013-12-09"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "employeeNumber": "Inactive117", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-11-02", "ethnicity": "White", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2014-01-06"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "employeeNumber": "Inactive118", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-14", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-17"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "employeeNumber": "Inactive119", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-10-01", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-17"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "employeeNumber": "Inactive120", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": "Asian", "firstName": "Utpal", "gender": "Male", "genderIdentity": null, "hireDate": "2014-05-23"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "employeeNumber": "Inactive121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-14", "ethnicity": "Asian", "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-02"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "employeeNumber": "Inactive122", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-04", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-16"}, "emitted_at": 1710872569513}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "employeeNumber": "Inactive123", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-14", "ethnicity": "White", "firstName": "Tristan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-30"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "employeeNumber": "Inactive124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-22", "ethnicity": "White", "firstName": "Nicole", "gender": "Female", "genderIdentity": null, "hireDate": "2014-07-14"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "employeeNumber": "Inactive125", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-10-16", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2014-09-02"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "employeeNumber": "Inactive126", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-10-31", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2014-09-16"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "employeeNumber": "Inactive127", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-02-26", "ethnicity": "White", "firstName": "Julianne", "gender": "Female", "genderIdentity": null, "hireDate": "2014-10-06"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "employeeNumber": "Inactive128", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-12-11", "ethnicity": "White", "firstName": "Kamille", "gender": "Female", "genderIdentity": null, "hireDate": "2014-12-01"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "employeeNumber": "Inactive129", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-13", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-08"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "employeeNumber": "Inactive130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-14", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-19"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "employeeNumber": "Inactive131", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-04-22", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2015-02-23"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "employeeNumber": "Inactive132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-03-04", "ethnicity": "White", "firstName": "Trey", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-04"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "employeeNumber": "Inactive133", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-10-09", "ethnicity": "White", "firstName": "Elizabeth", "gender": "Female", "genderIdentity": null, "hireDate": "2015-05-11"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "employeeNumber": "Inactive134", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-09-21", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-18"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "employeeNumber": "Inactive135", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-09-02", "ethnicity": "White", "firstName": "Lee", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-29"}, "emitted_at": 1710872569514}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "employeeNumber": "Inactive136", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-28", "ethnicity": "White", "firstName": "Igor", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-02"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "employeeNumber": "Inactive137", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-09", "ethnicity": "White", "firstName": "Kaitlyn", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-03"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "employeeNumber": "Inactive138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-03", "ethnicity": "Hispanic or Latino", "firstName": "Nancy", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-23"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "employeeNumber": "Inactive139", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-01", "ethnicity": "White", "firstName": "Corie", "gender": "Female", "genderIdentity": null, "hireDate": "2015-12-07"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "employeeNumber": "Inactive140", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-15", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2015-12-14"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "employeeNumber": "Inactive141", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-09", "ethnicity": null, "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2015-12-16"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "employeeNumber": "Inactive142", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-11-17", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2016-01-13"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "employeeNumber": "Inactive143", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-15", "ethnicity": "White", "firstName": "Jan Reijers", "gender": "Male", "genderIdentity": null, "hireDate": "2016-01-18"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "employeeNumber": "Inactive144", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-15", "ethnicity": null, "firstName": "Janet", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-27"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "employeeNumber": "Inactive145", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-27", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2016-02-01"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "employeeNumber": "Inactive146", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-19", "ethnicity": "Asian", "firstName": "Lorgen", "gender": "Female", "genderIdentity": null, "hireDate": "2016-02-29"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "employeeNumber": "Inactive147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-04-20", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-08"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "employeeNumber": "Inactive148", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-03-06", "ethnicity": "White", "firstName": "Angelica", "gender": "Female", "genderIdentity": null, "hireDate": "2016-03-28"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "employeeNumber": "Inactive149", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-15", "ethnicity": "Asian", "firstName": "Yasir", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569515}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "employeeNumber": "Inactive150", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Joy Stephanie", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "employeeNumber": "Inactive151", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Yaqi", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "employeeNumber": "Inactive152", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "employeeNumber": "Inactive153", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "White", "firstName": "Danielle", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "employeeNumber": "Inactive154", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-15", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "employeeNumber": "Inactive155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-15", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-30"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "employeeNumber": "Inactive156", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Sherman", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-15"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "employeeNumber": "Inactive157", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-28", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2017-03-13"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "employeeNumber": "Inactive158", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-12-31", "ethnicity": "White", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-03"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "employeeNumber": "Inactive159", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-17", "ethnicity": "White", "firstName": "Cody", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-17"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "employeeNumber": "Inactive160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-14", "ethnicity": "White", "firstName": "Zachary", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-22"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "employeeNumber": "Inactive161", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-11", "ethnicity": "Asian", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "employeeNumber": "Inactive162", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-11", "ethnicity": "Asian", "firstName": "Shangjun", "gender": "Female", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "employeeNumber": "Inactive163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-07", "ethnicity": "White", "firstName": "Didrik", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-12"}, "emitted_at": 1710872569516}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "employeeNumber": "Inactive164", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-26", "ethnicity": "White", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "employeeNumber": "Inactive165", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-31", "ethnicity": "White", "firstName": "Margaret", "gender": "Female", "genderIdentity": null, "hireDate": "2017-07-31"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "employeeNumber": "Inactive166", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-20", "ethnicity": "White", "firstName": "Sina", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-24"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "employeeNumber": "Inactive167", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-11", "ethnicity": "Asian", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-05"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "employeeNumber": "Inactive169", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-04", "ethnicity": "White", "firstName": "Patricia", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-14"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "employeeNumber": "Inactive170", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-30", "ethnicity": null, "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-29"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "employeeNumber": "Inactive171", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-28", "ethnicity": "Asian", "firstName": "Aayushi", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-04"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "employeeNumber": "Inactive172", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-28", "ethnicity": "Asian", "firstName": "Amy", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "employeeNumber": "Inactive173", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-10-10", "ethnicity": "Asian", "firstName": "Meghna", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "employeeNumber": "Inactive174", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-05-01", "ethnicity": "Asian", "firstName": "Anandkumar", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "employeeNumber": "Inactive175", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-07", "ethnicity": "White", "firstName": "Harland", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-17"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "employeeNumber": "Inactive176", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-01-15", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "employeeNumber": "Inactive177", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-08-16", "ethnicity": "Asian", "firstName": "Syed Fahad", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-03"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "employeeNumber": "498", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "Asian", "firstName": "Soham", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569517}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "employeeNumber": "Inactive180", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-12", "ethnicity": null, "firstName": "Johan", "gender": null, "genderIdentity": null, "hireDate": "2009-10-01"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "employeeNumber": "Inactive181", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-03-12", "ethnicity": null, "firstName": "Anders", "gender": null, "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "employeeNumber": "Inactive182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-03-31", "ethnicity": null, "firstName": "Peter", "gender": null, "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "employeeNumber": "Inactive183", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-01-26", "ethnicity": null, "firstName": "David", "gender": null, "genderIdentity": null, "hireDate": "2010-09-01"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "employeeNumber": "Inactive184", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-23", "ethnicity": null, "firstName": "Andres", "gender": null, "genderIdentity": null, "hireDate": "2010-10-12"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "employeeNumber": "Inactive185", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2012-04-30", "ethnicity": null, "firstName": "Thomas", "gender": null, "genderIdentity": null, "hireDate": "2011-02-01"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "employeeNumber": "Inactive186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-05-31", "ethnicity": null, "firstName": "Ian", "gender": null, "genderIdentity": null, "hireDate": "2011-05-09"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "employeeNumber": "Inactive188", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-09-30", "ethnicity": null, "firstName": "Rickard", "gender": null, "genderIdentity": null, "hireDate": "2011-09-20"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "employeeNumber": "Inactive189", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-10-31", "ethnicity": null, "firstName": "Bj\u00f6rn", "gender": null, "genderIdentity": null, "hireDate": "2011-10-26"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "employeeNumber": "Inactive190", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-03-11", "ethnicity": null, "firstName": "Julian", "gender": null, "genderIdentity": null, "hireDate": "2018-12-17"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "employeeNumber": "Inactive191", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-12-01", "ethnicity": null, "firstName": "Pernilla", "gender": null, "genderIdentity": null, "hireDate": "2012-09-24"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "employeeNumber": "Inactive192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-11-17", "ethnicity": null, "firstName": "Arturas", "gender": null, "genderIdentity": null, "hireDate": "2012-11-05"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "employeeNumber": "Inactive193", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-01-31", "ethnicity": null, "firstName": "Dax", "gender": null, "genderIdentity": null, "hireDate": "2013-01-28"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "employeeNumber": "Inactive194", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-06-30", "ethnicity": null, "firstName": "Ida", "gender": null, "genderIdentity": null, "hireDate": "2013-06-03"}, "emitted_at": 1710872569518}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "employeeNumber": "Inactive195", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-01-14", "ethnicity": null, "firstName": "Davide", "gender": null, "genderIdentity": null, "hireDate": "2014-02-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "employeeNumber": "Inactive196", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-03-18", "ethnicity": null, "firstName": "Jakub", "gender": null, "genderIdentity": null, "hireDate": "2014-02-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "employeeNumber": "Inactive198", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Holger", "gender": null, "genderIdentity": null, "hireDate": "2014-05-05"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "employeeNumber": "Inactive199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-02-03", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2014-10-13"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "employeeNumber": "Inactive200", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-11-30", "ethnicity": null, "firstName": "Pedro", "gender": null, "genderIdentity": null, "hireDate": "2015-01-05"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "employeeNumber": "Inactive201", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-02-24", "ethnicity": null, "firstName": "Maxwell", "gender": null, "genderIdentity": null, "hireDate": "2015-02-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "employeeNumber": "Inactive202", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-31", "ethnicity": null, "firstName": "Pieter", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "employeeNumber": "Inactive203", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-01-22", "ethnicity": null, "firstName": "Stephane", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "employeeNumber": "Inactive204", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-07-03", "ethnicity": null, "firstName": "Art", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "employeeNumber": "Inactive205", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-08-31", "ethnicity": null, "firstName": "Alexander", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "employeeNumber": "Inactive206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-30", "ethnicity": null, "firstName": "Steven", "gender": null, "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "employeeNumber": "Inactive207", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-03-23", "ethnicity": null, "firstName": "Jonas", "gender": null, "genderIdentity": null, "hireDate": "2015-09-14"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "employeeNumber": "Inactive209", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Santo", "gender": null, "genderIdentity": null, "hireDate": "2016-02-01"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "employeeNumber": "Inactive210", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Praveena", "gender": null, "genderIdentity": null, "hireDate": "2016-02-22"}, "emitted_at": 1710872569519}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "employeeNumber": "Inactive211", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Mengqi", "gender": null, "genderIdentity": null, "hireDate": "2016-04-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "employeeNumber": "488", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-04", "ethnicity": null, "firstName": "Felix", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-04"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "employeeNumber": "Inactive213", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-06-22", "ethnicity": null, "firstName": "Ida", "gender": null, "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "employeeNumber": "Inactive214", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-30", "ethnicity": null, "firstName": "Sophia", "gender": null, "genderIdentity": null, "hireDate": "2016-10-17"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "employeeNumber": "Inactive215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-20", "ethnicity": null, "firstName": "Hessan", "gender": null, "genderIdentity": null, "hireDate": "2017-01-23"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "employeeNumber": "Inactive216", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-10", "ethnicity": null, "firstName": "Vanessa", "gender": null, "genderIdentity": null, "hireDate": "2017-01-23"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "employeeNumber": "Inactive217", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-30", "ethnicity": null, "firstName": "Benoit", "gender": null, "genderIdentity": null, "hireDate": "2017-03-15"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "employeeNumber": "Inactive218", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-30", "ethnicity": null, "firstName": "Mattias", "gender": null, "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "employeeNumber": "Inactive219", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-30", "ethnicity": null, "firstName": "Li", "gender": null, "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "employeeNumber": "Inactive220", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-14", "ethnicity": null, "firstName": "Angelica", "gender": null, "genderIdentity": null, "hireDate": "2017-04-03"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "employeeNumber": "Inactive221", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-04-30", "ethnicity": null, "firstName": "Tiest", "gender": null, "genderIdentity": null, "hireDate": "2017-04-17"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "employeeNumber": "Inactive223", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-31", "ethnicity": null, "firstName": "Sara", "gender": null, "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "employeeNumber": "Inactive224", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-31", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "employeeNumber": "525", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": null, "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "employeeNumber": "Inactive226", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-18", "ethnicity": null, "firstName": "Przemyslaw", "gender": null, "genderIdentity": null, "hireDate": "2017-07-10"}, "emitted_at": 1710872569520}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "employeeNumber": "Inactive227", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-04-30", "ethnicity": null, "firstName": "Philip", "gender": null, "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "employeeNumber": "Inactive228", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-02-09", "ethnicity": null, "firstName": "Elin", "gender": null, "genderIdentity": null, "hireDate": "2017-09-13"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "employeeNumber": "Inactive229", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-02-16", "ethnicity": null, "firstName": "Gunnar", "gender": null, "genderIdentity": null, "hireDate": "2017-10-01"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "employeeNumber": "Inactive230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-12-31", "ethnicity": null, "firstName": "Martin", "gender": null, "genderIdentity": null, "hireDate": "2017-10-03"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "employeeNumber": "Inactive231", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-24", "ethnicity": null, "firstName": "Deniz", "gender": null, "genderIdentity": null, "hireDate": "2017-10-09"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "employeeNumber": "Inactive232", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-30", "ethnicity": null, "firstName": "Valentin", "gender": null, "genderIdentity": null, "hireDate": "2017-11-22"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "employeeNumber": "Inactive233", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-11-13", "ethnicity": null, "firstName": "Peter", "gender": null, "genderIdentity": null, "hireDate": "2018-01-08"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "employeeNumber": "Inactive234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-05", "ethnicity": null, "firstName": "Andrei", "gender": null, "genderIdentity": null, "hireDate": "2018-01-22"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "employeeNumber": "Inactive235", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Alexander", "gender": null, "genderIdentity": null, "hireDate": "2018-02-01"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "employeeNumber": "Inactive236", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": null, "firstName": "Anton", "gender": null, "genderIdentity": null, "hireDate": "2018-03-26"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "employeeNumber": "Inactive237", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": null, "firstName": "Victor", "gender": null, "genderIdentity": null, "hireDate": "2018-03-26"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "employeeNumber": "Inactive238", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-31", "ethnicity": null, "firstName": "Kevin", "gender": null, "genderIdentity": null, "hireDate": "2018-06-01"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "employeeNumber": "Inactive239", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-17", "ethnicity": null, "firstName": "Matilda", "gender": null, "genderIdentity": null, "hireDate": "2018-06-11"}, "emitted_at": 1710872569521}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "employeeNumber": "Inactive240", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-04", "ethnicity": null, "firstName": "Fabian", "gender": null, "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "employeeNumber": "Inactive241", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-22", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "employeeNumber": "Inactive242", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-08", "ethnicity": null, "firstName": "Sherman", "gender": null, "genderIdentity": null, "hireDate": "2018-07-01"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "employeeNumber": "Inactive243", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-10", "ethnicity": null, "firstName": "Noah", "gender": null, "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "employeeNumber": "Inactive244", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-17", "ethnicity": null, "firstName": "Yuvan", "gender": null, "genderIdentity": null, "hireDate": "2018-08-13"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "employeeNumber": "Inactive245", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-07", "ethnicity": null, "firstName": "Matilda", "gender": null, "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "employeeNumber": "Inactive246", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-06", "ethnicity": null, "firstName": "Stef", "gender": null, "genderIdentity": null, "hireDate": "2019-04-23"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "employeeNumber": "Inactive247", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-08-16", "ethnicity": null, "firstName": "Alva", "gender": null, "genderIdentity": null, "hireDate": "2019-07-15"}, "emitted_at": 1710872569522}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "employeeNumber": "415", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-01", "ethnicity": null, "firstName": "Angelo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "employeeNumber": "416", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-01", "ethnicity": null, "firstName": "Leila", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "employeeNumber": "417", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-12", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "employeeNumber": "412", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-01", "ethnicity": null, "firstName": "Niels", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "employeeNumber": "409", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-21", "ethnicity": null, "firstName": "Morgan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "employeeNumber": "418", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-01", "ethnicity": null, "firstName": "Jimmy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "employeeNumber": "419", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": "White", "firstName": "Jesper", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "employeeNumber": "420", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": null, "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "employeeNumber": "421", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-03", "ethnicity": null, "firstName": "Jasraj", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-01"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "employeeNumber": "422", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-02", "ethnicity": null, "firstName": "Veselin", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-02"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "employeeNumber": "423", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-09", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-10"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "employeeNumber": "424", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "employeeNumber": "425", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-13", "ethnicity": "Asian", "firstName": "Shashi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-29"}, "emitted_at": 1710872569523}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "employeeNumber": "426", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Julia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "employeeNumber": "427", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-11", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-11"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "employeeNumber": "428", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "White", "firstName": "Thursday", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "employeeNumber": "431", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-09"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "employeeNumber": "432", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Pascal", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "employeeNumber": "433", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-03", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-11"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "employeeNumber": "434", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-09", "ethnicity": "Asian", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "employeeNumber": "435", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-03", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-21"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "employeeNumber": "436", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-13", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "employeeNumber": "437", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-13", "ethnicity": "Asian", "firstName": "Ramanan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "employeeNumber": "438", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "Asian", "firstName": "Vikram", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "employeeNumber": "439", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-07", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-07"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "employeeNumber": "443", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-09", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "employeeNumber": "444", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-16"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "employeeNumber": "445", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-17", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-30"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "employeeNumber": "446", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-20", "ethnicity": "White", "firstName": "Bal\u00e1zs", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-20"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "employeeNumber": "447", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-12", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-12"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "employeeNumber": "448", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-06", "ethnicity": "White", "firstName": "Reneta", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "employeeNumber": "449", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "employeeNumber": "450", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": null, "firstName": "Tomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "employeeNumber": "451", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": "White", "firstName": "H\u00e5kan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569525}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "employeeNumber": "452", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-01", "ethnicity": "White", "firstName": "Morten", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-01"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "employeeNumber": "453", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-01"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "employeeNumber": "454", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Kristina", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "employeeNumber": "455", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-01", "ethnicity": null, "firstName": "Linn\u00e9a", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "employeeNumber": "457", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-26", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "employeeNumber": "458", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-20"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "employeeNumber": "459", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-08", "ethnicity": "Black or African American", "firstName": "Kondwani", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-27"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "employeeNumber": "460", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "Two or More Races", "firstName": "Tammy", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "employeeNumber": "461", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-15", "ethnicity": "White", "firstName": "Deborah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "employeeNumber": "462", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "White", "firstName": "Randy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "employeeNumber": "463", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "White", "firstName": "Kenneth", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "employeeNumber": "464", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-10", "ethnicity": "White", "firstName": "Marcy", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-10"}, "emitted_at": 1710872569526}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "employeeNumber": "465", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "White", "firstName": "Brent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "employeeNumber": "466", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "Asian", "firstName": "Gopi Krishna Phani", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "employeeNumber": "467", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-15", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "employeeNumber": "468", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-09", "ethnicity": null, "firstName": "Mahnoor", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "employeeNumber": "469", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-01-02", "ethnicity": "Asian", "firstName": "Rutvij", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-02"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "employeeNumber": "470", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-01-06", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "employeeNumber": "471", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2017-12-01", "ethnicity": "Asian", "firstName": "Fanghua", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-01"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "employeeNumber": "472", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-01-13", "ethnicity": "White", "firstName": "Keith", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "employeeNumber": "473", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-10"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "employeeNumber": "474", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-02-10", "ethnicity": null, "firstName": "Shawn", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-10"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "employeeNumber": "475", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-01", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Joy", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569527}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "employeeNumber": "476", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": "White", "firstName": "Holly", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "employeeNumber": "477", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "employeeNumber": "478", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-14", "ethnicity": null, "firstName": "Emma", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-14"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "employeeNumber": "479", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": null, "firstName": "Pierre", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "employeeNumber": "480", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": null, "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "employeeNumber": "481", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "employeeNumber": "482", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-05", "ethnicity": "White", "firstName": "Yigitcan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "employeeNumber": "483", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-22", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "employeeNumber": "484", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-21", "ethnicity": null, "firstName": "Human", "gender": null, "genderIdentity": null, "hireDate": "0000-00-00"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "employeeNumber": "485", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-04", "ethnicity": "White", "firstName": "Janell", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "employeeNumber": "486", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Yaacov", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "employeeNumber": "487", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-20", "ethnicity": null, "firstName": "Ewa", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569528}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "employeeNumber": "489", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-11", "ethnicity": null, "firstName": "Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "employeeNumber": "490", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-07-01", "ethnicity": null, "firstName": "Oskar", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-01"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "employeeNumber": "491", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "employeeNumber": "492", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "employeeNumber": "493", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Carsten", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "employeeNumber": "494", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-11", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-15"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "employeeNumber": "495", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jeremy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "employeeNumber": "496", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "employeeNumber": "497", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": "Asian", "firstName": "Kesavan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "employeeNumber": "499", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-28", "ethnicity": null, "firstName": "Theodore", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "employeeNumber": "500", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-16", "ethnicity": null, "firstName": "Chin Liang", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-06"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "employeeNumber": "501", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-06", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-06"}, "emitted_at": 1710872569529}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "employeeNumber": "503", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-15", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-15"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "employeeNumber": "504", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-01", "ethnicity": null, "firstName": "Magnus", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-01"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "employeeNumber": "507", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-01", "ethnicity": "White", "firstName": "Neil", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-01"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "employeeNumber": "508", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-18", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-18"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "employeeNumber": "509", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": "White", "firstName": "Nadia", "gender": "Female", "genderIdentity": null, "hireDate": "2020-05-11"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "employeeNumber": "510", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-30", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "employeeNumber": "512", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-04-27", "ethnicity": "Asian", "firstName": "Xin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-27"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "employeeNumber": "513", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-18", "ethnicity": null, "firstName": "Krzysztof", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-18"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "employeeNumber": "514", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-22", "ethnicity": "Asian", "firstName": "Alicia", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-22"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "employeeNumber": "515", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Jon Ander", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-08"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "employeeNumber": "516", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-21", "ethnicity": "White", "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-05"}, "emitted_at": 1710872569530}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "employeeNumber": "517", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-08", "ethnicity": "White", "firstName": "Kent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-08"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "employeeNumber": "519", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": null, "firstName": "Victor", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "employeeNumber": "521", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-06"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "employeeNumber": "522", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": "White", "firstName": "Jack", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "employeeNumber": "523", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": "Two or More Races", "firstName": "Antonio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "employeeNumber": "524", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-29", "ethnicity": null, "firstName": "Aleksey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-29"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "employeeNumber": "527", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-31", "ethnicity": null, "firstName": "Leonid", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-01"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "employeeNumber": "528", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-29", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-06"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "employeeNumber": "530", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "employeeNumber": "531", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-03", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-03"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "employeeNumber": "532", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Auberie", "gender": "Female", "genderIdentity": null, "hireDate": "2020-08-01"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "employeeNumber": "533", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": null, "firstName": "Love", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569531}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "employeeNumber": "534", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-07-20", "ethnicity": "White", "firstName": "Mari", "gender": "Female", "genderIdentity": null, "hireDate": "2020-07-20"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "employeeNumber": "535", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-21", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-13"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "employeeNumber": "536", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-31", "ethnicity": null, "firstName": "Sarah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-06-10"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "employeeNumber": "537", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-31", "ethnicity": "Hispanic or Latino", "firstName": "Jaime", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-13"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "employeeNumber": "539", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Federico", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-15"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "employeeNumber": "540", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-07-01", "ethnicity": null, "firstName": "Tomaz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-01"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "employeeNumber": "541", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-04", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-03"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "employeeNumber": "542", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "employeeNumber": "543", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-14", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "employeeNumber": "544", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-02", "ethnicity": "White", "firstName": "Romain", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-02"}, "emitted_at": 1710872569532}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "employeeNumber": "545", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-24", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-24"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "employeeNumber": "546", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-10", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "employeeNumber": "547", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-01", "ethnicity": "White", "firstName": "Brendon", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "employeeNumber": "548", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Dirk", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-14"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "employeeNumber": "549", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-01", "ethnicity": "White", "firstName": "Claudio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "employeeNumber": "550", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "employeeNumber": "551", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "Blaise", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "employeeNumber": "552", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-08-24", "ethnicity": null, "firstName": "Adrianna", "gender": "Female", "genderIdentity": null, "hireDate": "2020-08-24"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "employeeNumber": "553", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-21", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "employeeNumber": "554", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Rafal", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "employeeNumber": "555", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-26", "ethnicity": "Asian", "firstName": "Sophean", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "employeeNumber": "556", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Aleksey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "employeeNumber": "557", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569533}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "employeeNumber": "558", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-06", "ethnicity": null, "firstName": "F\u00e1bio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-06"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "employeeNumber": "559", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-01", "ethnicity": "White", "firstName": "Florent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "employeeNumber": "560", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-29", "ethnicity": "White", "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "employeeNumber": "561", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Deb", "gender": "Female", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "employeeNumber": "562", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-21", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-21"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "employeeNumber": "563", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-10", "ethnicity": "White", "firstName": "Rui", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "employeeNumber": "564", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-28", "ethnicity": null, "firstName": "Krzysztof", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "employeeNumber": "565", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "White", "firstName": "Will", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-21"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "employeeNumber": "566", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-31", "ethnicity": null, "firstName": "Lola", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "employeeNumber": "567", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "employeeNumber": "568", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Maya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "employeeNumber": "569", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-19", "ethnicity": "White", "firstName": "Aleksandra", "gender": "Non-binary", "genderIdentity": "Non-binary", "hireDate": "2020-10-19"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "employeeNumber": "570", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-09", "ethnicity": null, "firstName": "Patricija", "gender": "Female", "genderIdentity": null, "hireDate": "2020-09-09"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "employeeNumber": "571", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-05-01", "ethnicity": "Asian", "firstName": "Sombat", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "employeeNumber": "572", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": "White", "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569534}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "employeeNumber": "573", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-05", "ethnicity": "White", "firstName": "Ronald", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "employeeNumber": "574", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Nadja", "gender": "Female", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "employeeNumber": "575", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Mateusz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "employeeNumber": "576", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": null, "firstName": "Reshama", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "employeeNumber": "577", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-25", "ethnicity": "White", "firstName": "Suzanne", "gender": "Female", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "employeeNumber": "578", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-31", "ethnicity": null, "firstName": "Jerushah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "employeeNumber": "580", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": null, "firstName": "Sergey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "employeeNumber": "581", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-04", "ethnicity": "White", "firstName": "Alena", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "employeeNumber": "582", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Kristof", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "employeeNumber": "583", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-25", "ethnicity": null, "firstName": "Ralph", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-12"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "employeeNumber": "584", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-30", "ethnicity": "Asian", "firstName": "Akshay", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-30"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "employeeNumber": "585", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "employeeNumber": "586", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "employeeNumber": "587", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": "Black or African American", "firstName": "Adrienne", "gender": "Female", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "employeeNumber": "588", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-12", "ethnicity": null, "firstName": "\u0141ukasz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "employeeNumber": "589", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-22", "ethnicity": null, "firstName": "Christopher", "gender": null, "genderIdentity": null, "hireDate": "2020-11-16"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "employeeNumber": "590", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-04-05", "ethnicity": "Asian", "firstName": "Frank", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "employeeNumber": "591", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Hailong", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-16"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "employeeNumber": "592", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-31", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-18"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "employeeNumber": "593", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": "White", "firstName": "Aur\u00e9lien", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "employeeNumber": "594", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Jon", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "employeeNumber": "595", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-18", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "employeeNumber": "597", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": null, "firstName": "Dmytro", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "employeeNumber": "598", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-07", "ethnicity": "Two or More Races", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-07"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "employeeNumber": "599", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": null, "firstName": "Chandler", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "employeeNumber": "600", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-11-09", "ethnicity": null, "firstName": "Roni", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "employeeNumber": "601", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "Black or African American", "firstName": "Sydney", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "employeeNumber": "602", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-12", "ethnicity": "Black or African American", "firstName": "Rence", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569536}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "employeeNumber": "603", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": "Two or More Races", "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-17"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "employeeNumber": "604", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": "White", "firstName": "Darrell", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "employeeNumber": "605", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "Asian", "firstName": "Robin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-23"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "employeeNumber": "606", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-15", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-15"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "employeeNumber": "607", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "White", "firstName": "Clair", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "employeeNumber": "608", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-21", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-21"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "employeeNumber": "609", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Vaughn", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "employeeNumber": "610", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-19", "ethnicity": "Asian", "firstName": "Matthias", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "employeeNumber": "611", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": "White", "firstName": "Kym", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "employeeNumber": "612", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "employeeNumber": "613", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": "White", "firstName": "Elin", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "employeeNumber": "614", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Maria Luisa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "employeeNumber": "615", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "employeeNumber": "616", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "employeeNumber": "617", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-16", "ethnicity": "Asian", "firstName": "Xiaojin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "employeeNumber": "618", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-01", "ethnicity": "Asian", "firstName": "Snehal", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "employeeNumber": "619", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-04", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "employeeNumber": "620", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "employeeNumber": "621", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-01", "ethnicity": "Asian", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "employeeNumber": "622", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-16", "ethnicity": null, "firstName": "Lorenzo", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "employeeNumber": "623", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-11", "ethnicity": null, "firstName": "Anirudh", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "employeeNumber": "624", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Kristin", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "employeeNumber": "626", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Tara", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-17"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "employeeNumber": "628", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-01", "ethnicity": null, "firstName": "Lavanya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "employeeNumber": "629", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-06"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "employeeNumber": "631", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-03", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "employeeNumber": "632", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-01", "ethnicity": null, "firstName": "Nicole", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "employeeNumber": "633", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Rouven", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "employeeNumber": "634", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-18", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "employeeNumber": "636", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ken", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "employeeNumber": "637", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "employeeNumber": "638", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Claes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "employeeNumber": "639", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-01", "ethnicity": "Two or More Races", "firstName": "Kristin", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "employeeNumber": "640", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-09", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "employeeNumber": "641", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-17", "ethnicity": "Asian", "firstName": "Nikunj", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "employeeNumber": "642", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "employeeNumber": "643", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-10", "ethnicity": "White", "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-19"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "employeeNumber": "644", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-08", "ethnicity": "White", "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "employeeNumber": "645", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-15", "ethnicity": "White", "firstName": "Kristian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-15"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "employeeNumber": "646", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-19", "ethnicity": null, "firstName": "Pierre", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "employeeNumber": "647", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-08", "ethnicity": "White", "firstName": "Merrilee", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "employeeNumber": "648", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": "White", "firstName": "Arne", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "employeeNumber": "649", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-22", "ethnicity": null, "firstName": "Karl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "employeeNumber": "650", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Zaw Win", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569539}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "employeeNumber": "651", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-15", "ethnicity": "White", "firstName": "Marius", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "employeeNumber": "652", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Kara", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "employeeNumber": "653", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-14", "ethnicity": "White", "firstName": "Austin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "employeeNumber": "654", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "Asian", "firstName": "Qiu Jin Jasreel", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "employeeNumber": "655", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Priya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "employeeNumber": "656", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": null, "firstName": "Kadday", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "employeeNumber": "658", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": null, "firstName": "Natalia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "employeeNumber": "659", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Konstantinos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-23"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "employeeNumber": "660", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-08", "ethnicity": null, "firstName": "Torbj\u00f6rn", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-08"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "employeeNumber": "661", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": null, "firstName": "Prashanth", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "employeeNumber": "662", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": "White", "firstName": "Cameron", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "employeeNumber": "663", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-26", "ethnicity": "White", "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569540}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "employeeNumber": "664", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-31", "ethnicity": "Asian", "firstName": "Thao", "gender": "Female", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "employeeNumber": "665", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-22", "ethnicity": "Asian", "firstName": "Ravi Kiran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "employeeNumber": "666", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Alyssa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "employeeNumber": "667", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-11-23", "ethnicity": "Asian", "firstName": "Raushan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-23"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "employeeNumber": "668", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Markus", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "employeeNumber": "669", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": "Asian", "firstName": "Armida", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-09"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "employeeNumber": "670", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-13", "ethnicity": "White", "firstName": "Dana", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "employeeNumber": "671", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-23", "ethnicity": null, "firstName": "Barry", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "employeeNumber": "672", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "employeeNumber": "673", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": "Asian", "firstName": "Maruthi", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "employeeNumber": "674", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "employeeNumber": "675", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "employeeNumber": "676", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Guangxue", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "employeeNumber": "677", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-24", "ethnicity": null, "firstName": "Emma", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-24"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "employeeNumber": "678", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Nikita", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569541}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "employeeNumber": "679", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "employeeNumber": "680", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-01", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "employeeNumber": "681", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-02", "ethnicity": "Asian", "firstName": "Jaimie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "employeeNumber": "682", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-21", "ethnicity": null, "firstName": "Bryce", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-21"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "employeeNumber": "683", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-06", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "employeeNumber": "684", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-20", "ethnicity": null, "firstName": "Divya", "gender": null, "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "employeeNumber": "685", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-15", "ethnicity": "White", "firstName": "Izabela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "employeeNumber": "688", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-18", "ethnicity": "White", "firstName": "Zofia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-01"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "employeeNumber": "689", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "Hispanic or Latino", "firstName": "Silvia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "employeeNumber": "690", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Astrid", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "employeeNumber": "691", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-01", "ethnicity": null, "firstName": "Nicolas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "employeeNumber": "692", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-24", "ethnicity": null, "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569542}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "employeeNumber": "693", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-26", "ethnicity": null, "firstName": "Elliot", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "employeeNumber": "694", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Xiaojie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "employeeNumber": "695", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Ke", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "employeeNumber": "696", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Ali", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "employeeNumber": "697", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "employeeNumber": "698", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": "Two or More Races", "firstName": "Bianca", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "employeeNumber": "699", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-19", "ethnicity": null, "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "employeeNumber": "700", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Ghlen", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "employeeNumber": "701", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "Hispanic or Latino", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "employeeNumber": "702", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-04", "ethnicity": "White", "firstName": "Antony", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-04"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "employeeNumber": "703", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Andrea", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "employeeNumber": "704", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "employeeNumber": "705", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-22", "ethnicity": "White", "firstName": "Joshua", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "employeeNumber": "706", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-03", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "employeeNumber": "707", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-09"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "employeeNumber": "708", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-14", "ethnicity": null, "firstName": "Janica", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "employeeNumber": "709", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-11", "ethnicity": null, "firstName": "Steven", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "employeeNumber": "710", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-06-26", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-26"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "employeeNumber": "711", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-26", "ethnicity": "White", "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "employeeNumber": "712", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-17", "ethnicity": "White", "firstName": "Aisling", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "employeeNumber": "713", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-01", "ethnicity": "Asian", "firstName": "Rahul", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "employeeNumber": "715", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "employeeNumber": "716", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Sandeep", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "employeeNumber": "717", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-17", "ethnicity": null, "firstName": "Andre", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "employeeNumber": "718", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "Asian", "firstName": "Harshit", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "employeeNumber": "719", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-09", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-10"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "employeeNumber": "720", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": "Asian", "firstName": "Senthil", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "employeeNumber": "721", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-16", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "employeeNumber": "722", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Jeff", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "employeeNumber": "723", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-26", "ethnicity": null, "firstName": "Graeme", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "employeeNumber": "724", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Shay", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "employeeNumber": "725", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": "White", "firstName": "Heiko", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "employeeNumber": "726", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-30", "ethnicity": null, "firstName": "Arie", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-30"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "employeeNumber": "727", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-23", "ethnicity": null, "firstName": "Tselmeg", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "employeeNumber": "728", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Aleksandar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "employeeNumber": "729", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-26", "ethnicity": "White", "firstName": "Krisztian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "employeeNumber": "730", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-01", "ethnicity": null, "firstName": "Damiano", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "employeeNumber": "731", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-30", "ethnicity": "Asian", "firstName": "Alec", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "employeeNumber": "732", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-02", "ethnicity": null, "firstName": "Tianci", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "employeeNumber": "733", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2021-05-24", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-24"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "employeeNumber": "734", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": "Hispanic or Latino", "firstName": "Rose", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "employeeNumber": "735", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "employeeNumber": "736", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "employeeNumber": "737", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Maheswaran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "employeeNumber": "738", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "employeeNumber": "739", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "White", "firstName": "Olof", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "employeeNumber": "740", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-09", "ethnicity": "White", "firstName": "Stefanos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-09"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "employeeNumber": "741", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Karl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "employeeNumber": "742", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-16", "ethnicity": "Asian", "firstName": "Nathaniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "employeeNumber": "743", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-24", "ethnicity": "Asian", "firstName": "Kimberly", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-05"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "employeeNumber": "744", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-05"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "employeeNumber": "745", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-25", "ethnicity": "White", "firstName": "Stewart", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "employeeNumber": "746", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-29", "ethnicity": "Asian", "firstName": "Rosalyn", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-06"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "employeeNumber": "747", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-17", "ethnicity": "Asian", "firstName": "Bhavin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-16"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "employeeNumber": "748", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-21", "ethnicity": null, "firstName": "Geeta", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "employeeNumber": "749", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-29", "ethnicity": "Two or More Races", "firstName": "Taline", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569546}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "employeeNumber": "750", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-06", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-06"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "employeeNumber": "751", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": "Asian", "firstName": "Chunyu", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "employeeNumber": "753", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": "White", "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "employeeNumber": "754", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-22", "ethnicity": null, "firstName": "Victor", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-07"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "employeeNumber": "755", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2023-10-01", "ethnicity": null, "firstName": "Eija", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "employeeNumber": "756", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-25"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "employeeNumber": "757", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-02", "ethnicity": "White", "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "employeeNumber": "758", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": "Asian", "firstName": "Yi Ren", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "employeeNumber": "759", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "employeeNumber": "760", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-13", "ethnicity": "White", "firstName": "Ignacio", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "employeeNumber": "761", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-28", "ethnicity": null, "firstName": "Dominic", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "employeeNumber": "762", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": null, "firstName": "Andr\u00e9s", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "employeeNumber": "764", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-15", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "employeeNumber": "765", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-04", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-11"}, "emitted_at": 1710872569547}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "employeeNumber": "766", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-19", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-19"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "employeeNumber": "767", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-20", "ethnicity": null, "firstName": "Irene", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "employeeNumber": "768", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-15"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "employeeNumber": "769", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-09", "ethnicity": "Two or More Races", "firstName": "Medina", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "employeeNumber": "770", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": "White", "firstName": "Odise", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "employeeNumber": "771", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-20", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "employeeNumber": "772", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-02", "ethnicity": null, "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-02"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "employeeNumber": "773", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-07", "ethnicity": null, "firstName": "Dubal", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "employeeNumber": "774", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "employeeNumber": "775", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-27", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "employeeNumber": "776", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-09", "ethnicity": null, "firstName": "H\u00e9lo\u00efse", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-09"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "employeeNumber": "777", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "Ana", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "employeeNumber": "778", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "employeeNumber": "779", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Joakim", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569548}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "employeeNumber": "780", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-17"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "employeeNumber": "781", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-16", "ethnicity": "White", "firstName": "Steve", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "employeeNumber": "782", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Juan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "employeeNumber": "783", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-07", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "employeeNumber": "784", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-23", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "employeeNumber": "785", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "employeeNumber": "786", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-08-23", "ethnicity": "Two or More Races", "firstName": "Felipe", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "employeeNumber": "787", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "White", "firstName": "Zachary", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "employeeNumber": "788", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-13", "ethnicity": null, "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "employeeNumber": "789", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": null, "firstName": "Abdullah", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "employeeNumber": "790", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-15", "ethnicity": "White", "firstName": "Tomasz", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-15"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "employeeNumber": "791", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-23", "ethnicity": null, "firstName": "Dain", "gender": null, "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "employeeNumber": "792", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-09-07", "ethnicity": null, "firstName": "Brenda", "gender": null, "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "employeeNumber": "793", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": null, "firstName": "Bastien", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "employeeNumber": "794", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "employeeNumber": "796", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-29", "ethnicity": null, "firstName": "Okta", "gender": null, "genderIdentity": null, "hireDate": "0000-00-00"}, "emitted_at": 1710872569549}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "employeeNumber": "797", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Shiny", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "employeeNumber": "798", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-24", "ethnicity": "Asian", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "employeeNumber": "799", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-20", "ethnicity": "Asian", "firstName": "Kenju", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "employeeNumber": "800", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Neha", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "employeeNumber": "801", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-09-27", "ethnicity": null, "firstName": "Sterin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "employeeNumber": "802", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": null, "firstName": "Margaret", "gender": null, "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "employeeNumber": "803", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": "Asian", "firstName": "Junxiang", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "employeeNumber": "804", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-11", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "employeeNumber": "805", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Owen", "gender": null, "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "employeeNumber": "806", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "employeeNumber": "807", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "White", "firstName": "Harley", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "employeeNumber": "808", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": null, "firstName": "Finbar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "employeeNumber": "809", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": "White", "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "employeeNumber": "810", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-29", "ethnicity": "Black or African American", "firstName": "Lydia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "employeeNumber": "811", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Amelia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569550}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "employeeNumber": "812", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-27", "ethnicity": null, "firstName": "Kevin", "gender": null, "genderIdentity": null, "hireDate": "2021-09-08"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "employeeNumber": "813", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "employeeNumber": "814", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-20", "ethnicity": "Hispanic or Latino", "firstName": "Ruben", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "employeeNumber": "815", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-04", "ethnicity": "Asian", "firstName": "Connie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "employeeNumber": "816", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2021-09-08", "ethnicity": null, "firstName": "Myat", "gender": null, "genderIdentity": null, "hireDate": "2021-09-08"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "employeeNumber": "817", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Julie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "employeeNumber": "818", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "employeeNumber": "819", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Ioannis", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "employeeNumber": "820", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-15", "ethnicity": "White", "firstName": "Paulette", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "employeeNumber": "821", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-17", "ethnicity": null, "firstName": "Shiyong", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "employeeNumber": "822", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": "Asian", "firstName": "Cheng", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-28"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "employeeNumber": "823", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-20"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "employeeNumber": "824", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-21", "ethnicity": null, "firstName": "Yeow Hong", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-21"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "employeeNumber": "825", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Florin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "employeeNumber": "826", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "employeeNumber": "827", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-11", "ethnicity": "White", "firstName": "Cassandra", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569551}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "employeeNumber": "828", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "Hispanic or Latino", "firstName": "Paulina", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "employeeNumber": "829", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-12-01", "ethnicity": null, "firstName": "Aayush", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-01"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "employeeNumber": "830", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Taran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-17"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "employeeNumber": "831", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-29", "ethnicity": "Asian", "firstName": "Abhinav", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "employeeNumber": "832", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-02", "ethnicity": null, "firstName": "Job", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-02"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "employeeNumber": "833", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Chintan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-30"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "employeeNumber": "834", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": null, "firstName": "Damarius", "gender": null, "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "employeeNumber": "835", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Jianfu", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "employeeNumber": "836", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "employeeNumber": "837", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "employeeNumber": "838", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "employeeNumber": "839", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-15", "ethnicity": "Asian", "firstName": "Karuna", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "employeeNumber": "840", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-15", "ethnicity": "Asian", "firstName": "Omar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "employeeNumber": "841", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-19", "ethnicity": "White", "firstName": "Hope", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "employeeNumber": "842", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Ethan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569552}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "employeeNumber": "843", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": null, "firstName": "Ben", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "employeeNumber": "844", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "employeeNumber": "845", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2024-01-26", "ethnicity": "Two or More Races", "firstName": "Nima", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "employeeNumber": "846", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-05", "ethnicity": null, "firstName": "Palanisamy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-05"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "employeeNumber": "847", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-30", "ethnicity": null, "firstName": "Timothy", "gender": null, "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "employeeNumber": "848", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-24", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "employeeNumber": "849", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-17", "ethnicity": "Asian", "firstName": "Benny", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "employeeNumber": "850", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "employeeNumber": "851", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Trevor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "employeeNumber": "852", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-24", "ethnicity": null, "firstName": "Nicola", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "employeeNumber": "853", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-25", "ethnicity": "Asian", "firstName": "Irwan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "employeeNumber": "854", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Jon", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "employeeNumber": "855", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Alan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "employeeNumber": "856", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-09", "ethnicity": "White", "firstName": "Sefton", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "employeeNumber": "857", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-25"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "employeeNumber": "858", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-01", "ethnicity": "Two or More Races", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-01"}, "emitted_at": 1710872569553}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "employeeNumber": "859", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-04", "ethnicity": "White", "firstName": "Nicola", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "employeeNumber": "860", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "H\u00e9l\u00e8ne", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-29"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "employeeNumber": "861", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "employeeNumber": "862", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-09", "ethnicity": "White", "firstName": "Dave", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "employeeNumber": "863", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Grant", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "employeeNumber": "864", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Ye", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "employeeNumber": "865", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Molly", "gender": null, "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "employeeNumber": "866", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Ansar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "employeeNumber": "867", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": null, "firstName": "Frederick", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "employeeNumber": "868", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Lars", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "employeeNumber": "869", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-03", "ethnicity": null, "firstName": "Jamie", "gender": null, "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "employeeNumber": "870", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "employeeNumber": "871", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-02", "ethnicity": "White", "firstName": "Megan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "employeeNumber": "872", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-11-15", "ethnicity": null, "firstName": "Promit", "gender": null, "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "employeeNumber": "873", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Fraser", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "employeeNumber": "874", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-15", "ethnicity": "Hispanic or Latino", "firstName": "Eduardo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569554}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "employeeNumber": "875", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Paulo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "employeeNumber": "876", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-16", "ethnicity": "White", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "employeeNumber": "877", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "employeeNumber": "878", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "employeeNumber": "879", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "Black or African American", "firstName": "Rahim", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "employeeNumber": "880", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-17", "ethnicity": "White", "firstName": "Susann", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-17"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "employeeNumber": "881", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "employeeNumber": "882", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-12", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-09"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "employeeNumber": "883", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Harit", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "employeeNumber": "884", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": "Asian", "firstName": "Ravikiran", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "employeeNumber": "885", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-15", "ethnicity": "Hispanic or Latino", "firstName": "Harold", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-15"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "employeeNumber": "886", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "employeeNumber": "887", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Tushar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "employeeNumber": "888", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-15", "ethnicity": null, "firstName": "Juan Carlos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-15"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "employeeNumber": "889", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Pamela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-06"}, "emitted_at": 1710872569555}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "employeeNumber": "890", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-28", "ethnicity": "White", "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "employeeNumber": "891", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-26", "ethnicity": "Asian", "firstName": "Wen", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "employeeNumber": "892", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-09", "ethnicity": "Black or African American", "firstName": "Carrie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-09"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "employeeNumber": "893", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "employeeNumber": "894", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-13", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-25"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "employeeNumber": "895", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-14", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "employeeNumber": "896", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-28", "ethnicity": "Two or More Races", "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-28"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "employeeNumber": "897", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": "White", "firstName": "Rhys", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "employeeNumber": "898", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-11", "ethnicity": null, "firstName": "Leonardo", "gender": null, "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "employeeNumber": "899", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "Two or More Races", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "employeeNumber": "900", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": null, "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "employeeNumber": "901", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Rory", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "employeeNumber": "902", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-07", "ethnicity": "White", "firstName": "Katharine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "employeeNumber": "903", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-05", "ethnicity": null, "firstName": "Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-05"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "employeeNumber": "904", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": "Asian", "firstName": "Amey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "employeeNumber": "905", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569556}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "employeeNumber": "906", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "employeeNumber": "907", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "employeeNumber": "908", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "employeeNumber": "909", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-19", "ethnicity": null, "firstName": "Liam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "employeeNumber": "910", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": null, "firstName": "Yuen Leung", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "employeeNumber": "911", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "employeeNumber": "912", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Joe", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "employeeNumber": "913", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-13", "ethnicity": "White", "firstName": "Simone", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "employeeNumber": "914", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Katianne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "employeeNumber": "915", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-07", "ethnicity": "Asian", "firstName": "Puneet", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "employeeNumber": "918", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "employeeNumber": "919", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-06", "ethnicity": "White", "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "employeeNumber": "920", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "Asian", "firstName": "Arvind", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "employeeNumber": "921", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-15", "ethnicity": null, "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-15"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "employeeNumber": "922", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-04", "ethnicity": null, "firstName": "Lovepreet", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "employeeNumber": "923", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "employeeNumber": "924", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-28", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "employeeNumber": "925", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "Stefano", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "employeeNumber": "926", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Yolande", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "employeeNumber": "927", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": "Asian", "firstName": "Sarvesh", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "employeeNumber": "929", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": "Asian", "firstName": "Yamini", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "employeeNumber": "930", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-24", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "employeeNumber": "931", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-18", "ethnicity": "White", "firstName": "Blake", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "employeeNumber": "932", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-18", "ethnicity": "Asian", "firstName": "Rajib", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-17"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "employeeNumber": "934", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "employeeNumber": "935", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "employeeNumber": "936", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-24", "ethnicity": "Hispanic or Latino", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "employeeNumber": "937", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-19"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "employeeNumber": "938", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-14", "ethnicity": "Asian", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-14"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "employeeNumber": "939", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "employeeNumber": "941", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-28", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "employeeNumber": "942", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-01", "ethnicity": "White", "firstName": "Georgios", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569558}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "employeeNumber": "943", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Yuan Yee", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "employeeNumber": "944", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Narin\u00e9", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "employeeNumber": "945", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Kim", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-31"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "employeeNumber": "946", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "employeeNumber": "947", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-23", "ethnicity": null, "firstName": "Yang", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "employeeNumber": "948", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-14", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-14"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "employeeNumber": "949", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-10", "ethnicity": "Asian", "firstName": "Tin Yan Audrey", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-10"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "employeeNumber": "950", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Ralph", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "employeeNumber": "951", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-22"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "employeeNumber": "953", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-07", "ethnicity": "Hispanic or Latino", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "employeeNumber": "954", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-09"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "employeeNumber": "955", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-02-15", "ethnicity": null, "firstName": "Paula", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-15"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "employeeNumber": "956", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Li Kim", "gender": "Female", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "employeeNumber": "957", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "Black or African American", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "employeeNumber": "958", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-16", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-16"}, "emitted_at": 1710872569559}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "employeeNumber": "959", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Alfredo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "employeeNumber": "960", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": "White", "firstName": "Cato", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "employeeNumber": "961", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-07", "ethnicity": "Asian", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "employeeNumber": "962", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": "White", "firstName": "Jacqueline", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "employeeNumber": "963", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "Asian", "firstName": "Chandra", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "employeeNumber": "964", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-18", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "employeeNumber": "965", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "Asian", "firstName": "Yu", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "employeeNumber": "966", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-20", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "employeeNumber": "967", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Masayuki", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "employeeNumber": "968", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-14", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-14"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "employeeNumber": "970", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-09", "ethnicity": "Asian", "firstName": "Rajesh", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "employeeNumber": "972", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "employeeNumber": "973", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569560}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "employeeNumber": "974", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Wanhang", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "employeeNumber": "975", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "employeeNumber": "976", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "employeeNumber": "977", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": "Asian", "firstName": "Mansi", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "employeeNumber": "978", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-25", "ethnicity": "Asian", "firstName": "Narayanan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-30"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "employeeNumber": "979", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Gemma", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "employeeNumber": "980", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-02-22", "ethnicity": null, "firstName": "Nitin", "gender": null, "genderIdentity": null, "hireDate": "2022-02-22"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "employeeNumber": "982", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-03", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "employeeNumber": "984", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": null, "firstName": "Mounir", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "employeeNumber": "985", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-03-05", "ethnicity": null, "firstName": "Reza", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-05"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "employeeNumber": "986", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "employeeNumber": "987", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Trevor", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "employeeNumber": "988", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "employeeNumber": "989", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "Asian", "firstName": "Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "employeeNumber": "990", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Paolo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "employeeNumber": "991", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-12", "ethnicity": null, "firstName": "Vallyn", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "employeeNumber": "992", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "Asian", "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "employeeNumber": "993", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-04", "ethnicity": "Asian", "firstName": "Vishvjeet", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "employeeNumber": "994", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-16", "ethnicity": "Hispanic or Latino", "firstName": "Francisco", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-16"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "employeeNumber": "995", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Ezhilvendhan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "employeeNumber": "996", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-24", "ethnicity": "Asian", "firstName": "Wens", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "employeeNumber": "997", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "employeeNumber": "998", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-09", "ethnicity": null, "firstName": "Georgia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "employeeNumber": "1000", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-21", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-11"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "employeeNumber": "1001", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-19", "ethnicity": null, "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-19"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "employeeNumber": "1002", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-18", "ethnicity": null, "firstName": "Ingrid", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "employeeNumber": "1003", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "employeeNumber": "1004", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-26", "ethnicity": null, "firstName": "Arjun", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-26"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "employeeNumber": "1005", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-18", "ethnicity": null, "firstName": "Anthony", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "employeeNumber": "1006", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": "White", "firstName": "Xavier", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "employeeNumber": "1007", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-02", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "employeeNumber": "1008", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Sharon", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "employeeNumber": "1009", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-03-28", "ethnicity": null, "firstName": "Sarika", "gender": null, "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "employeeNumber": "1010", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-26", "ethnicity": null, "firstName": "Bj\u00f6rn", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-07"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "employeeNumber": "1011", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Maks", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569562}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "employeeNumber": "1012", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-09", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "employeeNumber": "1013", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "employeeNumber": "1014", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Noah", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "employeeNumber": "1015", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-19", "ethnicity": null, "firstName": "Sabrina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-19"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "employeeNumber": "1016", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-29", "ethnicity": null, "firstName": "Erez", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "employeeNumber": "1017", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Miguel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "employeeNumber": "1018", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-18", "ethnicity": null, "firstName": "Sammy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "employeeNumber": "1019", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "employeeNumber": "1020", "employmentHistoryStatus": "Vendor", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Dane", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "employeeNumber": "1021", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "White", "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "employeeNumber": "1022", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Jim", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "employeeNumber": "1024", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Darren", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-09"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "employeeNumber": "1025", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-12", "ethnicity": "Hispanic or Latino", "firstName": "Gaston", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "employeeNumber": "1026", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-11", "ethnicity": "Two or More Races", "firstName": "Yuki", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "employeeNumber": "1027", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-05", "ethnicity": "White", "firstName": "August", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "employeeNumber": "1028", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-30", "ethnicity": "White", "firstName": "Teodosiy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "employeeNumber": "1029", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "employeeNumber": "1030", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-23", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "employeeNumber": "1031", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Borun", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "employeeNumber": "1032", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-02", "ethnicity": null, "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "employeeNumber": "1033", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-05", "ethnicity": null, "firstName": "Graeme", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "employeeNumber": "1034", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "employeeNumber": "1036", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Jenny", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "employeeNumber": "1037", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": null, "firstName": "Jean-Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "employeeNumber": "1039", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "Hispanic or Latino", "firstName": "Federico", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "employeeNumber": "1040", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-31", "ethnicity": null, "firstName": "Josefin", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "employeeNumber": "1041", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Anders", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "employeeNumber": "1042", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Giovani", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "employeeNumber": "1043", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": "Asian", "firstName": "Rohan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "employeeNumber": "1044", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "employeeNumber": "1045", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": null, "firstName": "Simone", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "employeeNumber": "1046", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-01", "ethnicity": null, "firstName": "Lidia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "employeeNumber": "1047", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-30", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "employeeNumber": "1049", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-30", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "employeeNumber": "1050", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-31", "ethnicity": "Asian", "firstName": "Kaixuan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "employeeNumber": "1051", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Felipe Lee", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "employeeNumber": "1052", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": null, "firstName": "Aleksandras", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "employeeNumber": "1053", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-21", "ethnicity": "Asian", "firstName": "Sravani", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-21"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "employeeNumber": "1054", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "employeeNumber": "1055", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Karen", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "employeeNumber": "1056", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-01", "ethnicity": "White", "firstName": "Cydney", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "employeeNumber": "1057", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Suzanne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "employeeNumber": "1058", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Thorsten", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "employeeNumber": "1059", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Micha\u0142", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "employeeNumber": "1060", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Pahola", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "employeeNumber": "1061", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "Ella", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "employeeNumber": "1062", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "employeeNumber": "1063", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-02", "ethnicity": null, "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "employeeNumber": "1065", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Virginia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "employeeNumber": "1066", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-06", "ethnicity": "Asian", "firstName": "Danny", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "employeeNumber": "1068", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "employeeNumber": "1069", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-12", "ethnicity": "White", "firstName": "Katherine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "employeeNumber": "1070", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Camilla", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "employeeNumber": "1071", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569565}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "employeeNumber": "1073", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "employeeNumber": "1074", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-06-01", "ethnicity": "Asian", "firstName": "Haisheng", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "employeeNumber": "1075", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "employeeNumber": "1076", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": "White", "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "employeeNumber": "1077", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Pauliina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "employeeNumber": "1078", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "employeeNumber": "1079", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "employeeNumber": "1080", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Sam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "employeeNumber": "1081", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-16", "ethnicity": "Asian", "firstName": "Vama", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "employeeNumber": "1083", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "employeeNumber": "1084", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-25", "ethnicity": "White", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-25"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "employeeNumber": "1085", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Stacey", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "employeeNumber": "1086", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-16", "ethnicity": "Asian", "firstName": "Sharmi", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "employeeNumber": "1087", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-17", "ethnicity": "Asian", "firstName": "Rajendran", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-26"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "employeeNumber": "1088", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Suba", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "employeeNumber": "1089", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-23", "ethnicity": "White", "firstName": "Madison", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "employeeNumber": "1090", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-23", "ethnicity": null, "firstName": "Sanjeev", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "employeeNumber": "1091", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "employeeNumber": "1092", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-04", "ethnicity": null, "firstName": "Maurizio", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-04"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "employeeNumber": "1093", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "employeeNumber": "1094", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-01", "ethnicity": null, "firstName": "Lovisa", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-27"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "employeeNumber": "1096", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Fausto", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "employeeNumber": "1097", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": null, "firstName": "Fabian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "employeeNumber": "1098", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Jesper", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "employeeNumber": "1100", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Imad", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "employeeNumber": "1101", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "employeeNumber": "1102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Gloria", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "employeeNumber": "1104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-03", "ethnicity": null, "firstName": "Padmashree", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "employeeNumber": "1105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Caleb", "gender": null, "genderIdentity": null, "hireDate": "2022-06-15"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "employeeNumber": "1106", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-28", "ethnicity": null, "firstName": "Soumya Jyoti", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-25"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "employeeNumber": "1107", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Gustavo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "employeeNumber": "1108", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "employeeNumber": "1110", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "employeeNumber": "1111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "employeeNumber": "1112", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Lindsay", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569567}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "employeeNumber": "1113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "employeeNumber": "1114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "employeeNumber": "1115", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": null, "firstName": "Jeferson", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "employeeNumber": "1116", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "employeeNumber": "1117", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Ioan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "employeeNumber": "1118", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-28", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Assaf", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-28"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "employeeNumber": "1119", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-26", "ethnicity": null, "firstName": "Liam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "employeeNumber": "1120", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Konstanze", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "employeeNumber": "1121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-09", "ethnicity": null, "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "employeeNumber": "1122", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": "Hispanic or Latino", "firstName": "Santiago", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "employeeNumber": "1123", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-30", "ethnicity": "Two or More Races", "firstName": "Selena", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-30"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "employeeNumber": "1124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-10", "ethnicity": null, "firstName": "Gregory", "gender": null, "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "employeeNumber": "1126", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "employeeNumber": "1127", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Claire", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "employeeNumber": "1129", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Resa", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-31"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "employeeNumber": "1130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "employeeNumber": "1131", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Harsha", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569568}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "employeeNumber": "1132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-08", "ethnicity": null, "firstName": "Eileen", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-13"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "employeeNumber": "1133", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "employeeNumber": "1134", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Maya", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "employeeNumber": "1135", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-01", "ethnicity": "White", "firstName": "Irena", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "employeeNumber": "1136", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": null, "firstName": "Yuval", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "employeeNumber": "1137", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "employeeNumber": "1138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-30", "ethnicity": "Asian", "firstName": "Prakash", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "employeeNumber": "1139", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": null, "firstName": "Dennis", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "employeeNumber": "1140", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Chern Yue", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "employeeNumber": "1141", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-03", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-03"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "employeeNumber": "1142", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-26", "ethnicity": null, "firstName": "Paurush", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "employeeNumber": "1143", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "employeeNumber": "1144", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-26", "ethnicity": null, "firstName": "Stefano", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "employeeNumber": "1145", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Oliver", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "employeeNumber": "1146", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Grigory", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "employeeNumber": "1147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-23", "ethnicity": null, "firstName": "Gabriel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-28"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "employeeNumber": "1148", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Waiariki", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "employeeNumber": "1149", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Ashwary", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "employeeNumber": "1150", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Pietro", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569569}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "employeeNumber": "1151", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": null, "firstName": "Siddhant", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "employeeNumber": "1152", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-16", "ethnicity": "White", "firstName": "Alessandro", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-16"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "employeeNumber": "1153", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-01", "ethnicity": "Asian", "firstName": "Gowrimani", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "employeeNumber": "1154", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-12", "ethnicity": null, "firstName": "Bryan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "employeeNumber": "1155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-21", "ethnicity": null, "firstName": "Alexandre", "gender": null, "genderIdentity": null, "hireDate": "2022-05-03"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "employeeNumber": "1156", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": "White", "firstName": "Bastien", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "employeeNumber": "1157", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "employeeNumber": "1158", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Christoffer", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "employeeNumber": "1159", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-07", "ethnicity": null, "firstName": "Chuck", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "employeeNumber": "1160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Niall", "gender": null, "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "employeeNumber": "1161", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-07", "ethnicity": "White", "firstName": "Stina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "employeeNumber": "1162", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-03", "ethnicity": "Two or More Races", "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "employeeNumber": "1163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Andrea", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "employeeNumber": "1164", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-30", "ethnicity": null, "firstName": "Jared", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-30"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "employeeNumber": "1165", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-25", "ethnicity": "Asian", "firstName": "Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-25"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "employeeNumber": "1166", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-19", "ethnicity": null, "firstName": "Fadi", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "employeeNumber": "1167", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Sheetal", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "employeeNumber": "1168", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-03", "ethnicity": "White", "firstName": "Mateusz", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "employeeNumber": "1169", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-29", "ethnicity": "Two or More Races", "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "employeeNumber": "1170", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Paulo", "gender": null, "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "employeeNumber": "1171", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "employeeNumber": "1172", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "employeeNumber": "1173", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-09", "ethnicity": null, "firstName": "Chris", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "employeeNumber": "1174", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-21", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "employeeNumber": "1175", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "Asian", "firstName": "Joan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "employeeNumber": "1176", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-03", "ethnicity": null, "firstName": "Ariel", "gender": null, "genderIdentity": null, "hireDate": "2022-09-07"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "employeeNumber": "1177", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-09-12", "ethnicity": "Hispanic or Latino", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "employeeNumber": "1178", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Viktoriya", "gender": null, "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "employeeNumber": "1179", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Chieh-Ling", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "employeeNumber": "1180", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Mahir", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-09"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "employeeNumber": "1181", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Ming", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "employeeNumber": "1182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Filip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-09"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "employeeNumber": "1184", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-19", "ethnicity": null, "firstName": "Ming", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "employeeNumber": "1185", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "Asian", "firstName": "Preeti", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "employeeNumber": "1186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-21", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "employeeNumber": "1187", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-15", "ethnicity": null, "firstName": "Leonard", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-15"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "employeeNumber": "1188", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569571}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "employeeNumber": "1189", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-17", "ethnicity": "Asian", "firstName": "Robin", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "employeeNumber": "1190", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Laxman", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "employeeNumber": "1191", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Marianne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "employeeNumber": "1192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-17", "ethnicity": null, "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "employeeNumber": "1193", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-17", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "employeeNumber": "1194", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-10-03", "ethnicity": null, "firstName": "Fabio", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "employeeNumber": "1195", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-19", "ethnicity": null, "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-19"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "employeeNumber": "1196", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-13", "ethnicity": "White", "firstName": "Duncan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "employeeNumber": "1197", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2022-09-27", "ethnicity": null, "firstName": "James", "gender": null, "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "employeeNumber": "1198", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Anuradha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "employeeNumber": "1199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": null, "firstName": "Catherine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "employeeNumber": "1200", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-30", "ethnicity": "White", "firstName": "Olga", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-30"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "employeeNumber": "1201", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Sergii", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-14"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "employeeNumber": "1202", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Darbi", "gender": null, "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "employeeNumber": "1203", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": null, "firstName": "Clint", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "employeeNumber": "1204", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "White", "firstName": "Sofiya", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "employeeNumber": "1206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-16", "ethnicity": null, "firstName": "Elizear", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "employeeNumber": "1207", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Conor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569572}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "employeeNumber": "1208", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-20", "ethnicity": null, "firstName": "Rachana", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-31"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "employeeNumber": "1209", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-31", "ethnicity": null, "firstName": "Alison", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-31"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "employeeNumber": "1210", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": null, "firstName": "Nils", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "employeeNumber": "1211", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Highton", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "employeeNumber": "1212", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-15", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "employeeNumber": "1213", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-23", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "employeeNumber": "1214", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-28", "ethnicity": "Decline to answer", "firstName": "Guhan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-28"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "employeeNumber": "1215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-23", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "employeeNumber": "1216", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Kirstie", "gender": null, "genderIdentity": null, "hireDate": "2022-01-31"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "employeeNumber": "1217", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "employeeNumber": "1218", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Olivia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-12"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "employeeNumber": "1219", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "employeeNumber": "1220", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-01", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-01"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "employeeNumber": "1221", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-21", "ethnicity": null, "firstName": "Meghan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-21"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "employeeNumber": "1222", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-02", "ethnicity": null, "firstName": "Aman", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-02"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "employeeNumber": "1224", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-05", "ethnicity": null, "firstName": "Jarrod", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "employeeNumber": "1225", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-05", "ethnicity": null, "firstName": "Hylke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-05"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "employeeNumber": "1227", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Stacey", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569573}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "employeeNumber": "1228", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-05", "ethnicity": null, "firstName": "Gianandrea", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-05"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "employeeNumber": "1229", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-12", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-12"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "employeeNumber": "1230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-15", "ethnicity": "Two or More Races", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "employeeNumber": "1231", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Austin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "employeeNumber": "1232", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-01"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "employeeNumber": "1233", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-19", "ethnicity": "White", "firstName": "Lori", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-19"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "employeeNumber": "1234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-05", "ethnicity": null, "firstName": "Arun", "gender": null, "genderIdentity": null, "hireDate": "2022-12-09"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "employeeNumber": "1235", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-05", "ethnicity": null, "firstName": "Alyson", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "employeeNumber": "1236", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": "White", "firstName": "Jeppe", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "employeeNumber": "1237", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Fidaliya", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "employeeNumber": "1238", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-27", "ethnicity": null, "firstName": "Nancy", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-27"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "employeeNumber": "1239", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": "Black or African American", "firstName": "Stacy", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "employeeNumber": "1240", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-23", "ethnicity": null, "firstName": "Dave", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-23"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "employeeNumber": "1241", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Charlie", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-11"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "employeeNumber": "1243", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Muddassir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-09"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "employeeNumber": "1244", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-01-09", "ethnicity": null, "firstName": "Giuliano", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-09"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "employeeNumber": "1245", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-21", "ethnicity": "White", "firstName": "Kent", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-21"}, "emitted_at": 1710872569574}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "employeeNumber": "1246", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-16"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "employeeNumber": "1247", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Evelina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-16"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "employeeNumber": "1248", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-17", "ethnicity": null, "firstName": "Ashley", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-17"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "employeeNumber": "1249", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-16", "ethnicity": null, "firstName": "Colin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-23"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "employeeNumber": "1250", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-13", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "employeeNumber": "1251", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Rutger", "gender": null, "genderIdentity": null, "hireDate": "2022-01-01"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "employeeNumber": "1252", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-22", "ethnicity": null, "firstName": "Rebecca", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-22"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "employeeNumber": "1253", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-13", "ethnicity": null, "firstName": "Cliff", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "employeeNumber": "1254", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Sanjay", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "employeeNumber": "1255", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-25", "ethnicity": null, "firstName": "Juliana", "gender": null, "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "employeeNumber": "1256", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Taynara", "gender": null, "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "employeeNumber": "1257", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": "White", "firstName": "Shawn", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "employeeNumber": "1258", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Neeraj", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "employeeNumber": "1259", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Mohit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "employeeNumber": "1260", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Rohit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "employeeNumber": "1261", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-07", "ethnicity": null, "firstName": "Vishwa", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "employeeNumber": "1262", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Sanjeev", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "employeeNumber": "1263", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-05-02", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-02"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "employeeNumber": "1264", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-07", "ethnicity": "White", "firstName": "Caroline", "gender": "Female", "genderIdentity": null, "hireDate": "2023-03-07"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "employeeNumber": "1265", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Chauncey", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "employeeNumber": "1266", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "employeeNumber": "1267", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "employeeNumber": "1268", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "employeeNumber": "1270", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-06", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-06"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "employeeNumber": "1271", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-03", "ethnicity": null, "firstName": "Sudhir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-03"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "employeeNumber": "1272", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Lucas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "employeeNumber": "1273", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Tomas", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-16"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "employeeNumber": "1274", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Adrian", "gender": null, "genderIdentity": null, "hireDate": "2023-01-30"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "employeeNumber": "1275", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Daevid", "gender": null, "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "employeeNumber": "1276", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-20", "ethnicity": "White", "firstName": "Dakotah", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-20"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "employeeNumber": "1277", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Laine", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "employeeNumber": "1278", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Kristine", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569576}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "employeeNumber": "1279", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Pinky", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "employeeNumber": "1280", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Arnel", "gender": null, "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "employeeNumber": "1281", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Darell", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "employeeNumber": "1282", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Ferly-Ann", "gender": null, "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "employeeNumber": "1283", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Lenegin", "gender": null, "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "employeeNumber": "1284", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Albert", "gender": null, "genderIdentity": null, "hireDate": "2023-02-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "employeeNumber": "1285", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Sandy", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "employeeNumber": "1286", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Robert", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "employeeNumber": "1287", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Eloisa", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "employeeNumber": "1288", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Alvin", "gender": null, "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "employeeNumber": "1289", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-27", "ethnicity": null, "firstName": "Kyle", "gender": null, "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "employeeNumber": "1290", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-11", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-11"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "employeeNumber": "1291", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-27", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "employeeNumber": "1292", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-13", "ethnicity": null, "firstName": "Julia", "gender": null, "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "employeeNumber": "1294", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": null, "firstName": "Frank", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-17"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "employeeNumber": "1295", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-10", "ethnicity": null, "firstName": "Ezekiel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-10"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "employeeNumber": "1297", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": "White", "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-17"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "employeeNumber": "1298", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Yesenia", "gender": null, "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569577}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "employeeNumber": "1299", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-05-01", "ethnicity": null, "firstName": "Jeff", "gender": null, "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "employeeNumber": "1300", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-04-04", "ethnicity": null, "firstName": "Izhar", "gender": null, "genderIdentity": null, "hireDate": "2023-04-04"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "employeeNumber": "1301", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-19", "ethnicity": null, "firstName": "Nazrul", "gender": null, "genderIdentity": null, "hireDate": "2023-04-04"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "employeeNumber": "1302", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Kanaka", "gender": "Female", "genderIdentity": null, "hireDate": "2023-04-24"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "employeeNumber": "1303", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "employeeNumber": "1304", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-10", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "employeeNumber": "1305", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-03", "ethnicity": null, "firstName": "Divaker", "gender": null, "genderIdentity": null, "hireDate": "2023-05-03"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "employeeNumber": "1306", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Niccolo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "employeeNumber": "1307", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-25", "ethnicity": null, "firstName": "Barrett", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "employeeNumber": "1308", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-17", "ethnicity": null, "firstName": "Simone", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-17"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "employeeNumber": "1309", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-22", "ethnicity": null, "firstName": "Isabel", "gender": "Female", "genderIdentity": null, "hireDate": "2023-05-29"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "employeeNumber": "1310", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Piret", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-21"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "employeeNumber": "1311", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Xanda", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "employeeNumber": "1312", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-23", "ethnicity": null, "firstName": "Nicole", "gender": null, "genderIdentity": null, "hireDate": "2023-05-29"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "employeeNumber": "1313", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Wendy", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "employeeNumber": "1314", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "Jacob", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "employeeNumber": "1315", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "James", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "employeeNumber": "1316", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "Liam", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "employeeNumber": "1317", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-26", "ethnicity": null, "firstName": "Nissanka", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569578}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "employeeNumber": "1318", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-07"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "employeeNumber": "1319", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Julian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "employeeNumber": "1320", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-11", "ethnicity": null, "firstName": "Alfred", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "employeeNumber": "1321", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Anshu", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "employeeNumber": "1322", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-12"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "employeeNumber": "1323", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-05", "ethnicity": null, "firstName": "Lukas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-05"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "employeeNumber": "1324", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Tora", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "employeeNumber": "1325", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2023-09-04", "ethnicity": null, "firstName": "Elin", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "employeeNumber": "1326", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-03", "ethnicity": null, "firstName": "Julian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-03"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "employeeNumber": "1327", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-17", "ethnicity": null, "firstName": "John", "gender": null, "genderIdentity": null, "hireDate": "2023-05-19"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "employeeNumber": "1328", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Massimo", "gender": null, "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "employeeNumber": "1329", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-04-06", "ethnicity": null, "firstName": "Marius", "gender": null, "genderIdentity": null, "hireDate": "2023-04-06"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "employeeNumber": "1330", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-13", "ethnicity": null, "firstName": "Petru", "gender": null, "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "employeeNumber": "1331", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Szymon", "gender": null, "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "employeeNumber": "1332", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Ciprian", "gender": null, "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "employeeNumber": "1333", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Lorenzo", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "employeeNumber": "1334", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Alberto", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "employeeNumber": "1335", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Andrea", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "employeeNumber": "1336", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Giuseppe", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "employeeNumber": "1337", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Mauro", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "employeeNumber": "1338", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-31", "ethnicity": null, "firstName": "Guillaume", "gender": null, "genderIdentity": null, "hireDate": "2020-10-13"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "employeeNumber": "1339", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Marouane", "gender": null, "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "employeeNumber": "1340", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Maxime", "gender": null, "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "employeeNumber": "1341", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-09-28", "ethnicity": null, "firstName": "Sharon", "gender": null, "genderIdentity": null, "hireDate": "2022-09-28"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "employeeNumber": "1342", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-26", "ethnicity": null, "firstName": "Payam", "gender": null, "genderIdentity": null, "hireDate": "2023-05-26"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "employeeNumber": "1343", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-26", "ethnicity": null, "firstName": "Derek", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "employeeNumber": "1344", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-14", "ethnicity": null, "firstName": "Neha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-14"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "employeeNumber": "1345", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Mariana", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "employeeNumber": "1346", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Gloria", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "employeeNumber": "1347", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-17", "ethnicity": null, "firstName": "Fl\u00e1via", "gender": null, "genderIdentity": null, "hireDate": "2023-05-17"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "employeeNumber": "1348", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Mariana", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "employeeNumber": "1349", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-19", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "employeeNumber": "1350", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-10", "ethnicity": null, "firstName": "Brittany", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "employeeNumber": "1351", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Kim", "gender": null, "genderIdentity": null, "hireDate": "2023-04-24"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "employeeNumber": "1352", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": null, "firstName": "Lakshmi Soujanya", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "employeeNumber": "1353", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-08", "ethnicity": null, "firstName": "Mia", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-05"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "employeeNumber": "1354", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Jay Mark", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569580}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "employeeNumber": "1356", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Sheila", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "employeeNumber": "1357", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Jeffrey", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "employeeNumber": "1358", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-06-21", "ethnicity": null, "firstName": "Viktor", "gender": null, "genderIdentity": null, "hireDate": "2023-06-21"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "employeeNumber": "1359", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-26", "ethnicity": null, "firstName": "Clayton", "gender": null, "genderIdentity": null, "hireDate": "2023-06-07"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "employeeNumber": "1360", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Adrien", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "employeeNumber": "1361", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-17", "ethnicity": null, "firstName": "Elizabeth", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-17"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "employeeNumber": "1362", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Emily", "gender": null, "genderIdentity": null, "hireDate": "2023-06-27"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "employeeNumber": "1364", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Jaleen", "gender": null, "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "employeeNumber": "1366", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-06", "ethnicity": null, "firstName": "Rafael", "gender": null, "genderIdentity": null, "hireDate": "2023-07-06"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "employeeNumber": "1367", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-01", "ethnicity": null, "firstName": "Ram", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-01"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "employeeNumber": "1368", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-07", "ethnicity": null, "firstName": "Casey", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "employeeNumber": "1369", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-07-13", "ethnicity": null, "firstName": "Jesel", "gender": null, "genderIdentity": null, "hireDate": "2023-07-13"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "employeeNumber": "1370", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Clement", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "employeeNumber": "1371", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Yizhi", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "employeeNumber": "1372", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-24", "ethnicity": null, "firstName": "Micah", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-24"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "employeeNumber": "1373", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Ahtesham", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "employeeNumber": "1374", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Joshua", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "employeeNumber": "1375", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Asbj\u00f8rn", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-01"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "employeeNumber": "1376", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Lisa", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "employeeNumber": "1377", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Ashley", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "employeeNumber": "1378", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Shannon", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "employeeNumber": "1379", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Joan", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "employeeNumber": "1380", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Muhammad Arif", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "employeeNumber": "1381", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Michelle", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "employeeNumber": "1382", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Steve", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-21"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "employeeNumber": "1384", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-07", "ethnicity": null, "firstName": "Harjot", "gender": null, "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "employeeNumber": "1385", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Ioana", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "employeeNumber": "1386", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-05", "ethnicity": null, "firstName": "Joel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-05"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "employeeNumber": "1387", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-31", "ethnicity": null, "firstName": "Theodor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "employeeNumber": "1388", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "employeeNumber": "1389", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "employeeNumber": "1390", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Marquis", "gender": null, "genderIdentity": null, "hireDate": "2023-08-10"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "employeeNumber": "1391", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-04", "ethnicity": null, "firstName": "Emerson", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "employeeNumber": "1392", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "employeeNumber": "1393", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-13", "ethnicity": null, "firstName": "Limisa", "gender": null, "genderIdentity": null, "hireDate": "2023-08-29"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "employeeNumber": "1394", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "employeeNumber": "1395", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": null, "firstName": "Billi", "gender": null, "genderIdentity": null, "hireDate": "2023-08-24"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "employeeNumber": "1396", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-26", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "employeeNumber": "1397", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-11", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-11"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "employeeNumber": "1398", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-25", "ethnicity": null, "firstName": "Dalila", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-25"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "employeeNumber": "1399", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "employeeNumber": "1400", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Isak", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-01"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "employeeNumber": "1401", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Anand", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-09"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "employeeNumber": "1402", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-18", "ethnicity": null, "firstName": "Eli\u00e9zer", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-18"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "employeeNumber": "1403", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Donna", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "employeeNumber": "1404", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Ionut", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "employeeNumber": "1405", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-15", "ethnicity": null, "firstName": "Evgenii", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-15"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "employeeNumber": "1406", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-25", "ethnicity": null, "firstName": "Bryan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-25"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "employeeNumber": "1407", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-01", "ethnicity": null, "firstName": "Willem", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-01"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "employeeNumber": "1408", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Bruno", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-09"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "employeeNumber": "1409", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Denis", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "employeeNumber": "1410", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Andrew", "gender": null, "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "employeeNumber": "1411", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-01", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-01"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "employeeNumber": "1412", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "employeeNumber": "1413", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Joan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "employeeNumber": "1414", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2023-11-29", "ethnicity": null, "firstName": "Holly", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "employeeNumber": "1415", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Cayley", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "employeeNumber": "1416", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-01", "ethnicity": null, "firstName": "Or", "gender": null, "genderIdentity": null, "hireDate": "2023-10-01"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "employeeNumber": "1417", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-18", "ethnicity": null, "firstName": "Ellen", "gender": null, "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "employeeNumber": "1418", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-14", "ethnicity": null, "firstName": "Megan", "gender": null, "genderIdentity": null, "hireDate": "2021-07-14"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "employeeNumber": "1419", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-14", "ethnicity": null, "firstName": "Karyn", "gender": null, "genderIdentity": null, "hireDate": "2021-07-14"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "employeeNumber": "1420", "employmentHistoryStatus": "Vendor", "employeeStatusDate": "2023-06-08", "ethnicity": null, "firstName": "Chiara", "gender": null, "genderIdentity": null, "hireDate": "2023-06-08"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "employeeNumber": "1421", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Giok Han", "gender": "Male", "genderIdentity": "Male", "hireDate": "2023-10-16"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "employeeNumber": "1422", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "employeeNumber": "1423", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-23"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "employeeNumber": "1424", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-06", "ethnicity": null, "firstName": "Ken", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-06"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "employeeNumber": "1425", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Yan Yee", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "employeeNumber": "1426", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "employeeNumber": "1427", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Stefan", "gender": null, "genderIdentity": null, "hireDate": "2023-10-23"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "employeeNumber": "1428", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Manuel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "employeeNumber": "1429", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "employeeNumber": "1430", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Sumit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "employeeNumber": "1431", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Pagely", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "employeeNumber": "1432", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Safina", "gender": null, "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "employeeNumber": "1433", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "employeeNumber": "1434", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-06", "ethnicity": null, "firstName": "Paula", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-06"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "employeeNumber": "1435", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Alice", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "employeeNumber": "1436", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-15", "ethnicity": null, "firstName": "Suzanne", "gender": null, "genderIdentity": null, "hireDate": "2023-11-15"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "employeeNumber": "1437", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Tiarnan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "employeeNumber": "1438", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "employeeNumber": "1439", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-19", "ethnicity": null, "firstName": "Shahidah", "gender": null, "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "employeeNumber": "1441", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "employeeNumber": "1443", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Anne Frederik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "employeeNumber": "1444", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-01", "ethnicity": null, "firstName": "Viktor", "gender": null, "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "employeeNumber": "1445", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-15", "ethnicity": null, "firstName": "Nikos", "gender": null, "genderIdentity": null, "hireDate": "2023-11-24"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "employeeNumber": "1446", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "employeeNumber": "1447", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": "Cisgender", "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "employeeNumber": "1448", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "employeeNumber": "1449", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Jamie", "gender": null, "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "employeeNumber": "1450", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Yuki", "gender": null, "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "employeeNumber": "1451", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Evian", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "employeeNumber": "1452", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Ashwini", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569585}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "employeeNumber": "1453", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Shradha", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "employeeNumber": "1454", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Ankit", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "employeeNumber": "1455", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-03", "ethnicity": null, "firstName": "Francesca", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-03"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "employeeNumber": "1456", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "employeeNumber": "1457", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-16", "ethnicity": null, "firstName": "Tory", "gender": null, "genderIdentity": null, "hireDate": "2023-11-16"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "employeeNumber": "1458", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "employeeNumber": "1459", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Zain", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "employeeNumber": "1460", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-13", "ethnicity": null, "firstName": "Henrik", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-13"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "employeeNumber": "1461", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Jaume", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "employeeNumber": "1462", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Sophie", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "employeeNumber": "1463", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Sarah", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-11"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "employeeNumber": "1464", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "employeeNumber": "1465", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-29", "ethnicity": null, "firstName": "Whitney", "gender": null, "genderIdentity": null, "hireDate": "2023-11-29"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "employeeNumber": "1466", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Tamer", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "employeeNumber": "1467", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "employeeNumber": "1468", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-07", "ethnicity": null, "firstName": "Johanna", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-07"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "employeeNumber": "1469", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Marshall", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "employeeNumber": "1470", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Theo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-06"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "employeeNumber": "1471", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Seema", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569586}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "employeeNumber": "1472", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Farren", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "employeeNumber": "1473", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Pramod", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "employeeNumber": "1474", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "employeeNumber": "1475", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Yoav", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "employeeNumber": "1476", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Konstantin", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "employeeNumber": "1477", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "employeeNumber": "1478", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Alfred", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "employeeNumber": "1479", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "employeeNumber": "1480", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "employeeNumber": "1481", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "employeeNumber": "1482", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Emelie", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "employeeNumber": "1483", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Ademir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "employeeNumber": "1484", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Kristen", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "employeeNumber": "1485", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Andr\u00e9", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "employeeNumber": "1486", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Thar Hwe", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "employeeNumber": "1487", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "employeeNumber": "1488", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-14", "ethnicity": null, "firstName": "Ranjeet", "gender": null, "genderIdentity": null, "hireDate": "2023-12-14"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "employeeNumber": "1489", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "employeeNumber": "1490", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Ffion", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "employeeNumber": "1491", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Brett", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "employeeNumber": "1492", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-29", "ethnicity": null, "firstName": "Elfreda", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-29"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "employeeNumber": "1493", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "employeeNumber": "1494", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": null, "firstName": "Isabella", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-16"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "employeeNumber": "1495", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Melanie", "gender": null, "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "employeeNumber": "1496", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-16"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "employeeNumber": "1497", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Alice", "gender": "Female", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "employeeNumber": "1498", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "employeeNumber": "1499", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "employeeNumber": "1500", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-29", "ethnicity": null, "firstName": "Sunny", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-29"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "employeeNumber": "1501", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Kristian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "employeeNumber": "1502", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Stefanie", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "employeeNumber": "1503", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-05", "ethnicity": null, "firstName": "Jyoti", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-05"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "employeeNumber": "1504", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Karolis", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "employeeNumber": "1505", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "Victoria", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569588}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "employeeNumber": "1506", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Vincent", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "employeeNumber": "1507", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Konrad", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "employeeNumber": "1508", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Makbule", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "employeeNumber": "1509", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Oleksandr", "gender": null, "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "employeeNumber": "1510", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-23", "ethnicity": null, "firstName": "Purav", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "employeeNumber": "1511", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Khodor", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "employeeNumber": "1512", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "employeeNumber": "1513", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "employeeNumber": "1514", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Ezra", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "employeeNumber": "1515", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "employeeNumber": "1516", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "employeeNumber": "1517", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Harsharan", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "employeeNumber": "1518", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-05", "ethnicity": null, "firstName": "Monisha", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-05"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "employeeNumber": "1519", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Ankit", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "employeeNumber": "1520", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Marcelo", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "employeeNumber": "1521", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "employeeNumber": "1522", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-06"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "employeeNumber": "1523", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Kieron", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569589}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "employeeNumber": "1524", "employmentHistoryStatus": "HR Admin Use Only", "employeeStatusDate": "2024-02-13", "ethnicity": null, "firstName": "Sofian", "gender": null, "genderIdentity": null, "hireDate": "2024-02-13"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "employeeNumber": "1526", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Freya", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-12"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "employeeNumber": "1527", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "employeeNumber": "1528", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Carolina", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "employeeNumber": "1529", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "employeeNumber": "1530", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Estelle", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "employeeNumber": "1531", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Raymond", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "employeeNumber": "1532", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Necla", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "employeeNumber": "1533", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Sachin", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "employeeNumber": "1535", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ben", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "employeeNumber": "1536", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-22", "ethnicity": null, "firstName": "Divya", "gender": null, "genderIdentity": null, "hireDate": "2024-02-22"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "employeeNumber": "1537", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Willibrord", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "employeeNumber": "1538", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Sandra", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "employeeNumber": "1539", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Roberto", "gender": null, "genderIdentity": null, "hireDate": "2024-02-29"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "employeeNumber": "1540", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-28"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "employeeNumber": "1541", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-27", "ethnicity": null, "firstName": "Ed", "gender": null, "genderIdentity": null, "hireDate": "2024-02-27"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "employeeNumber": "1542", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ananthalakshmi", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "employeeNumber": "1543", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Aditya", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "employeeNumber": "1544", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569590}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "employeeNumber": "1545", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Stephen", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "employeeNumber": "1546", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Sanjana", "gender": null, "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "employeeNumber": "1547", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Emre", "gender": null, "genderIdentity": null, "hireDate": "2024-04-22"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "employeeNumber": "1548", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "employeeNumber": "1549", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Joaquim", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "employeeNumber": "1550", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Luca", "gender": null, "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "employeeNumber": "1551", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Thomas", "gender": null, "genderIdentity": null, "hireDate": "2024-05-20"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "employeeNumber": "1552", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-13"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "employeeNumber": "1553", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Grant", "gender": null, "genderIdentity": null, "hireDate": "2024-03-25"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "employeeNumber": "1554", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Steve", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "employeeNumber": "1555", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Vamshi", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "employeeNumber": "1556", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Lauren", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "employeeNumber": "1557", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Maximilien", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "employeeNumber": "1558", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Sina", "gender": null, "genderIdentity": null, "hireDate": "2024-06-24"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "employeeNumber": "1559", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Anjaneya", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "employeeNumber": "1560", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "BhanuMurthy", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "employeeNumber": "1561", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Bindhu", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "employeeNumber": "1562", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Manju", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "employeeNumber": "1563", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Pavan", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "employeeNumber": "1564", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Prasanth", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "employeeNumber": "1565", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Kesava", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "employeeNumber": "1566", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Miguel", "gender": null, "genderIdentity": null, "hireDate": "2024-06-17"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "employeeNumber": "1567", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Abhijeet", "gender": null, "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "employeeNumber": "1568", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Samantha Claire", "gender": null, "genderIdentity": null, "hireDate": "2024-05-07"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "employeeNumber": "1569", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Hanyu", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569592}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "jobTitle": "Director, People Strategy", "lastName": "Taylor", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "jobTitle": "VP, Finance & Administration", "lastName": "Zawalski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "jobTitle": "Sr. People Strategy Generalist", "lastName": "Nguyen", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571029}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "jobTitle": "VP, People Strategy & Business Operations - Product and Engineering Worldwide", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "jobTitle": "Director, People Strategy", "lastName": "Almryd", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "jobTitle": "Web Program Manager", "lastName": "Agricola", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "jobTitle": "VP, Enterprise Sales, Americas", "lastName": "Fischer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "jobTitle": "President, Field Operations and Chief Operating Officer", "lastName": "Nordwall", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "jobTitle": "Chief Technology Officer", "lastName": "Rathle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571030}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "jobTitle": "Finance Director", "lastName": "Newhagen", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "jobTitle": "Principal Pre-Sales Engineer", "lastName": "De Marzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "jobTitle": "Corporate Controller", "lastName": "Calalang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "jobTitle": "Sr. Director, Global Sales Ops", "lastName": "Kaji", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Fredrickson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "jobTitle": "Regional Vice President, Sales Engineering", "lastName": "Puri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "jobTitle": "Sr. Account Executive", "lastName": "Wilcox", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "jobTitle": "Product Marketing Manager", "lastName": "Workman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "jobTitle": "Principal Pre-Sales Engineer", "lastName": "Fauth", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "jobTitle": "Senior Software Engineer", "lastName": "Davis-Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "jobTitle": "Sr. Account Executive", "lastName": "Richards", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "jobTitle": "Sr. Account Executive", "lastName": "Landeros", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "jobTitle": "Sr. Marketing Analyst", "lastName": "Fisher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "jobTitle": "Director, Technical Support", "lastName": "Gordon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "jobTitle": "Software Architect", "lastName": "Raghuram", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "jobTitle": "Corporate Controller", "lastName": "Tschetter", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "lastName": "Shirley", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "jobTitle": "Sr. Manager, Content Marketing", "lastName": "Merkl Sasaki", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "jobTitle": "Sales Ops Analyst", "lastName": "Riggs", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "jobTitle": "Principal Customer Success Architect", "lastName": "Kharwar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571033}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "jobTitle": "Account Executive", "lastName": "Richards", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "jobTitle": "Staff Developer Advocate", "lastName": "Lyon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "jobTitle": "Global Sales Compensation Director", "lastName": "Huang", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "jobTitle": "VP Channel, Americas", "lastName": "Broad", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "jobTitle": "Principal Consulting Engineer", "lastName": "Upkes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "jobTitle": "Principal Technical Support Engineer", "lastName": "Canzano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "jobTitle": "VP, Account Management", "lastName": "Sanfilippo", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "lastName": "Hall", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "jobTitle": "Regional VP, Sales, East", "lastName": "Mohr", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "jobTitle": "Salesforce Administrator", "lastName": "Competente", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "jobTitle": "Account Executive", "lastName": "Zagalsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571035}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "jobTitle": "Account Executive", "lastName": "Salas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "jobTitle": "Head of Solutions Lab", "lastName": "Svensson", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "jobTitle": "Sr. Sales Development Representative", "lastName": "Bayona", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "jobTitle": "Enterprise Renewals Manager", "lastName": "Shaw", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "jobTitle": "Renewals Team Manager - NA", "lastName": "Shin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "jobTitle": "Sr. Manager, Sales Development", "lastName": "Gaspar", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "jobTitle": "Sr. Director, Global Solutions", "lastName": "Mathur", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "jobTitle": "Account Executive", "lastName": "Caito", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "jobTitle": "Principal Consulting Engineer", "lastName": "Gabay", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "jobTitle": "Sr. Director of Product Marketing", "lastName": "Hodler", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "jobTitle": "Director, Web User Experience", "lastName": "Fitzpatrick", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "jobTitle": "Principal Technical Support Engineer", "lastName": "Bowman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "jobTitle": "Director, Global Events and Experiences", "lastName": "Boris-Schacter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "jobTitle": "Sales Development Representative", "lastName": "Sanfilippo", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "jobTitle": "SVP, Bus and Corp Dev", "lastName": "Zakariya", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "jobTitle": "Solution Engineer", "lastName": "Avrahamov", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "jobTitle": "Account Executive", "lastName": "Anthony", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "jobTitle": "Regional Vice President, Sales Engineering", "lastName": "Crowther", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "jobTitle": "VP, WW Services - Customer Success & Support", "lastName": "Nagarajan", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "lastName": "Ramanathan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "jobTitle": "Sr. Sales Development Representative", "lastName": "Guess", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "jobTitle": "Sr. Customer Success Architect", "lastName": "Maddahian", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "jobTitle": "Director, Product Management - Cloud", "lastName": "Freytag", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571039}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "jobTitle": "Vice President, North America Marketing", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "jobTitle": "Regional Vice President, Central Sales", "lastName": "Turek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "jobTitle": "A/P Staff Accountant", "lastName": "Abe", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "jobTitle": "Account Executive", "lastName": "Richard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "jobTitle": "Manager, Sales Engineering", "lastName": "Rosenblum", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "jobTitle": "Sr. Pre-Sales Engineer", "lastName": "Rivilis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "jobTitle": "Senior Director, Developer Relations & Advocacy", "lastName": "Allen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "jobTitle": "Prog Mgr, Comm Dev and Enablement", "lastName": "Wolok", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "jobTitle": "Principal Sales Engineer", "lastName": "Laurie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "jobTitle": "Sr. Sales Engineer", "lastName": "Quinsland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "jobTitle": "Customer Success Architect", "lastName": "Haces Rozada", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "jobTitle": "Sr. Program Manager", "lastName": "Janis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "jobTitle": "Chief Marketing Officer", "lastName": "Walter", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "jobTitle": "Director, Sales Engineering", "lastName": "Flavin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "jobTitle": "Regional VP, Sales, West", "lastName": "Alston", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "jobTitle": "Sr. Financial Analyst", "lastName": "Cao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "jobTitle": "Senior Developer Advocate", "lastName": "Reif", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "jobTitle": "Revenue Accountant", "lastName": "Barrameda", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "jobTitle": "Principal Solutions Engineer", "lastName": "Monk", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Lopez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "jobTitle": "Partner Marketing Manager", "lastName": "Raedeke", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "jobTitle": "Sr. Manager, Global Marketing Operations", "lastName": "Allen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "jobTitle": "Sales Engineer, Team Lead", "lastName": "Mann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "jobTitle": "Director, Content", "lastName": "Hoppa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "jobTitle": "Sr. Director of Corporate Marketing", "lastName": "Bengani", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "jobTitle": "Corporate Accounts Representative", "lastName": "Lewis", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "jobTitle": "Principal Field Engineer", "lastName": "Anthapu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "jobTitle": "Lead PM for AI & Graph Data Science", "lastName": "Graham", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "jobTitle": "Sales Development Representative", "lastName": "Ministri", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "jobTitle": "Curriculum Developer", "lastName": "Rosenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "jobTitle": "VP, Product Management, User Tools and Developer Experience", "lastName": "Tandon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "jobTitle": "Customer Success Manager", "lastName": "DiFranco", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "jobTitle": "Chief Financial Officer", "lastName": "Asher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "jobTitle": "Manager, IT", "lastName": "Ramirez", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "jobTitle": "Sr. Consulting Engineer", "lastName": "Gozaloff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "jobTitle": "Federal Alliance & Channel Manager, US", "lastName": "Krueger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "jobTitle": "Director, Cloud Programs", "lastName": "Toprani", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "jobTitle": "Enterprise Account Executive", "lastName": "McGary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "jobTitle": "Account Executive", "lastName": "Carey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "jobTitle": "Account Executive", "lastName": "Vessie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "jobTitle": "Sr. Sales Engineer", "lastName": "Fine", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "jobTitle": "Sr. Consulting Engineer", "lastName": "Andrews", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "jobTitle": "Customer Success Manager", "lastName": "Sabbagh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "jobTitle": "Trainer/Curriculum Developer", "lastName": "Freitas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "jobTitle": "Associate General Counsel", "lastName": "Chang", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "jobTitle": "Professional Services Regional Manager", "lastName": "Ciano, Jr.", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "jobTitle": "IT Engineer", "lastName": "Murray", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "jobTitle": "Account Executive", "lastName": "Cockrell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "jobTitle": "Visual Designer", "lastName": "Tiwari", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "jobTitle": "Account Executive", "lastName": "O'Donnell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "jobTitle": "Senior Director of PM for Graph Data Science", "lastName": "Frame", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Terlizzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "jobTitle": "Sr. Sales Engineer", "lastName": "Martin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "jobTitle": "Consulting Engineer", "lastName": "Perez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "jobTitle": "Account Executive", "lastName": "Liebowitz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "jobTitle": "Legal Operations Manager", "lastName": "Ramirez", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "jobTitle": "Sr. Sales Engineer", "lastName": "Tallman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "jobTitle": "Consulting Engineer", "lastName": "Cherukuri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "jobTitle": "Sr. Sales Engineer", "lastName": "Femano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "jobTitle": "Consulting Engineer", "lastName": "Lin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "jobTitle": "Director, Global Cloud and ISV Partnerships", "lastName": "Smith", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "jobTitle": "VP, Global Demand Generation", "lastName": "Hatheway", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "jobTitle": "Sales Development Representative", "lastName": "Anderson", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "jobTitle": "Sales Development Representative", "lastName": "Shaw", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "jobTitle": "Senior Counsel", "lastName": "Thompson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "jobTitle": "Solutions Engineer", "lastName": "Ball", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "jobTitle": "Director, Field Marketing", "lastName": "Neuhaus", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "jobTitle": "Consulting Engineer", "lastName": "Archer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "jobTitle": "Intern", "lastName": "Wu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "jobTitle": "Developer Advocate", "lastName": "Gandhi", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "jobTitle": "VP, Product Marketing", "lastName": "Chaudhry", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "jobTitle": "Consulting Engineer", "lastName": "Holford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "jobTitle": "Product Marketing Director", "lastName": "Wall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "jobTitle": "Lead DBaaS Support Engineer", "lastName": "Waddingham", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "jobTitle": "Solutions Engineer", "lastName": "Masilamani", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "jobTitle": "Managing Editor", "lastName": "Baumgardner", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "jobTitle": "Technical Support Engineer", "lastName": "Saran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "jobTitle": "Sr. Commercial Counsel", "lastName": "Walsh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "jobTitle": "Lead Managed Service Engineer", "lastName": "Murphy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "jobTitle": "Sr. Data Scientist", "lastName": "Alvarado", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "lastName": "McCormack", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "jobTitle": "Manager, Sales Engineering", "lastName": "Voutila", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "jobTitle": "Support Engineer", "lastName": "Chehresa", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "jobTitle": "Software Engineer", "lastName": "Lindaaker", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "jobTitle": "Senior Staff Software Engineer", "lastName": "Finn\u00e9", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "jobTitle": "Chief Scientist", "lastName": "Webber", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "jobTitle": "Head of Product Innovation & Developer Strategy", "lastName": "Hunger", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "jobTitle": "Chief Executive Officer", "lastName": "Eifr\u00e9m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "jobTitle": "Director of Engineering", "lastName": "Jones", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "jobTitle": "Outside Sales", "lastName": "Fauvet", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "jobTitle": "Subcontractor", "lastName": "Armbruster", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "jobTitle": "Regional VP of Sales, EMEA", "lastName": "Van Bruggen", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "jobTitle": "Staff Software Engineer", "lastName": "Averbuch", "location": "Remote - Finland", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "jobTitle": "Senior Software Engineer", "lastName": "Westh-Nielsen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "jobTitle": "Developer", "lastName": "Needham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "jobTitle": "Software Engineer", "lastName": "Butler-Cole", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "jobTitle": "Software Engineer", "lastName": "Vest-Hansen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "jobTitle": "SVP Engineering", "lastName": "Vejlstrup", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "jobTitle": "Senior Director, Enterprise Cloud Marketing", "lastName": "Remlinger", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "jobTitle": "Head of APAC Channel", "lastName": "Nolten", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "jobTitle": "Sales Manager, UK", "lastName": "Cheetham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "jobTitle": "Sales Director, UK", "lastName": "Flynn", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "jobTitle": "Senior Developer Marketing Manager", "lastName": "Erdl", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571049}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "jobTitle": "Developer", "lastName": "Liutovych", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "jobTitle": "Senior Staff Software Engineer", "lastName": "Hane", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "jobTitle": "Staff Software Engineer", "lastName": "Melke", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "jobTitle": "Drivers and Connectivity Lead", "lastName": "Small", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "jobTitle": "Staff Software Engineer", "lastName": "Taverner", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "jobTitle": "Developer", "lastName": "Furmanski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "jobTitle": "Developer", "lastName": "Li", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "jobTitle": "Senior Software Engineer", "lastName": "Selmer", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571050}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "jobTitle": "Pre-Sales Engineer", "lastName": "Vegter", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "lastName": "Brooks", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "jobTitle": "VP Field Engineering, EMEA & APAC", "lastName": "Kolmar", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "jobTitle": "Area Sales Manager", "lastName": "Ungermann", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "jobTitle": "Senior Software Engineer", "lastName": "Rydberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "jobTitle": "Product Manager, Aura", "lastName": "Gannon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "jobTitle": "Senior Staff Software Engineer", "lastName": "Demianenko", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "jobTitle": "Staff Software Engineer", "lastName": "Lindroth", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "jobTitle": "RVP, Sales Engineering", "lastName": "Barrasa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571051}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "jobTitle": "Sr. Marketing Manager", "lastName": "Gaudinaud Delier", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "jobTitle": "Staff Software Engineer", "lastName": "Nyman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "jobTitle": "Senior Software Engineer", "lastName": "Wernersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "jobTitle": "Director of Engineering", "lastName": "Peace", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "jobTitle": "Head of Sales, Nordics", "lastName": "Johansson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "jobTitle": "Senior Software Engineer", "lastName": "J\u00e4derberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "jobTitle": "Senior Software Engineer", "lastName": "Ytterbrink", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "jobTitle": "Information Developer", "lastName": "Scharin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "jobTitle": "Senior Software Engineer", "lastName": "Bright", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "jobTitle": "Field Engineer Consultant", "lastName": "Janko", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571052}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "jobTitle": "Director of Product Management", "lastName": "Green", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "jobTitle": "Senior Software Engineer", "lastName": "Persson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "jobTitle": "Developer", "lastName": "Teleman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "jobTitle": "RVP Sales, DACH & Emerging Regions", "lastName": "M\u00f6ller", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "jobTitle": "Senior Software Engineer", "lastName": "Priisalu", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "jobTitle": "Senior Software Engineer", "lastName": "Tassemark", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "jobTitle": "CSA Director - EMEA", "lastName": "Lourador da Rocha", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "jobTitle": "Finance Administrator EMEA", "lastName": "Killeen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "jobTitle": "Senior Software Engineer", "lastName": "Oknelid", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "jobTitle": "Field Engineer Consultant", "lastName": "Skardon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "jobTitle": "UX Specialist", "lastName": "Aleksandrov", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "jobTitle": "Staff Software Engineer", "lastName": "Plantikow", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "jobTitle": "Senior Director Finance, EMEA and APAC", "lastName": "Olsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "jobTitle": "Regional Office Manager", "lastName": "Tinz", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "jobTitle": "Field Engineer", "lastName": "Geudens", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "jobTitle": "Senior Software Engineer", "lastName": "Klar\u00e9n", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "jobTitle": "Senior Manager, EMEA Renewals", "lastName": "Samaan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "jobTitle": "Enterprise Renewals Manager", "lastName": "Carrick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "jobTitle": "Senior Software Engineer", "lastName": "Junghanns", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "jobTitle": "Technical Standards Specialist (Healthy Consulting Ltd)", "lastName": "Furniss", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "jobTitle": "Software Engineer", "lastName": "Peukert", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "jobTitle": "Senior Software Engineer", "lastName": "Kiessling", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "jobTitle": "Director of Engineering", "lastName": "Oliver", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "jobTitle": "Staff Developer Advocate", "lastName": "Cowley", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "jobTitle": "Staff Software Engineer", "lastName": "Grobbelaar", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "jobTitle": "Staff Software Engineer", "lastName": "Mayo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "jobTitle": "Senior Software Engineer", "lastName": "Owen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "jobTitle": "Developer Relations Advocate", "lastName": "Lazarevic", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "jobTitle": "Senior Software Engineer", "lastName": "Kerr", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "jobTitle": "Senior Software Engineer", "lastName": "Herfert", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "jobTitle": "Senior Corporate Account Executive - EMEA", "lastName": "Sharma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "jobTitle": "Senior Software Engineer", "lastName": "S\u00f6derstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "jobTitle": "Office Manager/HR Coordinator", "lastName": "Angelo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "jobTitle": "Staff Software Engineer", "lastName": "Meier", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Muzammil", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "jobTitle": "Field Engineer", "lastName": "Depeau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "jobTitle": "Chief Architect", "lastName": "Gioran", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "jobTitle": "VP, GTM Strategy & Execution", "lastName": "Bergqvist", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "jobTitle": "Developer", "lastName": "Jefferson", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "jobTitle": "Developer", "lastName": "Vila Verde", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "jobTitle": "Staff Software Engineer", "lastName": "Unterstein", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "jobTitle": "Staff Software Engineer", "lastName": "Firth", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "jobTitle": "Chief Solutions Architect", "lastName": "Casters", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "jobTitle": "Account Development Rep", "lastName": "Louis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "jobTitle": "Professional Services Consultant", "lastName": "Abeysekera", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "jobTitle": "Senior Software Engineer", "lastName": "Voigt", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "jobTitle": "VP, Product Management, Neo4j Database", "lastName": "Zoratti", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "jobTitle": "Senior Developer Advocate", "lastName": "Kollegger", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "jobTitle": "Staff Software Engineer", "lastName": "Simons", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "jobTitle": "Director of Engineering", "lastName": "Karaca", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "lastName": "Wendin", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "jobTitle": "RVP, Professional Services EMEA", "lastName": "Aertsen", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "jobTitle": "UX Specialist", "lastName": "Wictorin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "jobTitle": "Director of Analytics", "lastName": "\u00c5sbrink", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "jobTitle": "Sr. Delivery Consultant", "lastName": "McCrum", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "jobTitle": "Software Engineer", "lastName": "Magnusson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "jobTitle": "Staff Software Engineer", "lastName": "Palka", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "jobTitle": "Senior Software Engineer", "lastName": "Reichardt", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "jobTitle": "Contractor", "lastName": "Adams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "jobTitle": "Staff Software Engineer", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "jobTitle": "Staff Software Engineer", "lastName": "Pernhult", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "jobTitle": "Senior Manager, Global Data Science Programs", "lastName": "Seitz", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "jobTitle": "Senior Software Engineer", "lastName": "Lundahl", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "jobTitle": "Sr. Recruiter", "lastName": "Stevenson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "jobTitle": "Renewals Specialist", "lastName": "Iturra", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "jobTitle": "Contractor and Language Standards Advisor", "lastName": "Cannan", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "jobTitle": "Staff Software Engineer", "lastName": "Janouch", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "jobTitle": "Senior UX Specialist", "lastName": "Shkirando", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "jobTitle": "Senior Software Engineer", "lastName": "Anzmann", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "jobTitle": "Accounting Manager", "lastName": "Nilsson Sch\u00f6nfeldt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "jobTitle": "Sales Representative BeNeLux", "lastName": "Roelandts", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "jobTitle": "Intern Trainee", "lastName": "Kuijpers", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "jobTitle": "Sales Development Representative", "lastName": "Sands", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "jobTitle": "Technical Support Engineer", "lastName": "Phoulchand", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "jobTitle": "Field Engineer", "lastName": "Bello", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "jobTitle": "Software Engineer", "lastName": "D\u00f6rre", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "jobTitle": "Sales Representative, Israel", "lastName": "Kricheli", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "jobTitle": "Software Engineer", "lastName": "Hughes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "jobTitle": "Manager, IT Operations", "lastName": "Bergquist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "jobTitle": "Senior Software Engineer", "lastName": "Edwards", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "jobTitle": "Staff Security Engineer", "lastName": "Larisis", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "jobTitle": "Consulting Engineer", "lastName": "Fowler", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "jobTitle": "Senior Software Engineer", "lastName": "Roxling", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "jobTitle": "Senior Software Engineer", "lastName": "Komianou", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "lastName": "Nygren", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "jobTitle": "Enterprise Renewals Manager", "lastName": "Crick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "jobTitle": "Senior Technical Writer", "lastName": "Andersson Wright", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "jobTitle": "Manager, Professional Services", "lastName": "Bueti", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "jobTitle": "Software Engineer", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "jobTitle": "Senior Software Engineer", "lastName": "Bj\u00f6rk", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "jobTitle": "Software Engineer", "lastName": "F\u00ebshti", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "jobTitle": "Software Engineer", "lastName": "Bove", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "jobTitle": "Senior Software Engineer", "lastName": "Ivakin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Radke", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "jobTitle": "Senior Software Engineer", "lastName": "Steward", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "jobTitle": "Principal Global Compensation", "lastName": "Percell", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "jobTitle": "Field Engineer Consultant", "lastName": "Rouyer", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "jobTitle": "Senior Software Engineer", "lastName": "Bends\u00f6e", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "jobTitle": "Quality Software Engineer", "lastName": "Cutillas Carrillo", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "jobTitle": "Field Engineer/ Pre-Sales", "lastName": "Salvador", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "jobTitle": "Sales Manager, Italy", "lastName": "Ciarlo", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "jobTitle": "Intern", "lastName": "Danielsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "jobTitle": "Software Engineer", "lastName": "Heemann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "jobTitle": "Lead Product Manager", "lastName": "Malenchino", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "jobTitle": "Senior Software Engineer", "lastName": "Nyman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "jobTitle": "Senior Software Engineer", "lastName": "Horn", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "jobTitle": "Senior Software Engineer", "lastName": "Bondza", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "jobTitle": "Resource Manager, Professional Services", "lastName": "Turegano", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "jobTitle": "Lead Product Manager", "lastName": "Kennedy", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "lastName": "Fernandes", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "jobTitle": "Staff Software Engineer", "lastName": "Sznajdman", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "jobTitle": "Graph Analytics Software Engineer", "lastName": "Molchanov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "jobTitle": "Director of Engineering", "lastName": "Gaillard", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "jobTitle": "Sr. People Strategy Specialist", "lastName": "Kan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "jobTitle": "Senior Software Engineer", "lastName": "Karhapolau", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "jobTitle": null, "lastName": "Frankl", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "jobTitle": null, "lastName": "Leishman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "jobTitle": null, "lastName": "Lombardo", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "jobTitle": null, "lastName": "Montag", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "jobTitle": null, "lastName": "Sparrow", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "jobTitle": null, "lastName": "Bukhan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "jobTitle": null, "lastName": "Herzog", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "jobTitle": null, "lastName": "Eifrem", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "jobTitle": null, "lastName": "Linetsky", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "jobTitle": null, "lastName": "Duisberg", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "jobTitle": null, "lastName": "Bose", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "jobTitle": null, "lastName": "Mazique", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "jobTitle": null, "lastName": "Moll", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "jobTitle": null, "lastName": "Laucher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "jobTitle": null, "lastName": "Bastani", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "jobTitle": null, "lastName": "Stanek", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "jobTitle": null, "lastName": "Taylor", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "jobTitle": "Systems Administration Manager", "lastName": "Bates", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "jobTitle": null, "lastName": "Rice", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "jobTitle": null, "lastName": "Bhatt", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "jobTitle": null, "lastName": "Raghuram", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "jobTitle": null, "lastName": "Van Gundy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "jobTitle": null, "lastName": "Whisenant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "jobTitle": null, "lastName": "White", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "jobTitle": null, "lastName": "Forrest", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "jobTitle": null, "lastName": "Cooper", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "jobTitle": null, "lastName": "Hansen", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "jobTitle": null, "lastName": "Nixon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "jobTitle": null, "lastName": "Barlow", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "jobTitle": "Director, Developer Relations", "lastName": "Boyd", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "jobTitle": null, "lastName": "Walters", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "jobTitle": null, "lastName": "Knowles", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "jobTitle": null, "lastName": "Fauth", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "jobTitle": null, "lastName": "Carden", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "jobTitle": null, "lastName": "Nau", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "jobTitle": null, "lastName": "Borojevic", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "jobTitle": null, "lastName": "Willcoxon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "jobTitle": "Manager, Human Resources", "lastName": "Sirker", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "jobTitle": null, "lastName": "Brickman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "jobTitle": null, "lastName": "Price", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "jobTitle": null, "lastName": "Briant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "jobTitle": null, "lastName": "Palmer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "jobTitle": null, "lastName": "van Groningen a Stuling", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "jobTitle": null, "lastName": "Heard", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "jobTitle": null, "lastName": "Lorenson", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "jobTitle": null, "lastName": "Avila", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "jobTitle": null, "lastName": "Hewitt", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "jobTitle": null, "lastName": "Ismailos", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "jobTitle": null, "lastName": "Ahmad", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "jobTitle": null, "lastName": "Chao", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "jobTitle": null, "lastName": "Shi", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "jobTitle": null, "lastName": "Tsao", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "jobTitle": null, "lastName": "Wilson", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "jobTitle": null, "lastName": "Batanov", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "jobTitle": null, "lastName": "MacDonald", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "jobTitle": null, "lastName": "Urrutia", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "jobTitle": "Sr. Director Product Marketing", "lastName": "Morris", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "jobTitle": null, "lastName": "Magnus", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "jobTitle": null, "lastName": "Onyon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "jobTitle": null, "lastName": "Breimayer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "jobTitle": null, "lastName": "Chew", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "jobTitle": null, "lastName": "Jiang", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "jobTitle": null, "lastName": "Koister", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "jobTitle": null, "lastName": "March", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "jobTitle": null, "lastName": "Guyott", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "jobTitle": null, "lastName": "Falaki", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "jobTitle": "Sales Development Representative", "lastName": "Wu", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "jobTitle": null, "lastName": "Pouncey", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "jobTitle": null, "lastName": "Shin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "jobTitle": null, "lastName": "Mittal", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "jobTitle": null, "lastName": "Leung", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "jobTitle": null, "lastName": "Narayan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "jobTitle": null, "lastName": "Gondhiya", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "jobTitle": null, "lastName": "Duman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "jobTitle": "Account Executive", "lastName": "Nelson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "jobTitle": "Intern", "lastName": "Sultan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "jobTitle": "Sales Engineer", "lastName": "Dhodapkar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "jobTitle": "CTO", "lastName": "Svensson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571062}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "jobTitle": "Developer", "lastName": "Nawroth", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "jobTitle": "Developer Evangelist", "lastName": "Neubauer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "jobTitle": "Pre-Sales Manager, EMEA", "lastName": "Montag", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "jobTitle": "Developer", "lastName": "Taylor", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "jobTitle": "Developer (Contractor)", "lastName": "Baum", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "jobTitle": "Developer", "lastName": "Robinson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "jobTitle": "Developer (Contractor)", "lastName": "\u00d6berg", "location": "Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "jobTitle": "Director of Engineering", "lastName": "Granvik", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "jobTitle": "Developer (Contractor)", "lastName": "Simpson", "location": "New Zeeland", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "jobTitle": "Community Manager", "lastName": "Lindh", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "jobTitle": "Inside Representative", "lastName": "Verbikas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "jobTitle": "Inside Representative", "lastName": "Schumann", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "jobTitle": "Assistant", "lastName": "Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "jobTitle": "Developer", "lastName": "Grohmann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "jobTitle": "Developer", "lastName": "Wieczorek", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "jobTitle": "Area Sales Director", "lastName": "Temme", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "jobTitle": "Field Engineer", "lastName": "Laucher", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "jobTitle": "Product Engineer", "lastName": "Vilaca", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "jobTitle": "Product Engineer", "lastName": "Sumrall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "jobTitle": "Field Engineer Consultant", "lastName": "Cailliau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "jobTitle": "Outside Sales", "lastName": "Marlin", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "jobTitle": "Sales Development Representative", "lastName": "Thainuruk", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "jobTitle": "Office Assistant", "lastName": "Zagajewski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "jobTitle": "Product Engineer", "lastName": "Baker", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "jobTitle": "Product Engineer", "lastName": "Kalderstam", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "jobTitle": "Global Support Manager", "lastName": "Leto", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "jobTitle": "Developer", "lastName": "Fernandes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "jobTitle": "Intern", "lastName": "Yang", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "jobTitle": "Senior Software Engineer", "lastName": "\u00c5kerlund", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "jobTitle": "Office Assistant", "lastName": "K\u00f6hler", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "jobTitle": "UX Designer", "lastName": "Dias", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "jobTitle": "Strategic Account Development Rep", "lastName": "Haiderzada", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "jobTitle": "Strategic Account Development Rep", "lastName": "Moultson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "jobTitle": "Field Engineer Consultant", "lastName": "Simard", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "jobTitle": "Product Manager", "lastName": "Ask", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "jobTitle": "Intern Trainee", "lastName": "Wang", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "jobTitle": "Marketing Digital Manager", "lastName": "Ismailos", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "jobTitle": "Contractor", "lastName": "Vilee", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "jobTitle": "Intern", "lastName": "Egli", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "jobTitle": "Intern", "lastName": "Hellstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "jobTitle": "Software Engineer", "lastName": "Sporre", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "jobTitle": "Developer", "lastName": "Kaznowski", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "jobTitle": "Developer", "lastName": "Stutz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "jobTitle": "Intern", "lastName": "Blomstergren", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "jobTitle": "Field Engineer", "lastName": "Lindfors", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "jobTitle": "Product Manager", "lastName": "Steer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "jobTitle": "Strategic Account Development Rep", "lastName": "Omer-Houssein", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "jobTitle": "Software Engineer", "lastName": "Damian", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "jobTitle": "Sales Manager, UK", "lastName": "Hall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "jobTitle": "Developer", "lastName": "Koval", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "jobTitle": "Intern", "lastName": "Olsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "jobTitle": "Intern", "lastName": "Lindell", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "jobTitle": "Intern", "lastName": "Ode", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "jobTitle": "Intern", "lastName": "Nordwall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "jobTitle": "Intern", "lastName": "Hamberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "jobTitle": "Intern", "lastName": "Amidani", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "jobTitle": "Intern", "lastName": "Libkin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "jobTitle": "Account Manager", "lastName": "Urrutia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "jobTitle": "Intern (Contractor)", "lastName": "M\u00f6ller", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "jobTitle": "Intern", "lastName": "Hirani", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "jobTitle": "Intern", "lastName": "Meyer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "jobTitle": "Intern", "lastName": "van der Linde", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "jobTitle": "Office Assistant", "lastName": "Jensen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "jobTitle": "Software Engineer", "lastName": "Gazzola", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "jobTitle": "Senior Software Engineer", "lastName": "Messallem", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "jobTitle": "Software Engineer", "lastName": "Andersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "jobTitle": "Consulting Engineer", "lastName": "De Jong", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Senechal", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "jobTitle": "Software Engineer", "lastName": "Maksymiw", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "jobTitle": "Senior Software Engineer", "lastName": "K\u00e4llqvist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "jobTitle": "Senior Software Engineer", "lastName": "Woods", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "jobTitle": "Software Engineer", "lastName": "Kuner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "jobTitle": "Senior Software Engineer", "lastName": "Nikolov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "jobTitle": "HR Coordinator", "lastName": "Thas\u00e9n", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "jobTitle": "VP, Global Renewals, Customer Success, & Education", "lastName": "Brophy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "jobTitle": "Partner Solutions Architect", "lastName": "Dookhee", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "jobTitle": "Director, Demand Generation Programs", "lastName": "Astashkina", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "jobTitle": "Senior Data Engineer", "lastName": "Fritz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "jobTitle": "Manager, Recruiting", "lastName": "Roberts", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "jobTitle": "Full Stack Developer Relations Engineer", "lastName": "Harris", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "jobTitle": "Sales Representative France", "lastName": "Mary", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "jobTitle": "Account Executive", "lastName": "Lewis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "jobTitle": "Senior Revenue Accountant", "lastName": "Tran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "jobTitle": "Account Executive", "lastName": "Kinsella", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "jobTitle": "Account Executive", "lastName": "Coltart", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "jobTitle": "Sr. Director of Product Marketing", "lastName": "Balakrishnan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "jobTitle": "Sr. Sales Engineer", "lastName": "Malhotra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "jobTitle": "VP, Global Indirect Sales", "lastName": "Connon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "jobTitle": "Sr. Sales Engineer", "lastName": "Marino", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "jobTitle": "Recruiting Specialist", "lastName": "Kruschke", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "jobTitle": "Sr. Pre-Sales Engineer", "lastName": "Paczosa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "jobTitle": "Senior Software Engineer", "lastName": "Lendvai", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "jobTitle": "Senior Customer Success Architect", "lastName": "Pecollet", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "jobTitle": "Senior Technical Writer", "lastName": "Popova", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "jobTitle": "Technical Recruiter, EMEA", "lastName": "Raun-Petersen", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "jobTitle": "Sr. Account Executive Nordics", "lastName": "Eriksson", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "jobTitle": "Field Engineer/ Pre-Sales", "lastName": "L\u00f6fqvist", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "jobTitle": "EMEA Head of Channels and Alliances", "lastName": "Schlosser", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "jobTitle": "Sr. Analyst, Commercial Excellence", "lastName": "Berninger", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "jobTitle": "Sr. Revenue Accountant", "lastName": "Strandt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "jobTitle": "Senior Software Engineer", "lastName": "De Llano Balcells", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "jobTitle": "Staff Software Engineer", "lastName": "Wilhelmsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "jobTitle": "Sr. Director, Sales Development", "lastName": "Depaoli", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "jobTitle": "Enterprise Renewals Manager", "lastName": "Taveras", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "jobTitle": "Enterprise Renewals Manager", "lastName": "O'Neil", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "jobTitle": "Director of Technology Partner Marketing", "lastName": "Baron", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "jobTitle": "Account Executive", "lastName": "McLaughlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "jobTitle": "RVP, Professional Services - Americas", "lastName": "Kane", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "jobTitle": "Field Marketing Manager, West/Central Region", "lastName": "Bartel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "jobTitle": "Renewals Team Manager - NA", "lastName": "Merhar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "jobTitle": "Graph Data Science Director", "lastName": "Dathar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "jobTitle": "Sr. SFDC Developer", "lastName": "Noges", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "jobTitle": "Associate Communications Generalist", "lastName": "Ayesha", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "jobTitle": "Professional Services Team Lead", "lastName": "Vyas", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "jobTitle": "Sales Director, ANZ", "lastName": "Philipp", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "jobTitle": "Principal Architect Engineer", "lastName": "Yu", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "jobTitle": "Senior Software Consultant", "lastName": "Hare", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "jobTitle": "Director, Customer Success Architects", "lastName": "Shiposh", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "jobTitle": "Sr. Recruiter", "lastName": "Khan", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "jobTitle": "Recruiter", "lastName": "Perry", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "jobTitle": "Enterprise Renewals Manager", "lastName": "Urban", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "jobTitle": "Enterprise Rep. Switzerland/Austria", "lastName": "Frei", "location": "Remote - Switzerland", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "jobTitle": "Senior Software Engineer", "lastName": "Holmberg Ohlsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Martignon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "jobTitle": "Manager, Corporate Renewals", "lastName": "Durrant", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "jobTitle": "Trainer/Curriculum Developer", "lastName": "Lund", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "jobTitle": "Corporate Account Executive", "lastName": "Acar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "jobTitle": "Project Director", "lastName": "Geary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "jobTitle": null, "lastName": "Resources", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "jobTitle": "Sr. Global Deals Desk Analyst", "lastName": "Festler", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "jobTitle": "Enterprise Account Executive, Northeast", "lastName": "Ankori", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "jobTitle": "Sr. Accountant", "lastName": "Stachura", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "jobTitle": "Software Engineer", "lastName": "Hedengran", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "jobTitle": "Software Engineer", "lastName": "Damkj\u00e6r", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "jobTitle": "Staff Software Engineer", "lastName": "Heap", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "jobTitle": "Staff Software Engineer", "lastName": "Dixon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "jobTitle": "Senior Consultant", "lastName": "Weske", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "jobTitle": "Senior Product Manager", "lastName": "Macaskill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "jobTitle": "Manager, Sales Development", "lastName": "Bell", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "jobTitle": "Sales Development Representative", "lastName": "Han", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "jobTitle": "VP, Global Cloud Field Operations", "lastName": "Nair", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "jobTitle": "Temp", "lastName": "Chen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "jobTitle": "APAC Head of Channels and Alliances", "lastName": "Heng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "jobTitle": "Sr. Pre Sales Engineer, OEM", "lastName": "Kyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "jobTitle": "Senior Product Manager", "lastName": "Shelmerdine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "jobTitle": "Staff Security Engineer", "lastName": "Hellfalk", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "jobTitle": "Senior Technical Writer", "lastName": "Dewhurst", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "jobTitle": "Sales Development Manager EMEA", "lastName": "McDermott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "jobTitle": "Director, CRM", "lastName": "Gainsbourg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "jobTitle": "Field Engineer", "lastName": "Thompson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "jobTitle": "Field Engineer", "lastName": "Jin", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "jobTitle": "Senior Software Engineer", "lastName": "Kaczmarek", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "jobTitle": "Contractor", "lastName": "Leung", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "jobTitle": "Lead Customer Success Manager, EMEA", "lastName": "Maguregi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "jobTitle": "Senior Director of Engineering", "lastName": "Clementson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "jobTitle": "Sr. Sales Engineer", "lastName": "Stroker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "jobTitle": "Senior Software Engineer", "lastName": "Ricart", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "jobTitle": "VP, Product Marketing", "lastName": "Packer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "jobTitle": "Software Engineer", "lastName": "Waudby", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "jobTitle": "Senior Software Engineer", "lastName": "Barcelos de Araujo", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "jobTitle": "Senior Software Engineer", "lastName": "Karasavov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "jobTitle": "Scientific Advisor", "lastName": "Libkin", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "jobTitle": "Creative Director", "lastName": "Koscher", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "jobTitle": "Senior Software Engineer", "lastName": "Lindberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "jobTitle": "Manager, Technical Support", "lastName": "Stott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "jobTitle": "Director, Enterprise Cloud Marketing", "lastName": "Marceau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "jobTitle": "Senior Software Engineer", "lastName": "Leifland", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "jobTitle": "Senior ISV Account Executive", "lastName": "Jansdotter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "jobTitle": "Sales Development Representative", "lastName": "Kerns", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "jobTitle": "Data Scientist", "lastName": "Guido", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "jobTitle": "Sr. Manager, Technology Partner Marketing", "lastName": "D'Anna", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "jobTitle": "Field Engineer PreSales", "lastName": "Preli", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "lastName": "Bratanic", "location": "Remote - Slovenia", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Diggins", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "jobTitle": "Field Engineer PreSales", "lastName": "Katzdobler", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "jobTitle": "Software Engineer", "lastName": "Starns", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "jobTitle": "Sr. Sales Development Rep - France", "lastName": "Dumaine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "jobTitle": "Sr. Sales Engineer", "lastName": "Davis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "jobTitle": "Enterprise Account Executive", "lastName": "Eklund", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "jobTitle": "Account Executive", "lastName": "Peak", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "jobTitle": "Contractor (Dirk Aschoff)", "lastName": "Aschoff", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "jobTitle": "Senior Software Engineer", "lastName": "Gallina", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "jobTitle": "Corporate Account Executive", "lastName": "Sullivan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "jobTitle": "Sr. Manager, Analyst Relations", "lastName": "James", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "jobTitle": "Senior Communications Associate", "lastName": "Dyczkowsky", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "jobTitle": "Senior Software Engineer", "lastName": "Wiss", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "jobTitle": "Contractor (Rafal Janicki)", "lastName": "Janicki", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "jobTitle": "Sales Development Representative", "lastName": "Lim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "jobTitle": "Staff Software Engineer", "lastName": "Dukhovniy", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "jobTitle": "Senior Manager, Web Operations and Development", "lastName": "Dessert", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "jobTitle": "Senior Software Engineer", "lastName": "Botelho", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "jobTitle": "Senior Software Engineer", "lastName": "Biville", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Lewis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "jobTitle": "Managing Editor", "lastName": "Cameron", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Freeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "jobTitle": "Software Engineer", "lastName": "Cachopo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "jobTitle": "Director, Global Client Services Operations", "lastName": "Wroclawski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "jobTitle": "Head of Aura Self Service Growth", "lastName": "Kuffel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "jobTitle": "EMEA Counsel", "lastName": "Oladunjoye", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "jobTitle": "Software Engineer", "lastName": "Gerhardsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "jobTitle": "Sr. Director, Product Marketing", "lastName": "Sampath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "jobTitle": "IT Engineer", "lastName": "Virtanen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "jobTitle": "Graphic Designer", "lastName": "Valentinuzzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "jobTitle": "Contractor", "lastName": "Southivorarat", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "jobTitle": "Field Engineer PreSales", "lastName": "Bessi", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "jobTitle": "Sr. Customer Success Manager", "lastName": "Ellis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "jobTitle": "Senior Software Engineer", "lastName": "M\u00fcller", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "jobTitle": "Senior Software Engineer", "lastName": "Sulima", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "jobTitle": "Consultant", "lastName": "Shaikh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "jobTitle": "Project Director", "lastName": "Keeley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "jobTitle": "Global Integrated Campaign Manager", "lastName": "Williams-Gracey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "jobTitle": "Staff Software Engineer", "lastName": "Zaporozhtsev", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "jobTitle": "Senior Software Engineer", "lastName": "Hramyka", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "jobTitle": "Director GDS Technology", "lastName": "Neys", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "jobTitle": "Partner Solutions Architect", "lastName": "Janke", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "jobTitle": "Product Manager", "lastName": "Urmaliya", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "jobTitle": "Director, Product Management", "lastName": "Blewett", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "jobTitle": "Software Engineer", "lastName": "Donath", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "jobTitle": "Technical Support Engineer", "lastName": "Kincaid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "jobTitle": "Software Engineer", "lastName": "Dziedziul", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Lim", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Yao", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "jobTitle": "Enterprise Account Executive", "lastName": "Hou", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "jobTitle": "Software Engineer", "lastName": "Vincent", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "jobTitle": "Senior Software Engineer", "lastName": "Arena", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "jobTitle": "Senior Software Engineer", "lastName": "Besga", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "jobTitle": "Enterprise Account Executive", "lastName": "Ruffalo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "jobTitle": "Senior Software Engineer", "lastName": "Tverdiakov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "jobTitle": "Software Engineer", "lastName": "Modarres", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "jobTitle": "Director, Global Cloud Sales", "lastName": "Kaaa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "jobTitle": "Consulting Engineer", "lastName": "Das", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "jobTitle": "Sr. Sales Engineer", "lastName": "Beckett", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "jobTitle": "Sr. Manager of Digital Marketing", "lastName": "Holt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "jobTitle": "Developer Advocate", "lastName": "Andersson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "jobTitle": "Senior Software Engineer", "lastName": "Warde", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "jobTitle": "Sales Director, China", "lastName": "Fong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "jobTitle": "Senior Product Manager", "lastName": "King", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "jobTitle": "Data Science Advocate", "lastName": "Sullivan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "jobTitle": "VP, Global Cloud Partnerships", "lastName": "Lassiter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "jobTitle": "Consulting Engineer", "lastName": "Franz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "jobTitle": "Consulting Engineer Intern", "lastName": "Ling", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "jobTitle": "Director, OEM Sales", "lastName": "McIntosh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "jobTitle": "Enterprise Renewals Manager", "lastName": "Clifford", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "jobTitle": "Deal Desk Specialist", "lastName": "Stakeberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "jobTitle": "Product Manager", "lastName": "Raviol", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "jobTitle": "Enterprise Account Executive", "lastName": "Welch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "jobTitle": "Pre-Sales Engineer", "lastName": "McNamara", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "jobTitle": "Sr. Sales Engineer", "lastName": "Wu", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "jobTitle": "Solutions Engineer", "lastName": "Maid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "jobTitle": "Outbound Team Lead", "lastName": "Klein", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "jobTitle": "Associate Cloud & Alliances Sales Manager", "lastName": "McCarthy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "jobTitle": "Vice President, APAC Marketing", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "jobTitle": "Site Reliability Engineer", "lastName": "Fundar\u00f3", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "jobTitle": "Solutions Engineer Intern", "lastName": "Kamath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "jobTitle": "Chief People Officer", "lastName": "Cabot", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "jobTitle": "Sr. Director, Product Marketing", "lastName": "Jana", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "jobTitle": "Copywriter", "lastName": "Ramakrishnan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "jobTitle": "Marketing Automation Lead", "lastName": "Bonander", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "jobTitle": "Senior Software Engineer", "lastName": "Schill Collberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "jobTitle": "Manager, People Operations", "lastName": "Fridvall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "jobTitle": "Software Engineer", "lastName": "Bauer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "jobTitle": "Technical Support Engineer", "lastName": "Levett", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "jobTitle": "Enterprise Account Executive", "lastName": "Fogarty", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "jobTitle": "Sales Development Representative", "lastName": "Isseks", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "jobTitle": "Director, Global Core Customer Success", "lastName": "Nordahl", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "jobTitle": "Account Executive", "lastName": "De Stefano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "jobTitle": "Technical Support Engineer", "lastName": "Stone", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "jobTitle": "VP, Sales APAC", "lastName": "Vora", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "jobTitle": "Software Engineer", "lastName": "Cathcart", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "jobTitle": "Competitive and Enablement Product Marketing Director", "lastName": "Lindsey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "jobTitle": "Senior Field Marketing Manager", "lastName": "Peterson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "jobTitle": "Director of Engineering", "lastName": "Hasselqvist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "jobTitle": "Field Engineer PreSales", "lastName": "Halftermeyer", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "jobTitle": "Senior Manager, Corporate Events", "lastName": "Parsons", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "jobTitle": "Senior Software Engineer", "lastName": "Fischereit", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "jobTitle": "Software Engineer", "lastName": "Morrison", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "jobTitle": "Contractor", "lastName": "Htet", "location": "Remote - Myanmar", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Conjeaud", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "jobTitle": "Content Strategist", "lastName": "O'Shee", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "jobTitle": "Sales Development Representative", "lastName": "Fischer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "jobTitle": "Sales Development Representative", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "jobTitle": "Consulting Engineer", "lastName": "Jacob", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "jobTitle": "Field Engineer PreSales", "lastName": "Oucif", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "jobTitle": "Technical Writer", "lastName": "Ivakina", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "jobTitle": "Senior Software Engineer", "lastName": "Alexoglou", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "jobTitle": "Senior Analyst", "lastName": "Axelsson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "jobTitle": "Aura Support Engineer", "lastName": "Padmanabha", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "jobTitle": "Associate Customer Success Architect", "lastName": "Moore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "jobTitle": "Sales Engineer", "lastName": "Woolford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "jobTitle": "Senior Marketing Strategy and Operations Manager", "lastName": "Duong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "jobTitle": "Professional Services Engineer", "lastName": "Ponduri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "jobTitle": "Director, People Strategy - GTM and G&A Worldwide", "lastName": "Stoddard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "jobTitle": "Salesforce Developer", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "jobTitle": "Head of EMEA Legal", "lastName": "Bollmann", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "jobTitle": "Accounting Manager", "lastName": "Mandadero", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "jobTitle": "Enterprise Account Executive", "lastName": "Catalano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "jobTitle": "UK Country Director", "lastName": "McDermott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "jobTitle": "VP, Global Sales Enablement", "lastName": "Enright", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "lastName": "Prithivirajan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571076}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "jobTitle": "Principal Research Engineer", "lastName": "Clarkson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "jobTitle": "Corporate Account Executive", "lastName": "Kaiser", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "jobTitle": "Senior Software Engineer", "lastName": "Cao", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "jobTitle": "Senior Software Engineer", "lastName": "Nash", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "jobTitle": "Associate Art Director", "lastName": "Patwari", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "jobTitle": "Software Engineer", "lastName": "Parnell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "jobTitle": "Senior Product Manager", "lastName": "Moore", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "jobTitle": "Graph Data Science Product Manager", "lastName": "Chung", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "jobTitle": "Senior Software Engineer", "lastName": "Sampson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "jobTitle": "Senior Technical Writer", "lastName": "Woulfe", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "jobTitle": "Recruiter", "lastName": "Narayanan", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "jobTitle": "Software Engineer", "lastName": "\u015amietana", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "jobTitle": "Sales Development Representative - DACH Region", "lastName": "Iwanska", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "jobTitle": "Accounts Receivable Specialist", "lastName": "Miramontes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "jobTitle": "Legal Contractor", "lastName": "Meijer", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Mervaillie", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "jobTitle": "Managing Editor, Blog", "lastName": "Zimmerman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "jobTitle": "Senior Software Engineer", "lastName": "Jalgard", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "jobTitle": "Software Engineer", "lastName": "Yang", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Ding", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "jobTitle": "Staff Software Engineer", "lastName": "Ince", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "jobTitle": "Sales Director", "lastName": "Shirley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "jobTitle": "Global Cloud Deal Desk Analyst", "lastName": "Loubser", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "jobTitle": "Sales Development Rep - Iberia & Italy Region", "lastName": "Cannella", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "jobTitle": "Contractor", "lastName": "Nagels", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "jobTitle": "Customer Success Architect", "lastName": "Mirabal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "jobTitle": "Senior Software Engineer", "lastName": "Butterfield", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "jobTitle": "LATAM Channel & Alliances Manager", "lastName": "Cerqueira", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "jobTitle": "VP of Marketing, EMEA", "lastName": "Coulston", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "jobTitle": "Sales Development Representative", "lastName": "Robert", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "jobTitle": "Regional Director", "lastName": "Mackey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "jobTitle": "General Counsel", "lastName": "Spataro", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "jobTitle": "Senior Corporate Account Executive - EMEA", "lastName": "Lee", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "jobTitle": "IT Cloud System Administrator", "lastName": "McFie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "jobTitle": "Freelancer", "lastName": "Berger", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "jobTitle": "Sales Engineer", "lastName": "Wasserman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "jobTitle": "People Strategy Partner", "lastName": "O'Donovan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "jobTitle": "Enterprise Account Executive", "lastName": "Tenglikar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "jobTitle": "UX Specialist", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "jobTitle": "Technical Support Engineer", "lastName": "Reehall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "jobTitle": "RVP, Sales Latin America", "lastName": "Serpa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "jobTitle": "Senior Software Engineer", "lastName": "Singhvi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "jobTitle": "Intern", "lastName": "Rogova", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Chidambaram", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "jobTitle": "Software Engineer", "lastName": "Sandberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571078}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "jobTitle": "Senior Product Manager", "lastName": "Gagnon", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "jobTitle": "Sr. Account Executive", "lastName": "Coffey", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "jobTitle": "Senior Field Marketing Manager", "lastName": "Egan-Malagisi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "jobTitle": "Head of Sales DACH", "lastName": "Sch\u00f6nfelder", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "jobTitle": "Sales Director", "lastName": "Chapman", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "jobTitle": "Software Engineer", "lastName": "Baasan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "jobTitle": "Consulting Engineer", "lastName": "Simeunovic", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "jobTitle": "Senior Software Engineer", "lastName": "Heisz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Mondardo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "jobTitle": "Web Development Intern", "lastName": "Nicdao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "jobTitle": "UI/UX Design Intern", "lastName": "Gong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "jobTitle": "Contractor", "lastName": "Daschner", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "jobTitle": "Customer Success Manager", "lastName": "Joyce", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "jobTitle": "Sr. Sales Engineer", "lastName": "Longley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "jobTitle": "Director of Engineering", "lastName": "Wollert Ehlers", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "jobTitle": "Software Engineer", "lastName": "Gurunathan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "jobTitle": "Sr. Manager of Partner Marketing", "lastName": "Mcveigh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "jobTitle": "Software Engineer", "lastName": "Englund", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "jobTitle": "Software Engineer", "lastName": "Giagkiozis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "jobTitle": "Sales Director, Nordics", "lastName": "Sj\u00f6borg", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "jobTitle": "Corporate Account Executive", "lastName": "Ma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "jobTitle": "Sales Development Representative", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "jobTitle": "Sr. Account Executive", "lastName": "Cherry", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "jobTitle": "Business Systems Analyst (Jr. Salesforce Admin)", "lastName": "Jordan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "jobTitle": "VP, Global Revenue Operations", "lastName": "Santa Elena", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "jobTitle": "Customer Success Associate", "lastName": "Shah", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "jobTitle": "Talent Acquisition Manager, EMEA", "lastName": "Sood", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "jobTitle": "Director of Social Media Marketing", "lastName": "Felix", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "jobTitle": "Enterprise Account Executive", "lastName": "Deangelis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "jobTitle": "Consulting Engineer", "lastName": "Wilson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "jobTitle": "Intern", "lastName": "Gustafsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "jobTitle": "Intern", "lastName": "Fagerstr\u00f6m Winkelmann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "jobTitle": "Senior Software Engineer", "lastName": "Werner", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "jobTitle": "Lead PM, Aura Platform", "lastName": "Baker", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "jobTitle": "USA Federal Channel & Alliances Director", "lastName": "Bean", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "jobTitle": "Senior Software Engineer", "lastName": "Sum", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "jobTitle": "Consulting Engineer", "lastName": "Pavia", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "jobTitle": "Senior Software Engineer", "lastName": "Cord\u00f3n Castillo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Teo", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "jobTitle": "Senior Software Engineer", "lastName": "Ortiz Corrales", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "jobTitle": "Enterprise Account Executive", "lastName": "Gurney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "jobTitle": "Senior Commercial Counsel", "lastName": "Hogue", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "jobTitle": "Sr. Recruiter", "lastName": "Klick", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "jobTitle": "Staff Security Engineer", "lastName": "Michlin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "jobTitle": "Contractor", "lastName": "Preusse", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "jobTitle": "Sales Development Rep - Nordics", "lastName": "Miyan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "jobTitle": "GDS Sales Specialist", "lastName": "Vila", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "jobTitle": "Sales Development Rep - UK/Benelux", "lastName": "Pickering", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "jobTitle": "Lead Product Manager", "lastName": "Pollard", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "jobTitle": "Senior Software Engineer", "lastName": "Carias", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "jobTitle": "Senior Field Marketing Manager", "lastName": "Pan", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "jobTitle": "Technical Support Engineer", "lastName": "Salmon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "jobTitle": "Office Manager", "lastName": "Anderson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "jobTitle": "Software Engineer", "lastName": "Fernandez Vidal", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "jobTitle": "Field Engineer PreSales", "lastName": "De Luca", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "jobTitle": "Senior Security Engineer", "lastName": "B\u00fclow", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "jobTitle": "Director Alliances and Channels", "lastName": "Davis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "jobTitle": "Enterprise Account Executive", "lastName": "Pendergast", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "jobTitle": "Sr. Manager, Customer Marketing", "lastName": "Ortiz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "jobTitle": "Sales Engineer", "lastName": "Fournier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "jobTitle": "Technical Support Engineer", "lastName": "Ogden", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Smart", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "jobTitle": "Sr. Sales Engineer", "lastName": "Nunes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "jobTitle": "Data Science Product Specialist", "lastName": "Blumenfeld", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "jobTitle": "Software Engineer", "lastName": "Hibberd", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "jobTitle": "Software Engineer", "lastName": "Farrukh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "jobTitle": "Senior Software Engineer", "lastName": "Bara\u0144ski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "jobTitle": "Digital Marketing Coordinator", "lastName": "Yoshizumi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "jobTitle": "Digital Graphic Design Contractor", "lastName": "Muldoon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "jobTitle": "Senior Software Engineer", "lastName": "Lou\u00ebrat", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "jobTitle": "Field Engineer PreSales", "lastName": "Down", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "jobTitle": null, "lastName": "Integration", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "jobTitle": "Developer Advocate", "lastName": "Zhu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "lastName": "Thein", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "jobTitle": "Senior Software Engineer", "lastName": "Wagatsuma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "jobTitle": "Senior Field Marketing Manager", "lastName": "Jamwal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "jobTitle": "Technical Support Engineer", "lastName": "Jacob", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "jobTitle": "Digital Events Specialist", "lastName": "Cascio", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "jobTitle": "Software Engineer", "lastName": "Chen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "jobTitle": "Regional Director, Customer Success", "lastName": "Stevens", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "jobTitle": "Contractor", "lastName": "Robertson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "jobTitle": "Software Engineer", "lastName": "Charbel", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "jobTitle": "Software Engineer", "lastName": "Bates", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "jobTitle": "Senior Software Engineer", "lastName": "Good", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "jobTitle": "Sr. Data Scientist", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "jobTitle": "Accounting/Payroll Manager", "lastName": "Browne", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "jobTitle": "Director Demand Generation, Database Marketing", "lastName": "Krupnik", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "jobTitle": "Salesforce Administrator", "lastName": "Wienberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "jobTitle": "Sales Development Representative", "lastName": "Soter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "jobTitle": "Strategic Sales Development Representative", "lastName": "Beraza", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "jobTitle": "Sr. Revenue Accountant", "lastName": "Aquino", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "lastName": "Phoo", "location": "Remote - Thailand", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "jobTitle": "Senior Director, Developer Community", "lastName": "Hamel", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "jobTitle": "Director of Engineering", "lastName": "Ful\u00f6p", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "jobTitle": "Senior Software Engineer", "lastName": "Panagiotas", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "jobTitle": "Federal Sales Development Representative", "lastName": "Buchheim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "lastName": "Feng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "jobTitle": "Solutions Engineer Intern", "lastName": "Zhao", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "jobTitle": "Manager, Sales Engineering - ANZ", "lastName": "Pastor", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "jobTitle": "APAC Head of Channels and Alliances", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "jobTitle": "Director of Engineering", "lastName": "Manole", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "jobTitle": "RVP, EMEA South", "lastName": "Putters", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "jobTitle": "Sr. People Strategy Partner", "lastName": "Geraghty", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "jobTitle": "Sr. Revenue Accountant", "lastName": "Aguilera Salgado", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Bhardwaj", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "jobTitle": "Sr. Partner Manager", "lastName": "Radia", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "jobTitle": "Sr. Customer Success Manager", "lastName": "Jain", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "jobTitle": "Customer Success Manager", "lastName": "Maelane", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "jobTitle": "Consulting Engineer", "lastName": "Desai", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "jobTitle": "Field Marketing Specialist", "lastName": "Harvell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "jobTitle": "Sales Development Representative", "lastName": "Zhu", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "jobTitle": "Senior Director, Strategy and Innovation", "lastName": "Moore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "jobTitle": "Customer Success Architect", "lastName": "Macintosh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "jobTitle": "Cloud Channel Director", "lastName": "Ward", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "jobTitle": "Sr. Financial Analyst", "lastName": "Jain", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "jobTitle": "Senior Software Engineer", "lastName": "Ahmad", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "jobTitle": "Director of Product Led Marketing Demand Generation", "lastName": "Gifford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "jobTitle": "Sr. Recruiter", "lastName": "Scheetz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "jobTitle": "Director Global Cloud Channel Architecture", "lastName": "Lackey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "jobTitle": "Digital Events Specialist", "lastName": "Boyd", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "jobTitle": "Sr. Sales Engineer", "lastName": "Imani", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Kounder", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "jobTitle": "Customer Success Operations Analyst Intern", "lastName": "Nordahl", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Conacher", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "jobTitle": "Enterprise Account Executive", "lastName": "Kusuma", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "jobTitle": "Principal, Digital Marketing", "lastName": "Wardell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "jobTitle": "Corporate Events Manager", "lastName": "Martel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "jobTitle": "Senior Technical Writer", "lastName": "Vitucci", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Butar Butar", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "jobTitle": "Video Production Manager", "lastName": "Bettinger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "jobTitle": "Vice President, IT", "lastName": "Foley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "jobTitle": "Talent Acquisition Manager, EMEA", "lastName": "Owens", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Smith", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "jobTitle": "Senior Software Engineer", "lastName": "Wright", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "jobTitle": "Enterprise Account Executive", "lastName": "Schumacher", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "jobTitle": "Product Manager", "lastName": "Sanchez", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "jobTitle": "Enterprise Account Executive", "lastName": "Jansen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "jobTitle": "Sr. Project Director", "lastName": "Dunbar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "jobTitle": "Senior Software Engineer", "lastName": "Lodge", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "jobTitle": "Enterprise Account Executive", "lastName": "Chen", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "jobTitle": "Content Coordinator", "lastName": "Faris", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "jobTitle": "Research Engineer", "lastName": "Rafique", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "jobTitle": "Technical Recruiter, EMEA", "lastName": "Hill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "jobTitle": "Software Engineer", "lastName": "Korduner", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "jobTitle": "Competitive Analyst Consultant", "lastName": "Thrift", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "jobTitle": "Director, Global Corporate Sales", "lastName": "Schwalbe", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "jobTitle": "Director, Graph Data Science Product Marketing", "lastName": "Tomlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "jobTitle": "Graphic Designer", "lastName": "Pattnaik", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "jobTitle": "Sr. Account Executive", "lastName": "Hodgson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "jobTitle": "Corporate Account Executive - LatAm", "lastName": "Godinho", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "jobTitle": "Enterprise Account Executive, LatAm", "lastName": "Farias", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "jobTitle": "Senior Field Marketing Manager", "lastName": "Robinson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571085}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "jobTitle": "Enterprise Account Executive", "lastName": "Holt", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "jobTitle": "Chief Information Security Officer", "lastName": "Fox", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "jobTitle": "Corporate Account Executive", "lastName": "Azizzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "jobTitle": "Field Marketing Director, UK/IE & Benelux", "lastName": "Brunner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "jobTitle": "Director of Engineering", "lastName": "Hagman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "jobTitle": "Sales Development Representative", "lastName": "Dean", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "jobTitle": "Channel and Alliances Director", "lastName": "Iplani", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "jobTitle": "Software Engineer", "lastName": "Basavaraj Sulikeri", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "jobTitle": "Consulting Engineer", "lastName": "Agudelo Ramirez", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "jobTitle": "VP, Global Customer Support", "lastName": "Pettibon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "jobTitle": "Enterprise Account Executive", "lastName": "Mehta", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "jobTitle": "Consulting Engineer", "lastName": "Rosito", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "jobTitle": "Content Strategist", "lastName": "Kulik", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "jobTitle": "VP, Global Talent", "lastName": "Byrnes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "jobTitle": "RVP, Customer Success, Americas", "lastName": "Yao", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "jobTitle": "Sr. Salesforce Administrator", "lastName": "Stallings", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "jobTitle": "Salesforce Administrator", "lastName": "Lindsey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Burns", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "jobTitle": "VP, Federal Enterprise Sales", "lastName": "Dorchinsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "jobTitle": "Field Marketing Manager", "lastName": "Weissenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "jobTitle": "Senior Software Engineer", "lastName": "Emmas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "jobTitle": "Sales Development Representative", "lastName": "Carneiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "jobTitle": "Sr. Operations Engineer", "lastName": "Chiboucas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "jobTitle": "Product Manager", "lastName": "Randall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "jobTitle": "Senior Software Engineer", "lastName": "Steele", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "jobTitle": "Data Science Solution Architect", "lastName": "Roberts", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "jobTitle": "VP, Legal", "lastName": "Roualet", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "jobTitle": "Sales Engineer", "lastName": "Mahajan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "jobTitle": "Field Engineer PreSales", "lastName": "Jarasch", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "jobTitle": "Software Engineer", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "jobTitle": "Software Engineer", "lastName": "Paul", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "jobTitle": "Account Executive", "lastName": "Rodr\u00edguez Infantes", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "jobTitle": "Senior Security Engineer", "lastName": "Baker", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "jobTitle": "Engagement Manager, Professional Services EMEA", "lastName": "Tang", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "jobTitle": "VP Sales, EMEA", "lastName": "Broom", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "jobTitle": "Director, Alliances and Channels", "lastName": "Greenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "jobTitle": "Office Manager", "lastName": "Pardorla", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "jobTitle": "Director, Alliances and Channels", "lastName": "Dickson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "jobTitle": "Sr. Solutions Architect", "lastName": "Garg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "jobTitle": "Sales Development Representative", "lastName": "Moran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "jobTitle": "Sales Development Representative", "lastName": "Moss", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "jobTitle": "RVP, Customer Success - EMEA", "lastName": "Ramachandran", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "jobTitle": "Engagement Manager, EMEA", "lastName": "Loginovskaja", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "jobTitle": "Technical Support Engineer", "lastName": "Kaur", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "jobTitle": "Sales Development Representative", "lastName": "Zabriskie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "jobTitle": "Enterprise Account Executive", "lastName": "Harvey", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "jobTitle": "Product Manager", "lastName": "Simonelli", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "jobTitle": "Senior Manager, Developer Community", "lastName": "Poirier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "jobTitle": "Solutions Engineer Intern", "lastName": "Kulkarni", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "jobTitle": "Sales Development Manager", "lastName": "Sriperumbuduru", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "jobTitle": "Senior Accountant", "lastName": "Ciesla", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "jobTitle": "North America Cloud Channel Director", "lastName": "Dickey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "jobTitle": "VP, Product Management, Cloud", "lastName": "Rashid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "jobTitle": "EMEA Channel & Alliances Manager", "lastName": "Atkinson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "jobTitle": "Senior Software Engineer", "lastName": "Giles", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "jobTitle": "Strategic Sales Development Representative", "lastName": "De Souza", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "jobTitle": "Field Operations Analyst", "lastName": "Uebel", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Kang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "jobTitle": "Principal Legal Counsel, Employment Law, EMEA", "lastName": "Tholander", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "jobTitle": "Lead Product Manager", "lastName": "Pond", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "jobTitle": "Research Engineer", "lastName": "Theodorakis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "jobTitle": "Enterprise Account Executive", "lastName": "Sim", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "jobTitle": "Senior Social Media Manager", "lastName": "Tchintian", "location": "Remote - Argentina", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "jobTitle": "Sr. Account Executive", "lastName": "Le", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "jobTitle": "Customer Success Architect", "lastName": "Carney", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Liu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "jobTitle": "Sr. Customer Success Architect", "lastName": "Gerlt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "jobTitle": "Head of Marketing, Nordics (Senior Manager)", "lastName": "Wang", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "jobTitle": "Director PreSales EMEA South", "lastName": "Pawlik", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "jobTitle": "Sr. Competitive Intelligence Analyst", "lastName": "Kramer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "jobTitle": "Consulting Engineer", "lastName": "Reyes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "jobTitle": "Intern", "lastName": "Alston", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "jobTitle": "Head of Field Marketing (Senior Manager) LATAM", "lastName": "Pimentel", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "jobTitle": "People Strategy & Talent Acquisition Lead, APAC", "lastName": "Chen", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "jobTitle": "Senior Front-End Developer", "lastName": "Austin-Walker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "jobTitle": "Software Engineer", "lastName": "Webb", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "jobTitle": "Consulting Engineer", "lastName": "Rubin", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "jobTitle": "Consulting Engineer", "lastName": "Johannessen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "jobTitle": "Developer Advocacy Manager", "lastName": "Koo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "jobTitle": "Sr. Accounting Manager", "lastName": "Goff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "jobTitle": "Chief Marketing Officer", "lastName": "Rangan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "jobTitle": "Enterprise Account Executive", "lastName": "Derey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "jobTitle": "Self-Serve Growth Analyst", "lastName": "Luo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "jobTitle": "Digital Graphic Design Contractor", "lastName": "Venso", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Hyugaji", "location": "Remote - Japan", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "Woods", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "jobTitle": "Technical Support Engineer", "lastName": "Thennan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "jobTitle": "Customer Success Manager", "lastName": "Gorham", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "jobTitle": "Software Engineer", "lastName": "Leaver", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "jobTitle": "UX Specialist", "lastName": "Zhao", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "jobTitle": "Senior Software Engineer", "lastName": "Holgersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "jobTitle": "Senior Security Engineer", "lastName": "Dunwoody", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "jobTitle": "Consulting Engineer Intern", "lastName": "Vyas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "jobTitle": "Consulting Engineer Intern", "lastName": "Krishnan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "jobTitle": "Software Engineer", "lastName": "Lamont", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "jobTitle": "Graphic Designer", "lastName": "Rane", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "jobTitle": "Sales Development Rep - Benelux", "lastName": "Harber", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "jobTitle": "Technical Support Engineer", "lastName": "Babari", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "jobTitle": "Enterprise Account Executive", "lastName": "Pahlevi", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "jobTitle": "Sr. Sales Engineer", "lastName": "Krinsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "jobTitle": "Community Specialist", "lastName": "Swatek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "jobTitle": "Sales Development Rep - UK Corporate", "lastName": "Masters", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "jobTitle": "Senior Customer Success Architect", "lastName": "Subbiah Shunmugathai", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "jobTitle": "Sales Engineer", "lastName": "Delano", "location": "Remote - Mexico", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "jobTitle": "Senior UX/Visual Designer", "lastName": "Murphy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "jobTitle": "People Operations Manager", "lastName": "Szetu", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "jobTitle": "Sr. Customer Success Manager", "lastName": "Chowdhary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "jobTitle": "IT Engineer", "lastName": "C\u00e1ndido", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Vezhavendhan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "jobTitle": "Sr. Manager of Product Marketing", "lastName": "Gerdyman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "jobTitle": "Technical Support Engineer", "lastName": "Agland-Williams", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "jobTitle": "EMEA Recruiter", "lastName": "Williams", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "jobTitle": "Global Sr. Sales Compensation Manager", "lastName": "Tacchi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "jobTitle": "Software Engineer", "lastName": "Sjerling", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "jobTitle": "Technical Support Engineer", "lastName": "Caldwell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "jobTitle": "Consulting Engineer", "lastName": "Green", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "jobTitle": "VP of Marketing Operations", "lastName": "Kurpad", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "jobTitle": "Consultant", "lastName": "Gatlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Pilas", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "jobTitle": "Sr. Customer Success Architect", "lastName": "Graham", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "jobTitle": "Senior Product Marketing Manager, SaaS Growth", "lastName": "Loh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "jobTitle": "Graphic Artist and Video Editor", "lastName": "Chavan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "jobTitle": "Intern", "lastName": "Magnusson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "jobTitle": "Intern", "lastName": "Epsteins", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "jobTitle": "Intern", "lastName": "Malmstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "jobTitle": "Intern", "lastName": "Nord", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "jobTitle": "Software Engineer", "lastName": "Mayerhofer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "jobTitle": "Executive Assistant", "lastName": "Beatan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "jobTitle": "SEO Specialist Contractor", "lastName": "Kanaan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "jobTitle": "Enterprise Account Executive", "lastName": "Garcia", "location": "Remote - Mexico", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "jobTitle": "Sales Engineer", "lastName": "Dagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "jobTitle": "Consulting Engineer", "lastName": "Booth", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "jobTitle": "Outside Counsel", "lastName": "Clapson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "jobTitle": "Talent Operations Specialist", "lastName": "Holmes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "jobTitle": "Global Deal Desk Manager", "lastName": "Hedin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Wood", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "jobTitle": "Consulting Engineer", "lastName": "Guitart", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "jobTitle": "Senior Commercial Counsel", "lastName": "Matsushima", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "jobTitle": "Sales Development Representative", "lastName": "Boland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "jobTitle": "Senior Software Engineer", "lastName": "Minchev", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "jobTitle": "Developer Organic Marketing", "lastName": "Fulton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "jobTitle": "Query Language Designer", "lastName": "Lovitz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "jobTitle": "Senior Software Engineer", "lastName": "Shi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "jobTitle": "Sr. Sales Engineer", "lastName": "Machado", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "jobTitle": "Contractor", "lastName": "Harris", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "jobTitle": "Staff Security Engineer - Security Practitioner", "lastName": "Goodwin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "jobTitle": "Software Engineer", "lastName": "Quach", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "jobTitle": "Sales Engineer UK", "lastName": "Guerin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "jobTitle": "Project Director", "lastName": "Barona", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "jobTitle": "Security Engineer", "lastName": "Book J\u00f6nsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "jobTitle": "Software Engineer", "lastName": "M\u00e5nsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "lastName": "Pacheco", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "jobTitle": "Federal Enterprise Sales Executive", "lastName": "Oswal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "jobTitle": "Consulting Engineer", "lastName": "Gomez", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "jobTitle": "Software Engineer", "lastName": "Gammicchia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "jobTitle": "Technical Writer", "lastName": "Zuin de Moura", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "jobTitle": "Senior Software Engineer", "lastName": "Orosz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "jobTitle": "Senior Software Engineer", "lastName": "Harvey", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "jobTitle": "Enterprise Account Executive", "lastName": "Zhu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Razo", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "jobTitle": "Senior Security Engineer", "lastName": "Spiridenkovas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "jobTitle": "Associate Consulting Engineer", "lastName": "Wayangankar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "jobTitle": "Sales Engineer", "lastName": "Hair", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "jobTitle": "Executive Business Partner", "lastName": "Yan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "jobTitle": "Customer Success Program Manager", "lastName": "Moyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "jobTitle": "Customer Success Architect", "lastName": "Nieuwenhuizen", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "jobTitle": "Enterprise Sales Representative Germany", "lastName": "Urban", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "jobTitle": "Senior Software Engineer", "lastName": "Jonko", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "jobTitle": "Sr. Manager Global Sales Enablement", "lastName": "Maloney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "jobTitle": "Social Media Intern", "lastName": "Koscher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "jobTitle": "Marketing Strategy and Operations Manager", "lastName": "Palermo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "jobTitle": "Intern", "lastName": "Sloop", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "jobTitle": "VP, Corporate Marketing", "lastName": "Barasch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "jobTitle": "Principal Customer Success Manager", "lastName": "Lui", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "jobTitle": "Director, Customer Success", "lastName": "Sisti", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "jobTitle": "Sales Development Representative", "lastName": "Lesnick", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "jobTitle": "Head of Marketing (Senior Manager) DACH", "lastName": "Faust", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "jobTitle": "Strategic Customer Success Manager", "lastName": "Serrano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "jobTitle": "Software Engineer", "lastName": "Albu", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Qiu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "jobTitle": "Senior Product Manager", "lastName": "James", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "jobTitle": "Senior Director, Education Services", "lastName": "Zamecnik", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "jobTitle": "Senior Accounts Payable Accountant", "lastName": "Sj\u00f6berg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "jobTitle": "Technical Writer", "lastName": "Pryce-\u00c5klundh", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "jobTitle": "G.R.E.T.A. Sales and Marketing Enabler", "lastName": "Kemper", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "jobTitle": "RVP, EMEA North", "lastName": "Moore", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "jobTitle": "Solutions Engineer Intern", "lastName": "Shah", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "jobTitle": "Director of Marketing Systems and Campaign Operations", "lastName": "Scigaj", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "jobTitle": "Product Manager", "lastName": "Giffard", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "jobTitle": "Director, People & Talent Operations", "lastName": "Ciborowski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "jobTitle": "Solutions Data Science Intern", "lastName": "Mathur", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "jobTitle": "Intern", "lastName": "Kathiresh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "jobTitle": "Intern", "lastName": "Suresh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "jobTitle": "People Operations Coordinator", "lastName": "Sutherland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "jobTitle": "Consulting Engineer - Federal", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "jobTitle": "Director, Marketing Strategy and Operations", "lastName": "Bischoff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "jobTitle": "Consulting Engineer", "lastName": "Mazzei", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "jobTitle": "Sr. Sales Engineer", "lastName": "Bukowski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "jobTitle": "Office Coordinator", "lastName": "Runsten", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "jobTitle": "Customer Success Manager", "lastName": "Filipponi", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "jobTitle": "Sales Development Representative, DACH", "lastName": "Falkensteiner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "jobTitle": "Senior Software Engineer", "lastName": "Forsberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "jobTitle": "Customer Success Manager", "lastName": "Parvez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "jobTitle": "Customer Success Manager", "lastName": "Britman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "jobTitle": "Self-Serve Customer Advocate", "lastName": "Mauro", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "jobTitle": "Sr. Sales Engineer", "lastName": "MP", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "jobTitle": "Opportunity Discovery Agent", "lastName": "Kendall", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "jobTitle": "Consulting Engineer", "lastName": "Banerjee", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "jobTitle": "Enterprise Account Executive - LATAM", "lastName": "Guimaraes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "jobTitle": "Senior Software Engineer", "lastName": "Bouriakov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "lastName": "Stegeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "jobTitle": "Sales Engineer", "lastName": "Moberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "jobTitle": "Sr. Recruiter", "lastName": "Te Kanawa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "jobTitle": "Solutions Engineer", "lastName": "Porter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "jobTitle": "Software Engineer", "lastName": "Leffler", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "jobTitle": "Sr. Financial Analyst", "lastName": "Goncalves", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "jobTitle": "Senior Software Engineer", "lastName": "Fabian", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "jobTitle": "Software Engineer", "lastName": "Filip", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "jobTitle": "Engagement Manager", "lastName": "Ben-Natan", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "jobTitle": "Software Engineer", "lastName": "Doodson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "jobTitle": "Manager Channels and Alliances", "lastName": "Diener", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "jobTitle": "Intern", "lastName": "Nordblad", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "jobTitle": "Customer Success Architect - UK", "lastName": "Liscovsky", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "jobTitle": "Customer Success Manager", "lastName": "Webb", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "jobTitle": "VP, Sales Operations", "lastName": "Martinez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "jobTitle": "Director, Talent Acquisition - Global GTM & G&A", "lastName": "Holton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "jobTitle": "Senior Commercial Counsel EMEA", "lastName": "Lazard", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "jobTitle": "Marketing Manager - EMEA", "lastName": "Nicholas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "jobTitle": "Consulting Engineer - DACH", "lastName": "Grunert", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "jobTitle": "Software Engineer", "lastName": "Kannamangala Chidambara", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "jobTitle": "Office Coordinator", "lastName": "Zoratti", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "jobTitle": "Software Engineer", "lastName": "Prychantovskyi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "jobTitle": "Sr. Customer Success Manager", "lastName": "Dairy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "jobTitle": "CRM Data Steward", "lastName": "Dempster", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "jobTitle": "Software Engineer", "lastName": "Rotenberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "jobTitle": "Senior Manager, IT Operations", "lastName": "Flagg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "jobTitle": "Customer Success Manager", "lastName": "Raman", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "jobTitle": "Sales Development Representative", "lastName": "Robin", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "jobTitle": "Enterprise Renewals Manager", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "jobTitle": "Sr. Customer Success Manager", "lastName": "Manderson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "jobTitle": "Sales Development Representative", "lastName": "Yadav", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "jobTitle": "Chief of Staff to CEO", "lastName": "Dolan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "jobTitle": "Technical Writer", "lastName": "Ottolenghi", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "jobTitle": "Senior Software Engineer", "lastName": "Hughes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "jobTitle": "Software Engineer", "lastName": "Levanov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "jobTitle": "Technical Support Engineer", "lastName": "Agam", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "jobTitle": "Software Engineer", "lastName": "Koia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "jobTitle": "Customer Success Architect - Data Science", "lastName": "Pande", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "jobTitle": "Senior Technical Recruiter", "lastName": "Mattei", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "jobTitle": "Tech Community Manager", "lastName": "Agarwal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "jobTitle": "Customer Success Manager", "lastName": "Chesta", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "jobTitle": "Product Manager", "lastName": "Gopalakrishnan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "jobTitle": "Consulting Engineer", "lastName": "Lee", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "jobTitle": "Contractor", "lastName": "Putz G de Carvalho", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "jobTitle": "Consulting Engineer - Belgium", "lastName": "Hubert", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "jobTitle": "Sales Engineer", "lastName": "Ryan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "jobTitle": "Director of Engineering", "lastName": "Bergman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "jobTitle": "Enterprise Account Executive", "lastName": "Crawley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "jobTitle": "Sales Development Representative", "lastName": "Boyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "jobTitle": "People Systems + Analytics Coordinator", "lastName": "Van Der Straeten", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "jobTitle": "Pre-Sales Engineer", "lastName": "El Reweny", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "jobTitle": "Sales Development Representative", "lastName": "Ong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "jobTitle": "Governance Risk & Compliance Practitioner", "lastName": "Miller", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "jobTitle": "Senior Software Engineer", "lastName": "Dhanasamy", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Sayed", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "jobTitle": "Security Operations Analyst", "lastName": "Sharma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "jobTitle": "Senior Security Engineer", "lastName": "Kozub", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "jobTitle": "Security Operations Analyst", "lastName": "Taylor", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "jobTitle": "Field Marketing Specialist", "lastName": "Calmon", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "jobTitle": "Sr Product Marketing Manager", "lastName": "Johnson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "jobTitle": "Enterprise Account Executive", "lastName": "Tonghini", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "jobTitle": "VP, Sales Development", "lastName": "Kelley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "jobTitle": "Director, Sales Operations EMEA & APAC", "lastName": "Chaplin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "jobTitle": "Sr. People Strategy Partner", "lastName": "Le", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "jobTitle": "People Operations Coordinator", "lastName": "Garneau", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "jobTitle": "Customer Success Manager", "lastName": "Ribeiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "jobTitle": "Contractor", "lastName": "Mishchuk", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "jobTitle": "UX Specialist", "lastName": "Shih", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "jobTitle": "Intern", "lastName": "Hambiralovic", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "jobTitle": "Sr. IT Engineer", "lastName": "Huang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "jobTitle": "Intern", "lastName": "Kalkan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "jobTitle": "Sales Engineer", "lastName": "Chiang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "jobTitle": "Security Engineer", "lastName": "Preeti", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "jobTitle": "Sr. Customer Success Manager", "lastName": "Vitale", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "jobTitle": "Senior Software Engineer", "lastName": "Kinday", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "jobTitle": "Salesforce Administrator", "lastName": "Kramer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "jobTitle": "VP, Communications", "lastName": "Kim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "jobTitle": "Enterprise Sales Director, ASEAN & India", "lastName": "Bisht", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "jobTitle": "Intern", "lastName": "Mukanga", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "jobTitle": "Sales Development Representative", "lastName": "Pang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "jobTitle": "Senior Software Engineer", "lastName": "Irons", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "lastName": "Wilson", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "jobTitle": "Senior Accounts Payable Accountant", "lastName": "Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Grenier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "jobTitle": null, "lastName": "Foley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "jobTitle": "UX Specialist", "lastName": "Reddy", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "jobTitle": "Senior Manager, People Operations", "lastName": "Galeza", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "jobTitle": "Senior Software Engineer", "lastName": "Razvenskaia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "jobTitle": "Senior Software Engineer", "lastName": "Getman", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "jobTitle": "Contractor", "lastName": "Booher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "jobTitle": "Sr. Recruiter", "lastName": "O'Brien", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "jobTitle": "Manager, Sales Compensation", "lastName": "Zaleeva", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "jobTitle": "Sales Development Representative", "lastName": "Torres", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "jobTitle": "Software Engineer", "lastName": "Watson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "jobTitle": "Senior Marketing Operations Manager", "lastName": "Tomer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "jobTitle": "Data Science Advocate", "lastName": "Cossette", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "jobTitle": "Software Engineer", "lastName": "Ceberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "jobTitle": "Director of Engineering", "lastName": "Gordon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "jobTitle": "Director, Sales Development", "lastName": "Filomeno", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "jobTitle": "Intern", "lastName": "Forsberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Sivaji", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "jobTitle": "Intern", "lastName": "Lepik", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "jobTitle": "Consultant", "lastName": "Summers", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "jobTitle": "Software Engineer", "lastName": "Eiba", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "jobTitle": "Senior Field Marketing Manager", "lastName": "Salanitro", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "jobTitle": "Director of Brand Strategy and Creative", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "jobTitle": "Software Engineer", "lastName": "Ruminski", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "jobTitle": "Senior Manager, Digital Marketing, Americas", "lastName": "Buonamici", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "jobTitle": "Product Manager", "lastName": "Singh Sekhon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "jobTitle": "Senior Marketing Operations Manager", "lastName": "Hopfer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "jobTitle": "Enterprise Account Executive - Benelux", "lastName": "Visser", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "jobTitle": "Federal Field Marketing Manager", "lastName": "Baraya", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "jobTitle": "Senior Product Manager", "lastName": "Minneci", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "jobTitle": "Project Director", "lastName": "Dieck", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "jobTitle": "Sales Development Manager", "lastName": "Salinas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "jobTitle": "Director of Marketing, APAC", "lastName": "Hansen", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "jobTitle": "Product Manager", "lastName": "Wood", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "jobTitle": "AP Manager", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "jobTitle": "Field Engineering Consultant", "lastName": "Manoharan", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "jobTitle": "Chief Revenue Officer", "lastName": "Welch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "jobTitle": "Director of Content & Storytelling", "lastName": "Christensen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "jobTitle": "Software Engineer", "lastName": "Enikeeva", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "jobTitle": "Executive Business Partner", "lastName": "Dao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "jobTitle": "Deal Desk Analyst", "lastName": "Patterson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "jobTitle": "VP of Corporate FP&A", "lastName": "Mareiro", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "jobTitle": "Enterprise Account Executive", "lastName": "Roe", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "jobTitle": "Consulting Engineer", "lastName": "Zaidi", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "jobTitle": "Sr. Sales Engineer", "lastName": "Cardoso", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "jobTitle": "VP Revenue Operations & Strategy", "lastName": "Corson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "jobTitle": "Intern", "lastName": "Franz\u00e9n af Klint", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "jobTitle": "Intern", "lastName": "Danielsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "jobTitle": "Legal Operations Manager", "lastName": "Holguin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "jobTitle": "Sales Development Representative", "lastName": "Schreier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "jobTitle": "Professional Services Regional Manager", "lastName": "Abrams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "jobTitle": "Test Manager", "lastName": "J\u00f6n\u00e5ker", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "jobTitle": "Senior Marketing Strategy and Operations Manager", "lastName": "Ferguson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "jobTitle": "VP, North America", "lastName": "Bockard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "jobTitle": "Head of Cloud Operations", "lastName": "Tikku", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "jobTitle": "Consultant", "lastName": "Belmudes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "jobTitle": "Consultant", "lastName": "Botelho", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Tozeski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Yadav", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Soni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "jobTitle": "Cloud Operations Engineer", "lastName": "Pal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "jobTitle": "Cloud Operations Engineer", "lastName": "Chauhan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Singh", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "jobTitle": "Senior Software Engineer", "lastName": "Gill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "jobTitle": "Director for Public Relations", "lastName": "De Souza", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "jobTitle": "Cloud Operations Engineer", "lastName": "Mann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "jobTitle": "Cloud Operations Engineer", "lastName": "Shuttle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Franco", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Hunt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "jobTitle": "Account Executive", "lastName": "Hand", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "jobTitle": "Chief Product Officer", "lastName": "Hasbe", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "jobTitle": "Intern", "lastName": "Boberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "jobTitle": "Intern", "lastName": "Nyberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "jobTitle": "Customer Success Manager", "lastName": "Esteban", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "jobTitle": "Customer Success Manager", "lastName": "Bognot", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "jobTitle": "Sr. IT Engineer", "lastName": "Jackson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "jobTitle": "Customer Success Manager", "lastName": "Magpantay", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "jobTitle": "Customer Success Manager", "lastName": "Carla-Reyes", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "jobTitle": "Customer Success Manager", "lastName": "Travinio", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "jobTitle": "Customer Success Manager", "lastName": "Madrid", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "jobTitle": "Customer Success Manager", "lastName": "Aaron-Waga", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "jobTitle": "Customer Success Manager", "lastName": "Dellava", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "jobTitle": "Customer Success Manager", "lastName": "Solmerano", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "jobTitle": "Customer Success Engineer", "lastName": "Fungo", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "jobTitle": "Customer Success Manager", "lastName": "Valderas", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "jobTitle": "Customer Success Manager", "lastName": "Pineda", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "jobTitle": "Customer Success Manager", "lastName": "Cabangon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "jobTitle": "Customer Success Manager", "lastName": "Decamora", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "jobTitle": "Marketing Automation Associate", "lastName": "Welch", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "jobTitle": "Senior Customer Success Manager", "lastName": "Deroche", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "jobTitle": "Director, Analyst Relations", "lastName": "Dittmann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "jobTitle": "Intern", "lastName": "Winters", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "jobTitle": "Customer Success Architect", "lastName": "Zhang", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "jobTitle": "Enterprise Account Executive", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Kelly", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "jobTitle": "Digital Graphic Designer Contractor", "lastName": "Espa\u00f1a", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "jobTitle": "Independent Contractor, Corporate Storytelling & Content", "lastName": "Tietz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "jobTitle": "Contractor", "lastName": "Firdaus", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "jobTitle": "Contractor", "lastName": "Hadi", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "jobTitle": "Intern", "lastName": "Durga Shobhitha Bhamidipaty", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "jobTitle": "Associate Consulting Engineer", "lastName": "Gilmore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "jobTitle": "Managing Editor", "lastName": "Roosa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "jobTitle": "Contractor", "lastName": "Soni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "jobTitle": "Sales Operations Manager", "lastName": "Limonta", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "jobTitle": "Intern", "lastName": "Wong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "jobTitle": "EMEA Region Cloud Channel Director", "lastName": "Warren", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "jobTitle": "VP, Developer Relations", "lastName": "Huerga Ayza", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "jobTitle": "Senior Accountant", "lastName": "Soodla", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "jobTitle": "Events Program Coordinator", "lastName": "Garcia", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "jobTitle": "UX Designer", "lastName": "Radov", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "jobTitle": "VP, SDR", "lastName": "Hankemeier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "jobTitle": "Subcontractor", "lastName": "Bleakley", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "jobTitle": "Subcontractor", "lastName": "Young", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "jobTitle": "Subcontractor", "lastName": "Edwards-Lamarche", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "jobTitle": "Senior Product Manager", "lastName": "Fernando", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "jobTitle": "Intern", "lastName": "Harrysson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Goncalves", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "jobTitle": "Intern", "lastName": "Grip", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "jobTitle": "Sr. Director, Global Revenue Enablement", "lastName": "Kanuga", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "jobTitle": "Intern", "lastName": "Gustafsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "jobTitle": "Software Engineer", "lastName": "Gustavsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "jobTitle": "Intern", "lastName": "Elding Larsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "jobTitle": "People Operations Administrator", "lastName": "Engsfelt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "jobTitle": "Senior Manager, License Compliance Services", "lastName": "Heathcote Hobbins", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "jobTitle": "Subcontractor", "lastName": "O'Mahoney", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "jobTitle": "Subcontractor", "lastName": "Pandolfo", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "jobTitle": "Subcontractor", "lastName": "Buricea", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "jobTitle": "Corporate Renewals Manager", "lastName": "Anton", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "jobTitle": "Subcontractor", "lastName": "Stefanek", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "jobTitle": "Corporate Renewals Manager", "lastName": "Duta", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "jobTitle": "Subcontractor", "lastName": "Speranzoni", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "jobTitle": "Subcontractor", "lastName": "De Lazzari", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "jobTitle": "Subcontractor", "lastName": "Santurbano", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "jobTitle": "Subcontractor", "lastName": "Villani", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "jobTitle": "Subcontractor", "lastName": "Roiter", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "jobTitle": "Subcontractor", "lastName": "Grossetie", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "jobTitle": "Subcontractor", "lastName": "Gazanayi", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "jobTitle": "Subcontractor", "lastName": "Guery", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "jobTitle": "Subcontractor", "lastName": "Brunt", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "jobTitle": "Contractor", "lastName": "Mokhtarian", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "jobTitle": "Director, Sales Operations", "lastName": "Fletcher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "jobTitle": "VP, Product Marketing", "lastName": "Bajwa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "jobTitle": "Contractor", "lastName": "Fonseca", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "jobTitle": "Contractor", "lastName": "Abdalla", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "jobTitle": "Contractor", "lastName": "Lima", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "jobTitle": "Contractor", "lastName": "Machado", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "jobTitle": "Technical Curriculum Developer", "lastName": "O'Hanlon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "jobTitle": "Commissions Analyst", "lastName": "Harris", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "jobTitle": "Contractor", "lastName": "Cesati", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "jobTitle": "Sr. Salesforce Production Support Admin", "lastName": "Bhaskaruny", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "jobTitle": "Sales Development Representative", "lastName": "Williams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "jobTitle": "Contractor", "lastName": "Rino", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "jobTitle": "Contractor", "lastName": "Seril", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "jobTitle": "Contractor", "lastName": "Obrero", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "jobTitle": "Contractor", "lastName": "Topchiy", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "jobTitle": "Contractor", "lastName": "Panzeri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "jobTitle": "Country Manager - France", "lastName": "Boulad", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "jobTitle": "Benefits Coordinator", "lastName": "Laverdure", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "jobTitle": null, "lastName": "Asher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "jobTitle": "Contractor", "lastName": "Francois", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "jobTitle": "Contractor", "lastName": "Azevedo", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "jobTitle": "Sr. Financial Analyst", "lastName": "Pooni", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "jobTitle": "Sr. Director, Global Total Rewards", "lastName": "Bananzadeh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "jobTitle": "Subcontractor", "lastName": "Cura", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Omondi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "jobTitle": "Sales Engineer", "lastName": "Yin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "jobTitle": "Technical Support Engineer", "lastName": "Brand", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "jobTitle": "Core On-Boarding Manager", "lastName": "Adeel", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "jobTitle": "Core On-Boarding Manager", "lastName": "Sadoluwa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "jobTitle": "Sales Development Representative", "lastName": "S\u00f8rensen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "jobTitle": "Contractor", "lastName": "Haldeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "jobTitle": "Contractor", "lastName": "Myslivy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "jobTitle": "Contractor", "lastName": "Collier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "jobTitle": "Contractor", "lastName": "Doolittle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "jobTitle": "Sales Engineer", "lastName": "Wicaksana", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "jobTitle": "Sales Operations Manager", "lastName": "Dopke", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "jobTitle": "Sr. Federal Customer Success Manager", "lastName": "Chesney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "jobTitle": "Contractor", "lastName": "Singh", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "jobTitle": "Business Intelligence Data Engineer", "lastName": "Schiop", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "jobTitle": "Software Engineer", "lastName": "Bergstrand", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "jobTitle": "Intern", "lastName": "\u00c5strand", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "jobTitle": "Channels and Alliances Lead", "lastName": "Siah", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "jobTitle": "Program Manager, Global Enablement", "lastName": "van 't Hek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "jobTitle": "Contractor", "lastName": "Murray", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "jobTitle": "Sales Engineer", "lastName": "Gomes Da Silva", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "jobTitle": "Federal Enterprise Sales Executive", "lastName": "Sturgess", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "jobTitle": "Subcontractor", "lastName": "Ismail", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "jobTitle": "Sales Operations Manager", "lastName": "Woods", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "jobTitle": "Contractor", "lastName": "Little", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "jobTitle": "Intern", "lastName": "Bl\u00e4ckberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "jobTitle": "Director, Web Strategy & Digital Marketing", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "jobTitle": "Director of Sales Development", "lastName": "Dzelil", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "jobTitle": "Sr. Account Executive", "lastName": "Pierson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "jobTitle": "Intern", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "jobTitle": "Consulting Engineer", "lastName": "Zarpel\u00e3o", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "jobTitle": "Sr. People Strategy Partner", "lastName": "Leslie", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "jobTitle": "Senior Software Engineer", "lastName": "Anghelcovici", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "jobTitle": "Senior Software Engineer", "lastName": "Rubanov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "jobTitle": "RVP, Sales East", "lastName": "Evans", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "jobTitle": "Enterprise Sales", "lastName": "Vogelezang", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "jobTitle": "Senior Software Engineer", "lastName": "Caricchio Buss", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "jobTitle": "Senior Software Engineer", "lastName": "Lukichev", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "jobTitle": "UX Visual Designer", "lastName": "Song", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "jobTitle": "VP, Product Management, GDS and GenAI", "lastName": "Crosbie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "jobTitle": "Account Executive", "lastName": "Peters", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "P\u00e9rez Rivera", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "Stefan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "jobTitle": "Consulting Engineer - Federal", "lastName": "Causey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "jobTitle": "Subcontractor", "lastName": "Chen", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "jobTitle": "Subcontractor", "lastName": "Showalter", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "jobTitle": "Contractor", "lastName": "Abman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "jobTitle": "Contractor", "lastName": "Lu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "jobTitle": null, "lastName": "Portner", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "jobTitle": "Enterprise/DN Sales Account Executive", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "jobTitle": "Software Engineer", "lastName": "Beamish", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "jobTitle": "Sales Development Representative", "lastName": "Seger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "jobTitle": "Technical Account Manager", "lastName": "Yap", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "jobTitle": "Professional Services Consulting Engineer", "lastName": "Yap", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "jobTitle": "Senior Software Engineer", "lastName": "Tse Debenham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "jobTitle": "Corporate Renewals Manager", "lastName": "Aganencei", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "jobTitle": "Software Engineer", "lastName": "Becerra Campos", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "jobTitle": "Contractor", "lastName": "Janzen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "jobTitle": "Sr. Sales Engineer", "lastName": "Shatwara", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "jobTitle": "VP, Americas Marketing", "lastName": "Tucker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "jobTitle": "Graph Developer", "lastName": "Zakhir Ali", "location": "Remote - APAC", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "jobTitle": "Software Engineer", "lastName": "Calleja", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "jobTitle": "Sales Development Representative", "lastName": "Kleine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "jobTitle": "Enterprise Sales - France", "lastName": "Vernet", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "jobTitle": "Contractor", "lastName": "Barnecut", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "jobTitle": "Sales Development Representative", "lastName": "Gallagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "jobTitle": "Sales Development Representative", "lastName": "Turcotte", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "jobTitle": "Graph Developer", "lastName": "Kamal", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "jobTitle": "Sr. Account Executive", "lastName": "Gardsbane", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "jobTitle": "Pre-Sales Engineer - Benelux and DACH", "lastName": "Bijl", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "jobTitle": "Subcontractor", "lastName": "Gazdag", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "jobTitle": "Subcontractor", "lastName": "Vassakis", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "jobTitle": "Director of Partner Marketing", "lastName": "Barney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "jobTitle": "Technical Writer", "lastName": "Sill", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "jobTitle": "Associate Customer Success Manager", "lastName": "Jouffret", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "jobTitle": "Subcontractor", "lastName": "Coleman", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "jobTitle": "Subcontractor", "lastName": "Kumagai", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "jobTitle": "Sales Development Representative", "lastName": "Chua", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "jobTitle": "Regional VP, Sales, West", "lastName": "Gillen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "jobTitle": "Senior Director Product Operations", "lastName": "Kothari", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "jobTitle": "Strategic Account Executive, West", "lastName": "Chandra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "jobTitle": "Software Engineer", "lastName": "Pesci", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "jobTitle": "Associate Customer Success Manager", "lastName": "Garner", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "jobTitle": "Senior SaaS Procurement Manager", "lastName": "Kaigan-Kuykendall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "jobTitle": "Senior Account Executive", "lastName": "Mikha", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "jobTitle": "Software Engineer", "lastName": "Farooqui", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "jobTitle": "Senior Software Engineer", "lastName": "Hasell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "jobTitle": "Sales Development Representative", "lastName": "Timmons-Cabedo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "jobTitle": "Recruiting Coordinator", "lastName": "Callejas Murillo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "jobTitle": "Senior Manager, Customer Success - APAC", "lastName": "Oliver", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "jobTitle": "Senior Technical Recruiter", "lastName": "Jackson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "jobTitle": "Contractor", "lastName": "Melton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "jobTitle": "Senior Software Engineer", "lastName": "Moustafa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "jobTitle": "Intern", "lastName": "\u00c5kerman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "jobTitle": "Software Engineer", "lastName": "Gustafson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "jobTitle": "Sales Development Representative", "lastName": "Wilkos", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "jobTitle": "Sr. Manager, Customer Advocacy", "lastName": "Hopkinson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "jobTitle": "Sr. Manager, Integrated Marketing Campaigns", "lastName": "Gangadhara", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "jobTitle": "Enablement Program Manager", "lastName": "Neuhauser", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "jobTitle": "Sr. Technical Product Marketing Manager", "lastName": "Borkar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "jobTitle": "Senior Account Executive", "lastName": "West", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "jobTitle": "Senior Director of Product Management", "lastName": "Derazon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "jobTitle": "Senior Software Engineer", "lastName": "Likhomanov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "jobTitle": "Intern", "lastName": "Brinklert", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "jobTitle": "Intern", "lastName": "Clemedtson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "jobTitle": "Intern", "lastName": "Rettig", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "jobTitle": "Intern", "lastName": "Lundberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "jobTitle": "Master Thesis Intern", "lastName": "Ahlberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "jobTitle": "Master Thesis Intern", "lastName": "Bondesson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "jobTitle": "Enterprise Account Executive", "lastName": "Monteiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "jobTitle": "VP, APAC Sales", "lastName": "Pimpini", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "jobTitle": "Enterprise Account Executive", "lastName": "Jorge", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "jobTitle": "Customer Success Manager - Singapore", "lastName": "Ong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "jobTitle": "Senior Brand Designer", "lastName": "Hall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "jobTitle": "Contractor", "lastName": "Vidwans", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "jobTitle": "Global Vice President, Technology Solutions", "lastName": "Sowell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "jobTitle": "Technical Writer", "lastName": "Quick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "jobTitle": "Sr. Recruiter", "lastName": "Armour", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "jobTitle": "Senior Product Manager", "lastName": "Wong", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "jobTitle": "Senior Software Engineer", "lastName": "Tai", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "jobTitle": "Sales Development Manager", "lastName": "Ott", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "jobTitle": "Recruiting Coordinator", "lastName": "Gonzalez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "jobTitle": "RVP, Federal Sales", "lastName": "Bender", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "jobTitle": null, "lastName": "Tottie", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "jobTitle": null, "lastName": "Adu-Gyan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "jobTitle": "Enterprise Sales", "lastName": "Knidler", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "jobTitle": "Global Cloud Partnership Director", "lastName": "Ho", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "jobTitle": "Director, Professional Services and Solutions Engineering", "lastName": "Payne", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "jobTitle": "Senior Compensation & Benefits Manager", "lastName": "Serrano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "jobTitle": "Technical Product Marketing Manager", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "jobTitle": "Software Engineer", "lastName": "Daugerdas", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "jobTitle": "People Operations Administrator", "lastName": "Gorski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "jobTitle": "SEO/Digital Strategy Marketing Manager", "lastName": "Caruana", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "jobTitle": null, "lastName": "Hippius", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "jobTitle": null, "lastName": "Ozsoy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "jobTitle": "Subcontractor", "lastName": "Kondratenko", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "jobTitle": "Google Cloud Global Partnership Director", "lastName": "Shah", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "jobTitle": "Enterprise Sales", "lastName": "Zein", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "jobTitle": "Senior Account Executive", "lastName": "Rogers", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "jobTitle": "Senior Recruiter - APAC", "lastName": "Adair", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "jobTitle": "Sales Development Representative", "lastName": "Chooi", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "jobTitle": "Account Executive", "lastName": "Flood", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Everett", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "jobTitle": "Technical Product Marketing Manager", "lastName": "Dhaliwal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "jobTitle": "People Operations Coordinator", "lastName": "Dhall", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "jobTitle": "Director of FP&A, Cloud Finance", "lastName": "Chopra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "jobTitle": "Sales Engineer", "lastName": "Manzano", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "jobTitle": "VP, Product Management", "lastName": "McGrath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "jobTitle": null, "lastName": "Siegenthaler", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "jobTitle": null, "lastName": "Browne", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "jobTitle": null, "lastName": "Knoetic", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "jobTitle": null, "lastName": "Alleyn", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "jobTitle": null, "lastName": "McCloy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "jobTitle": "Technical Support Engineer", "lastName": "Vasquez-Ceja", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "jobTitle": null, "lastName": "Pischon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "jobTitle": "Senior Software Engineer", "lastName": "Scifo", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "jobTitle": "Enterprise Sales", "lastName": "Lovell", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "jobTitle": null, "lastName": "Akalin Eren", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "jobTitle": null, "lastName": "Vasant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "jobTitle": null, "lastName": "Lumley", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "jobTitle": "Subcontractor", "lastName": "Bauva", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "jobTitle": "Software Engineer", "lastName": "van Leeuwen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "jobTitle": "Sr. Federal Field Marketing Manager", "lastName": "Collins", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "jobTitle": "Subcontractor", "lastName": "Sannino", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "jobTitle": null, "lastName": "Thomas", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "jobTitle": "Subcontractor", "lastName": "Cahindo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "jobTitle": null, "lastName": "Sankar", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "jobTitle": "Subcontractor", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "jobTitle": "Federal Inside Sales Representative", "lastName": "Gallagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "jobTitle": null, "lastName": "Chin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "jobTitle": "Contractor", "lastName": "Desai", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "jobTitle": null, "lastName": "Hizal", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "jobTitle": null, "lastName": "Lundberg", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "jobTitle": null, "lastName": "Homem de Gouveia", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "jobTitle": null, "lastName": "Nijim", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "jobTitle": null, "lastName": "Rex Greenway", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "jobTitle": null, "lastName": "Russell", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "jobTitle": null, "lastName": "Paige", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "jobTitle": null, "lastName": "Salva", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "jobTitle": null, "lastName": "Voruganti", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "jobTitle": null, "lastName": "Sparacin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "jobTitle": null, "lastName": "Rothier Bautzer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "jobTitle": null, "lastName": "Aleyaasin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "jobTitle": "Subcontractor", "lastName": "Ganta", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "jobTitle": "Subcontractor", "lastName": "Reddi", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "jobTitle": "Subcontractor", "lastName": "Kottamasu", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "jobTitle": "Subcontractor", "lastName": "Havanur", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "jobTitle": "Subcontractor", "lastName": "Ramineni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "jobTitle": "Subcontractor", "lastName": "Tammiraju", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "jobTitle": "Subcontractor", "lastName": "Dandu", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "jobTitle": null, "lastName": "Medina Rodriguez", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "jobTitle": null, "lastName": "Rattan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "jobTitle": null, "lastName": "Raftery", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "jobTitle": null, "lastName": "Lin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 USD"}, "emitted_at": 1710872573083}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136000.00 USD"}, "emitted_at": 1710872573086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1592189 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1500189 SEK"}, "emitted_at": 1710872573086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "907200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "907200 SEK"}, "emitted_at": 1710872573086}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000 USD"}, "emitted_at": 1710872573087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5500000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3000000.00 SEK"}, "emitted_at": 1710872573087}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215009.6 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "103.37 USD"}, "emitted_at": 1710872573088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2023-04-01", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000 USD"}, "emitted_at": 1710872573088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573088}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "133000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "109000.00 USD"}, "emitted_at": 1710872573089}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "756000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "756000.00 SEK"}, "emitted_at": 1710872573090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000 USD"}, "emitted_at": 1710872573090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000.00 USD"}, "emitted_at": 1710872573090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573090}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "241094 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192875 USD"}, "emitted_at": 1710872573091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "235000 USD"}, "emitted_at": 1710872573091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "174990.4 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "84.13 USD"}, "emitted_at": 1710872573091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137550 USD"}, "emitted_at": 1710872573091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "101200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "92000.00 USD"}, "emitted_at": 1710872573091}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "99000.00 USD"}, "emitted_at": 1710872573092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "245726.84 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196581.47 USD"}, "emitted_at": 1710872573092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573092}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200750 USD"}, "emitted_at": 1710872573093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "329000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "189000 USD"}, "emitted_at": 1710872573093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "229716.12 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192276.12 USD"}, "emitted_at": 1710872573093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195242 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "171392 USD"}, "emitted_at": 1710872573093}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573094}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573095}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "345000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500 USD"}, "emitted_at": 1710872573096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-09-14", "customOTE": "255800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "227800.00 USD"}, "emitted_at": 1710872573096}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "202410 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "114180 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "126000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "82000 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000.00 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "341000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170500 USD"}, "emitted_at": 1710872573097}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185566.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "166566.40 USD"}, "emitted_at": 1710872573098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "197000.00 USD"}, "emitted_at": 1710872573098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "187335 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "171735 USD"}, "emitted_at": 1710872573098}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 USD"}, "emitted_at": 1710872573099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573099}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "329000 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "435000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "261000 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257853.68 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "222853.68 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "315000.00 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "335000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "270000 USD"}, "emitted_at": 1710872573100}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100880 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "48.50 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "111600.00 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220500 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573101}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205565.2 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170565.20 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "177000.00 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "148500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148500 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136800 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136000.00 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195000 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "115000.00 USD"}, "emitted_at": 1710872573102}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "148000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148000 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "143000 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "251500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "201500 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "218000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "218000.00 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 USD"}, "emitted_at": 1710872573103}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104854 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104854.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "325000 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "229591.58 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184591.58 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "565590 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "452400.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157000 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206718.48 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "186225.48 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260235 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "238500 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162500.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "247500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "167500.00 USD"}, "emitted_at": 1710872573104}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206560.42 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "183680.42 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172000.00 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137500 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "286500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "256500.00 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250448 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "217948 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "78000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "78000 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-02-04", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197248 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176748 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255850 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185850 USD"}, "emitted_at": 1710872573105}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173303.85 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "152603.85 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "customOriginalDateofHire": "2019-04-08", "originalHireDate": "0000-00-00", "customOTE": "95992 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "46.15 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206398.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "188198.4 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "149643.75 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "129483.75 USD"}, "emitted_at": 1710872573106}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "297500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "50000.00 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "48000.00 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "99000.00 USD"}, "emitted_at": 1710872573107}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204372.6 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185317.6 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-06-17", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "290000.00 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "207360 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "189000 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573108}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "customOriginalDateofHire": "2019-08-01", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "94000.00 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163322.5 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148522.5 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "191264 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170544 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573109}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "143000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1104000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1104000 SEK"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "205000.00 GBP"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000 EUR"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4147280 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3369665.00 SEK"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000 GBP"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 EUR"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2012-07-09", "customOTE": "364000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "175.00 EUR"}, "emitted_at": 1710872573110}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000.00 EUR"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "103200 EUR"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "765600 DKK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "765600.00 DKK"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "60000.00 SEK"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2128430.3 DKK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1773691.92 DKK"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160500.00 EUR"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-05-19", "customOTE": "200000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573111}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 EUR"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1248000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1248000 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1152000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1152000 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 GBP"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "696000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "58000.00 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "141237.5 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110127.5 EUR"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573112}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "365000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "219000 EUR"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000.00 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130500 GBP"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-06-01", "customOTE": "1308000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1308000 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1055700 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1055700 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248480 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170980 GBP"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "932400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "932400 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1300000.00 SEK"}, "emitted_at": 1710872573113}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "858000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "858000 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "582000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "48500.00 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97500.00 EUR"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "64000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "64000.00 GBP"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-09-01", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000.00 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "672000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "56000.00 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "380000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000.00 EUR"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-06-09", "customOTE": "750000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "750000.00 SEK"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128875 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102875 GBP"}, "emitted_at": 1710872573114}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "465000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "465000.00 SEK"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "894000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "894000 SEK"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "161000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "156000.00 GBP"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72000 EUR"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "customOriginalDateofHire": "2013-01-07", "originalHireDate": "0000-00-00", "customOTE": "132000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000 EUR"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1710000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1710000 SEK"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "168080 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "158080.00 EUR"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "966000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "966000 SEK"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "189000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000 GBP"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000 EUR"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "182000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "87.5 GBP"}, "emitted_at": 1710872573115}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "77000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77000 EUR"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2016-10-01", "customOTE": "93000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "93000 EUR"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110250 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "122000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "122000 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81120 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81120 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102900.00 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "912000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "912000.00 SEK"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77500.00 GBP"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "919800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "919800 SEK"}, "emitted_at": 1710872573116}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000.00 GBP"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128750 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128750 EUR"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81694.79 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69894.79 GBP"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150400 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2100000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "2100000.00 SEK"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1912000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1712000 SEK"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 EUR"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "516000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "43000.00 SEK"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 EUR"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 GBP"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "240000.00 EUR"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573117}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1000000.04 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "76666.67 SEK"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "118000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 EUR"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "270000 EUR"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130810 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130810 EUR"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "customOriginalDateofHire": "2018-06-06", "originalHireDate": "2017-03-06", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1422300 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1291490.00 SEK"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "241600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "171600.00 EUR"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-07-01", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1350000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1350000.00 SEK"}, "emitted_at": 1710872573118}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000 GBP"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-02-01", "customOTE": "594000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "594000 SEK"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000 EUR"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-01-15", "customOTE": "79000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "79000.00 EUR"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-10-15", "customOTE": "624000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "300.00 USD"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1128000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1128000 SEK"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1320000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1320000.00 SEK"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101500.00 EUR"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "882000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "882000 SEK"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "customOriginalDateofHire": "2018-04-16", "originalHireDate": "0000-00-00", "customOTE": "117000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "59360 GBP"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "36000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "3000.00 EUR"}, "emitted_at": 1710872573119}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1110000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1110000 SEK"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170400 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170400 AUD"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "862500 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "862500 SEK"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-08-20", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "500.00 EUR"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "55000.00 GBP"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "73000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000 GBP"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "659100 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "579000 ILS"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-03-01", "customOTE": "70000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "70000.00 EUR"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1283902.82 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "799500.00 ILS"}, "emitted_at": 1710872573120}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000 GBP"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "657700 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "657700 SEK"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1421400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1421400 SEK"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000 GBP"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "894000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "894000 SEK"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 GBP"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "90000.00 SEK"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "131740 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92219 GBP"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "807240 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "807240 SEK"}, "emitted_at": 1710872573121}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 AUD"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "816000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "68000.00 SEK"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "118000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 GBP"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "627000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "627000 SEK"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "55000.00 SEK"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "918000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "918000 SEK"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500.00 EUR"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000 GBP"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000.00 SEK"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89500.00 EUR"}, "emitted_at": 1710872573122}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "116314 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 EUR"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 EUR"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "550200 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "792000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "792000.00 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "103000 EUR"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-10-14", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109000.00 GBP"}, "emitted_at": 1710872573123}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "162750 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "162750.00 GBP"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "171000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "156000.00 EUR"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1122000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1122000 SEK"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1333200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1333200 SEK"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000 SEK"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "223000.00 USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "50.00 USD"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-06-10", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000 USD"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000 SEK"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000 SEK"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000 SEK"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "620000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "620000 SEK"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000 GBP"}, "emitted_at": 1710872573131}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "792000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "792000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2012-04-01", "customOTE": "130000 NZD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000 NZD"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "300000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "30000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "30000 GBP"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51000 EUR"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "130 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "420000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000 EUR"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106300 GBP"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "396000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "396000 SEK"}, "emitted_at": 1710872573132}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "384000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "384000 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72500 GBP"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "76000 EUR"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41520 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "41520 GBP"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "322400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "155 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1027500 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1027500 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "6000 EUR"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2016-05-02", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "130 SEK"}, "emitted_at": 1710872573133}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "516000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "516000 SEK"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000 EUR"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "6000 EUR"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51000 GBP"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "550 GBP"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573134}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-07-01", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000 GBP"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "101000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101000 GBP"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "765000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "765000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000 GBP"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000 GBP"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573135}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "150 SEK"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "55000 GBP"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "31200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "15 EUR"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "7000 SEK"}, "emitted_at": 1710872573136}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "110 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "759960 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "759960 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "846000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "846000 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "564000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "47000.00 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-04-23", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 EUR"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "633600 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "633600 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117300 GBP"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "66000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "66000.00 GBP"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000 GBP"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "35000.00 SEK"}, "emitted_at": 1710872573137}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "425000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "186250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "186250 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "192500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192500 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196198 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196198.00 CAD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 EUR"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000.00 USD"}, "emitted_at": 1710872573138}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000 USD"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "490000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "294000 USD"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87500 USD"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "870000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "870000 SEK"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "127000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104500 GBP"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97250 GBP"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70350 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "70350.00 EUR"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2035000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1135000 SEK"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1270000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1020000 SEK"}, "emitted_at": 1710872573139}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "264500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "154500 GBP"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1380000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1380000.00 SEK"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "687900 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "687900 SEK"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "984000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "984000.00 SEK"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193011 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135108 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197580 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139080 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162500 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310174.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "249500 USD"}, "emitted_at": 1710872573140}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000.00 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220502 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160950 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109200.00 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4452225 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3572475 INR"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "530000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "265000 AUD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "352500 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "257500 AUD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "295671 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "236375 CAD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": "0.00 USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "176800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "176800.00 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137500 USD"}, "emitted_at": 1710872573141}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "152500.00 EUR"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "870000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "870000 SEK"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96300 GBP"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "137490 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96555 GBP"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "154000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "138500 USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "72500 USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "715800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "715800 SEK"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "630000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "630000.00 SEK"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "674040 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "674040 SEK"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123600 GBP"}, "emitted_at": 1710872573142}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128000 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97400 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88700.00 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "83000 USD"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68000 USD"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "355000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "195250 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "386610 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "257610.00 SGD"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1130400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1130400 SEK"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87000 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "154000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573143}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "183750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "183750 USD"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "766.28 AUD"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "934200 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "844200.00 CNY"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-06-03", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-10-01", "customOTE": "1560000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1560000 SEK"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "834000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "834000 SEK"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000 USD"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-08-23", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88000 GBP"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "844560 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "844560 SEK"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112200 GBP"}, "emitted_at": 1710872573144}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "1000.00 EUR"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "198000.00 USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960960 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "960960 SEK"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "73500 GBP"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000 SEK"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "304500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "154500 USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67000.00 EUR"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "93600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "45.00 EUR"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "131000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101500.00 EUR"}, "emitted_at": 1710872573145}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "49350 GBP"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 EUR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Day", "payRate": "0.00 EUR"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "876000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "876000 SEK"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "customOriginalDateofHire": "2020-08-24", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "116000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "116000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 SEK"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573146}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "135600 EUR"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "122100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "122100 GBP"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128750 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128750 EUR"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175650 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "159900 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "127560 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "127560.00 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193872 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160500 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1250000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1250000.00 SEK"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "20700.00 EUR"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "customOriginalDateofHire": "2020-10-06", "originalHireDate": "0000-00-00", "customOTE": "226550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "197000.00 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "442200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "442200 SEK"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573147}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-12-16", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111885 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 EUR"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "194000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164900 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "726000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "726000 SEK"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87000 EUR"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-05-01", "customOTE": "54600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Week", "payRate": "1050.00 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128000 GBP"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000 SEK"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157680 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "127680 GBP"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "174200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "144200 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000 USD"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-01-04", "customOTE": "190000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000.00 GBP"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000 SEK"}, "emitted_at": 1710872573148}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "122400 USD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "75.00 EUR"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "176000.00 SGD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-11-16", "customOTE": "162774.37 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "148074.37 CAD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-12-14", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104000.00 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123600 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92500 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "233000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "138000.00 GBP"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4201548.5 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3205885.5 INR"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156800 USD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "customOriginalDateofHire": "2020-01-13", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000 USD"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "620340 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "620340.00 SEK"}, "emitted_at": 1710872573149}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104000 GBP"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "270000.00 SGD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "136000 GBP"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "166750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156750 USD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000 USD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-01-11", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "164080 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114857 GBP"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504996 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504996.00 SEK"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "134000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "134000 EUR"}, "emitted_at": 1710872573150}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "192000.00 SGD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "customOriginalDateofHire": "2021-01-04", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "116000 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "73500 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "78000.00 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "370000 SGD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 EUR"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "400000.00 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "289100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "245000.00 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72800 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "35.00 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "customOriginalDateofHire": "2021-01-19", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000 USD"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "800000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "800000 SEK"}, "emitted_at": 1710872573151}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105040 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70720 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "107100 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "580000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "348000 SGD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87250 GBP"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "216000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "216000.00 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "customOriginalDateofHire": "2019-10-07", "originalHireDate": "0000-00-00", "customOTE": "157500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1308000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1308000 SEK"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 EUR"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "customOriginalDateofHire": "2019-07-01", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573152}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "888000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "888000 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "47590.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "22.88 USD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 EUR"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132850 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "132850 USD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "66000 USD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103500 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "69500 SGD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4388088.4 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3410618.4 INR"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "816000.00 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "654000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "654000 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "804000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "804000 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "960000 SEK"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "119000 USD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573153}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193640 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "193640 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150800 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195120 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195120 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "customOriginalDateofHire": "2021-02-22", "originalHireDate": "0000-00-00", "customOTE": "7649250 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "7649250 INR"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "185000 EUR"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-03-15", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "311000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000 SGD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "94000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "94000 GBP"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000 GBP"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 GBP"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "customOriginalDateofHire": "2021-03-15", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573154}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "167000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "167000 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "147000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "147000 USD"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "696000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "696000 SEK"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81250 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "110.00 USD"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "89000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89000 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "42000.00 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104000 USD"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "150.00 EUR"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "79500.00 EUR"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000 USD"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "732000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "732000 SEK"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "952000 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "952000 CNY"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-06-05", "customOTE": "133500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "133500 GBP"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573155}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "69784 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69784 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55120 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "43680 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-04-01", "customOTE": "145600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "70.00 EUR"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139200 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117300 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70720 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "390000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "228000.00 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "325000.00 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "184000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "123000 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 EUR"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "74900 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "74900 GBP"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "5000000 INR"}, "emitted_at": 1710872573156}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84950 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "66950 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88000 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "8112 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "3.90 EUR"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5500000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "4400000.00 INR"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "690000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "690000 SEK"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197631.2 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "197631.2 CAD"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "212500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155150 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155150 USD"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 EUR"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "584400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "584400 SEK"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "653000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "126200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "126200 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "64800 GBP"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "25.00 USD"}, "emitted_at": 1710872573157}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "25.00 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 EUR"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "153000 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "168000 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1248000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1248000 SEK"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "588000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "588000 SEK"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000 SEK"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81000 GBP"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-02-24", "customOTE": "2700000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1620000.00 SEK"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "90000.00 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 SGD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000 GBP"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4700000 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3900000 INR"}, "emitted_at": 1710872573158}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "212750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "212750.00 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-06-28", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-06-28", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "869400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "869400.00 SEK"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "187500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "187500.00 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "288000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109200 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "40000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "38000.00 EUR"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "108000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "108000.00 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 SGD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573159}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "139050 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "139050 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "65.00 EUR"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58710 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "42230 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "59850 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "43050 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107700 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "107700 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "767000 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "767000.00 CNY"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "82100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72100 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46620 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "46620 GBP"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "636000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "636000.00 SEK"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "142100 EUR"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "782000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "782000 SEK"}, "emitted_at": 1710872573160}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "172500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500.00 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "213600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163600 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163200 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 AUD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203940 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "203940 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67920 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67920 GBP"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "63600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "63600 GBP"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "74880 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "36.00 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140608 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "67.60 USD"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000 GBP"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "147000.00 GBP"}, "emitted_at": 1710872573161}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "782363 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "782363 CNY"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "216000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "216000.00 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "9398545 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "9398545.00 INR"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3501621.05 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3112621.05 INR"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87250 GBP"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "134250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-05-17", "customOTE": "287040 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "138.00 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "86400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86400 EUR"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000 GBP"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113000 GBP"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "209740 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179740 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "79040 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "38.00 USD"}, "emitted_at": 1710872573162}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75100.00 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "162000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162000 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "33696 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "16.20 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 CAD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "996000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "996000 SEK"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68250 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "261000.00 SGD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280800 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "226800 AUD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "493000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "273000.00 SGD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000 GBP"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "282625 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170000 EUR"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000 USD"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "602400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "602400 SEK"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3668441.1 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3260841.1 INR"}, "emitted_at": 1710872573163}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10010817 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6006580.00 INR"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "174250 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "137000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3455077 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2719954.00 INR"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "60.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "63000.00 SGD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "274000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98880 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98880 GBP"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "252000 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "151424 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "72.80 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5026304.56 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3823555 INR"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573164}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 AUD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2500000000 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1250000000.00 IDR"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "customOriginalDateofHire": "2021-10-18", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1334606514 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1077911100 IDR"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "161000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "161000.00 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "366285 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "295000 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 AUD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113000 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87500 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "306000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "153000 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "209740 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179740 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000 GBP"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1416320 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "850000.00 CNY"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103833.6 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "49.92 USD"}, "emitted_at": 1710872573165}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000.00 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "588000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "588000 SEK"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87360 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "42.00 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192000.00 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "288400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "288400 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "31200 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "15.00 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "ERROR USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "643885.45 BRL"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "207000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 AUD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000 USD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000 GBP"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1128000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1128000 SEK"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "133120 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "91520 AUD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "372665 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "263165 AUD"}, "emitted_at": 1710872573166}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "69500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69500 GBP"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "64500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "57000 EUR"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "339900 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "262650 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 AUD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47000 EUR"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "172500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500.00 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "391250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "341250 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "330000.00 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "143000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "143000 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "139050 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139050 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114000 GBP"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "389242 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "278030.00 BRL"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "112200 USD"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000.00 GBP"}, "emitted_at": 1710872573167}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195000 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "352000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "352000 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "217500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 EUR"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-01-17", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-01-17", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "265000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "135000 EUR"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500 GBP"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "435000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "261000 GBP"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "254875 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "167375 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68250 USD"}, "emitted_at": 1710872573168}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163530 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "124200 GBP"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 EUR"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3339751.06 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2914751.06 INR"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000.00 AUD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 EUR"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 SGD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155250 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "412500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "412500 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "119600 GBP"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "451508 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "305915.00 BRL"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1380000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1380000.00 SEK"}, "emitted_at": 1710872573169}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000 GBP"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76776 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "76776 GBP"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 SGD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "customOriginalDateofHire": "2022-01-24", "originalHireDate": "0000-00-00", "customOTE": "63000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "63000.00 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77000 GBP"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 CNY"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1032000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1032000.00 SEK"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 EUR"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "203550.00 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "191400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "166400 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "819864.76 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "819864.76 BRL"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 SGD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "206000 USD"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "678000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "678000 SEK"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 EUR"}, "emitted_at": 1710872573170}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204350 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179350 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "179500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179500 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "572000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "440000.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175100 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "50.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000000 JPY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "19200000.00 JPY"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "53700 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47700 GBP"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4260357.5 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3873057.5 INR"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97200 GBP"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97000 GBP"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-05-16", "customOTE": "72800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "35.00 USD"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "594000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "594000 SEK"}, "emitted_at": 1710872573171}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1150000 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1150000.00 INR"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "47250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36750 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86700 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3142855500 IDR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1571427750.00 IDR"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "95000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36400 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210500 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160500 CAD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280330 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "217330 SGD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "45000.00 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "480000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "480000 SEK"}, "emitted_at": 1710872573172}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "147600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "132600 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "95.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "269000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 SGD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "27040 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "13.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-13", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4758356 MXN", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2379178.00 MXN"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "213200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163200 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205950 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175950 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "520000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "250.00 USD"}, "emitted_at": 1710872573173}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "82000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "82000 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1008000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1008000 SEK"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 AUD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175100 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105060 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "72100 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104000.00 GBP"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106000 GBP"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1110249 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "783705.00 BRL"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "474000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "474000 SEK"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97000 GBP"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163625 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148625 USD"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "469680 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "469680 SEK"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573174}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "930000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "558000.00 BRL"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 EUR"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000 GBP"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "572400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "572400 SEK"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112500 GBP"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114000 GBP"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1401000 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "700500.00 CNY"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "224620 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "158620 EUR"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113600 GBP"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-05-16", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87000.00 USD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "customOriginalDateofHire": "2022-05-09", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "198000 AUD"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 EUR"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000 EUR"}, "emitted_at": 1710872573175}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185400 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "235000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97640 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88400.00 EUR"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "86000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86000 GBP"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "926266.09 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "825366.09 CNY"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "549000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "549000 SEK"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "613920 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "613920 SEK"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112500.00 EUR"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000 GBP"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573176}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-06", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "77500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "77500 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "275000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47500 EUR"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-13", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36400 GBP"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "8625000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6900000.00 INR"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573177}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3033166 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2488752.00 INR"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1224000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "612000.00 BRL"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "290000.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172200.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "152000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "152000 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84000 GBP"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 EUR"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000 GBP"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000.00 EUR"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45760 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "22.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "275000.00 USD"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 EUR"}, "emitted_at": 1710872573178}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000.00 EUR"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000.00 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-07-11", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "customOriginalDateofHire": "2022-07-11", "originalHireDate": "0000-00-00", "customOTE": "57500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "57500.00 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "292500 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 SGD"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1971428.57 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1380000.00 INR"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 SGD"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-08-01", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3120000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2184000.00 INR"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2400000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "2400000.00 SEK"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "738720 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "738720 SEK"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114800 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550004.4 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "500004.00 ILS"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000 GBP"}, "emitted_at": 1710872573179}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "672000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "672000.00 SEK"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6000000.00 INR"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 EUR"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "129000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "103200.00 SGD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "65.00 USD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "194000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "146250 USD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1320000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1320000.00 SEK"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-08-22", "customOTE": "55000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1450004 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1100004.00 SEK"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "86520.00 SGD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155250 USD"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119900 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109000.00 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51500 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72100 GBP"}, "emitted_at": 1710872573180}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "40000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "40000 GBP"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "272400 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "272400.00 BRL"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "182000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "182000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "515000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "412000.00 BRL"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000.00 SEK"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "164000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500004 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "500004.00 SEK"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "208000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573181}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "264000.00 SGD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "42000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "3500.00 SEK"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1207060.03 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "732060.03 BRL"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "107000.00 GBP"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106500 GBP"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 GBP", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "72000 GBP"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573182}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 GBP"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "204000.00 AUD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "265000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 EUR"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "268500 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "268500.00 SGD"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000.00 GBP"}, "emitted_at": 1710872573183}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "95000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "700000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 AUD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "191250.00 AUD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "785915.49 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "555915.49 BRL"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "415000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "332000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "customOriginalDateofHire": "2019-12-01", "originalHireDate": "2020-01-15", "customOTE": "30000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "30000.00 USD"}, "emitted_at": 1710872573184}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "26000.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2751000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2200800.00 INR"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2751000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2200800.00 INR"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2038500 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1630500.00 INR"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1630200 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1304200.00 INR"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2450000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1960000.00 INR"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "144000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "144000.00 GBP"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "138000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110400.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573185}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "450000.00 USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 SGD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000.00 SGD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "93500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124800 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "60.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "52.50 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "52.50 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87000.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "360.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "143000.00 GBP"}, "emitted_at": 1710872573187}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "225000.00 GBP"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "10000.00 BRL"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "115.00 USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000.00 GBP"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "customOriginalDateofHire": "2023-09-04", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "432000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "432000.00 SEK"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "416000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "200.00 AUD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573189}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 BRL"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 BRL"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "10000.00 BRL"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "7000.00 BRL"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170000.00 EUR"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "115.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "285000.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121860 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121860 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "35000.00 GBP"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1563922497 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Month", "payRate": "97745156.00 IDR"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2023-08-28", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 SGD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "750000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "525000.00 BRL"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 AUD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "270000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5211800 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "4532000.00 INR"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "612400 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "490000.00 BRL"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 GBP"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "247500.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 EUR"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000.00 GBP"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "166400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "80.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "80000.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 SGD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 MYR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "576000.00 MYR"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "277344 MYR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "221875.00 MYR"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "636000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "636000.00 SEK"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "8000000.00 INR"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "315000.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "420.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67000.00 GBP"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "35000.00 GBP"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000.00 EUR"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573194}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Day", "payRate": "420.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000.00 EUR"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000.00 SEK"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "6250.00 SGD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "505000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "252500.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "customOriginalDateofHire": "2023-12-04", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "116000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573195}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58240 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "28.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "245000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "196000.00 AUD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72000.00 GBP"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "176800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "85.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573196}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "customOriginalDateofHire": "2024-03-18", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1456000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "728000.00 BRL"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "customOriginalDateofHire": "2023-12-11", "originalHireDate": "0000-00-00", "customOTE": "850000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "425000.00 AUD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1638000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "819000.00 BRL"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 SGD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "300.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "customOriginalDateofHire": "2023-12-14", "originalHireDate": "0000-00-00", "customOTE": "475000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "332500.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "73000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "73000.00 GBP"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58240 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "28.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "247500.00 USD"}, "emitted_at": 1710872573197}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "127500.00 EUR"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "242250.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "320000.00 AUD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "49920 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "24.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 CAD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "213625.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000.00 EUR"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215004 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "17917.00 SGD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "6500.00 SGD"}, "emitted_at": 1710872573198}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "89000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89000.00 AUD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "854286 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "598000.00 BRL"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "customOriginalDateofHire": "2024-03-11", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 EUR"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "225000.00 AUD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000.00 SEK"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "93.75 USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "payRate": "196000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "payRate": "136000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "payRate": "1500189 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "payRate": "907200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "payRate": "280000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Charlie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "payRate": "3000000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "payRate": "103.37 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Rick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "payRate": "240000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "payRate": "260000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Robert", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "payRate": "109000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "payRate": "756000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jacob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "payRate": "155000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "payRate": "125000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "payRate": "192875 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "payRate": "235000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "payRate": "84.13 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "payRate": "137550 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "payRate": "92000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "payRate": "99000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lexi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "payRate": "196581.47 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "payRate": "200750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "payRate": "189000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "payRate": "192276.12 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "payRate": "171392 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": "She/her", "customRegrettable": null}, "emitted_at": 1710872575761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "payRate": "172500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Salas", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "payRate": "227800.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "payRate": "71000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "payRate": "114180 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "payRate": "82000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "payRate": "280000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "payRate": "170500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "payRate": "166566.40 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ross", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "payRate": "197000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "payRate": "171735 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "payRate": "55000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Fawad", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "payRate": "329000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "payRate": "261000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "payRate": "71000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "payRate": "222853.68 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "payRate": "315000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kurt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "payRate": "270000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "payRate": "48.50 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "payRate": "190000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "David", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "payRate": "111600.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "payRate": "220500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "payRate": "170565.20 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "payRate": "177000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "payRate": "205000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "payRate": "148500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Thanh", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "payRate": "136800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "payRate": "136000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cecille", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "payRate": "195000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eric", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "payRate": "115000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "payRate": "148000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "payRate": "143000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "payRate": "201500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ravi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "payRate": "218000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "payRate": "55000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "payRate": "104854.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "payRate": "325000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "payRate": "184591.58 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "payRate": "452400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "payRate": "157000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "payRate": "186225.48 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gozer", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "payRate": "238500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "payRate": "145000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "payRate": "162500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "payRate": "167500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "payRate": "183680.42 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "payRate": "172000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "payRate": "137500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "payRate": "256500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "payRate": "217948 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Ciano", "preferredName": "Billy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "payRate": "78000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sean", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "payRate": "280000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "payRate": "176748 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "payRate": "185850 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "payRate": "152603.85 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "payRate": "46.15 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "payRate": "188198.4 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "payRate": "129483.75 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "payRate": "220000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "payRate": "50000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "payRate": "48000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "payRate": "260000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "payRate": "99000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "payRate": "185317.6 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Geoff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "payRate": "20.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "payRate": "135000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "payRate": "290000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "payRate": "189000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cory", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "payRate": "105000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "payRate": "94000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "payRate": "148522.5 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "payRate": "170544 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "payRate": "1104000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "payRate": "205000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "payRate": "200000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "payRate": "3369665.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "payRate": "190000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "payRate": "110000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "payRate": "175.00 EUR", "payPeriod": "Monthly", "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "payRate": "200000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "payRate": "103200 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "payRate": "765600.00 DKK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ben", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "payRate": "60000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "payRate": "1773691.92 DKK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "payRate": "160500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jonny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "payRate": "95000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "payRate": "1248000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "payRate": "1152000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "payRate": "96000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "payRate": "900000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "payRate": "58000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "payRate": "110127.5 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kees", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Bill", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "payRate": "219000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "payRate": "1080000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "payRate": "130500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "payRate": "1308000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Misha", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "payRate": "1055700 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "payRate": "170980 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Delier", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "payRate": "1080000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "payRate": "932400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "payRate": "1300000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "payRate": "900000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "payRate": "858000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "payRate": "48500.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "payRate": "97500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "payRate": "64000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "payRate": "768000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "payRate": "56000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "payRate": "190000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575778}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "payRate": "720000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "payRate": "750000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "payRate": "102875 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rocha", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "payRate": "465000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "payRate": "894000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "payRate": "156000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "payRate": "72000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "payRate": "132000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "payRate": "1710000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "payRate": "158080.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "payRate": "966000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "payRate": "132000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "payRate": "120000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "payRate": "87.5 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "payRate": "77000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "payRate": "93000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "payRate": "110250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "payRate": "122000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "payRate": "81120 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jenny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "payRate": "102900.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lju", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "payRate": "912000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "payRate": "77500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "payRate": "919800 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "payRate": "50000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "payRate": "128750 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "payRate": "69894.79 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "payRate": "2100000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "payRate": "1712000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kalle", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "payRate": "96000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "payRate": "43000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tiago", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "payRate": "130000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "payRate": "132000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "payRate": "240000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "payRate": "76666.67 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "payRate": "118000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "payRate": "270000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "payRate": "130810 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Irfan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "payRate": "1291490.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575781}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "payRate": "171600.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "payRate": "1350000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "payRate": "90000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "payRate": "594000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "payRate": "123000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "payRate": "79000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "payRate": "300.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "payRate": "1128000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "payRate": "1320000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "payRate": "101500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "payRate": "882000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "payRate": "59360 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "payRate": "3000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "payRate": "1110000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Liza", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "payRate": "170400 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "payRate": "862500 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "payRate": "500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "payRate": "55000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "payRate": "68000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "payRate": "579000 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "payRate": "70000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "payRate": "799500.00 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "payRate": "75000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "payRate": "657700 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Bergkvist", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "payRate": "1421400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "payRate": "60000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "payRate": "894000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "payRate": "91800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "payRate": "90000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "payRate": "92219 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "payRate": "807240 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "payRate": "160000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "payRate": "68000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "payRate": "118000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "payRate": "627000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "payRate": "55000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "payRate": "918000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "payRate": "84500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "payRate": "96000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Rob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "payRate": "1080000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "payRate": "89500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nico", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "payRate": "91800 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "payRate": "110000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "payRate": "550200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "payRate": "792000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "payRate": "103000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "payRate": "109000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "payRate": "162750.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "payRate": "156000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "payRate": "1122000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "payRate": "1333200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "payRate": "840000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Kargapolov", "preferredName": "Georgiy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "payRate": "223000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Scott Lorenson", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Jeffrey Morris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Aayushi Mittal", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "payRate": "50.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "payRate": "140000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "payRate": "1080000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "payRate": "540000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "payRate": "540000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "payRate": "620000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "payRate": "91000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "payRate": "792000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "payRate": "130000 NZD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "payRate": "300000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "payRate": "30000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "payRate": "51000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "payRate": "130 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "payRate": "420000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "payRate": "115000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "payRate": "106300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "payRate": "396000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "payRate": "384000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "payRate": "72500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "payRate": "76000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "payRate": "41520 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "payRate": "155 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "payRate": "576000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "payRate": "1027500 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "payRate": "6000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "payRate": "130 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "payRate": "516000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "payRate": "80000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "payRate": "6000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "payRate": "51000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "payRate": "550 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "payRate": "60000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "payRate": "101000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "payRate": "765000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "payRate": "65000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "payRate": "100000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "payRate": "660000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "payRate": "150 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "payRate": "55000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "payRate": "15 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "payRate": "7000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "payRate": "110 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "payRate": "759960 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "payRate": "846000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "payRate": "47000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "payRate": "68000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "payRate": "633600 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "payRate": "117300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "payRate": "66000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jas", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "payRate": "100000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ves", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "payRate": "35000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Shash", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "payRate": "186250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "payRate": "192500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "payRate": "196198.00 CAD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jon", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "payRate": "105000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "payRate": "156000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "payRate": "265000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "payRate": "175000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "payRate": "294000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "payRate": "87500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "payRate": "870000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "payRate": "104500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "payRate": "97250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "payRate": "70350.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "payRate": "1135000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "payRate": "1020000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "payRate": "154500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "payRate": "1380000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "payRate": "687900 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "payRate": "984000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "payRate": "135108 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "payRate": "139080 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "payRate": "162500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "payRate": "249500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ken", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "payRate": "158000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "payRate": "160950 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "payRate": "205000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phani", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "payRate": "109200.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Noor", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "payRate": "3572475 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "payRate": "265000 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "payRate": "257500 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joshua", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "payRate": "240000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "payRate": "236375 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "payRate": "165000 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "payRate": "176800.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "payRate": "137500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "payRate": "152500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "payRate": "870000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "payRate": "96300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "payRate": "96555 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "payRate": "138500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "David", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "payRate": "72500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Yigit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "payRate": "715800 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "payRate": "630000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "payRate": "674040 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "payRate": "123600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "payRate": "128000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "payRate": "88700.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "payRate": "83000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "payRate": "68000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "payRate": "195250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kay", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "payRate": "120000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "payRate": "257610.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Heng", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "payRate": "1130400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "payRate": "87000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "payRate": "183750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "payRate": "766.28 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "payRate": "844200.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jon Ander", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "payRate": "1560000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "payRate": "834000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "payRate": "265000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "payRate": "88000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "payRate": "844560 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Barcelos", "preferredName": "Antonio", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "payRate": "112200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "payRate": "1000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "payRate": "198000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "payRate": "960960 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "payRate": "73500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "payRate": "840000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Love", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "payRate": "154500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mari", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "payRate": " USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "payRate": "67000.00 EUR", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "payRate": "45.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "payRate": "101500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "payRate": "49350 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "payRate": "0.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "payRate": "876000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "payRate": "116000.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "payRate": "900000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "payRate": "135600 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "payRate": "122100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "payRate": "128750 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "payRate": "159900 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tom", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "payRate": "127560.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Deb", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "payRate": "160500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "James", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "payRate": "1250000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "payRate": "260000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "payRate": "20700.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "payRate": "197000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "payRate": "442200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Aleks", "pronouns": "They/them", "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "payRate": "75.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "payRate": "91800 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "payRate": "164900 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ron", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "payRate": "726000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "payRate": "87000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "payRate": "1050.00 USD", "payPeriod": "Monthly", "paySchedule": null, "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "payRate": "75.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "payRate": "128000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "payRate": "648000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "payRate": "127680 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "payRate": "144200 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "payRate": "190000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "payRate": "190000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "payRate": "648000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "payRate": "122400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "AJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "payRate": "75.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "payRate": "176000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "payRate": "148074.37 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "payRate": "150000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Peter", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "John", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "payRate": "104000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "payRate": "123600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dmitriy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "payRate": "92500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "payRate": "138000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "payRate": "3205885.5 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "payRate": "156800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Syd", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "payRate": "155000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "payRate": "620340.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "payRate": "104000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "payRate": "270000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "payRate": "136000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "payRate": "156750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "payRate": "215000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "payRate": "114857 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "payRate": "504996.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "payRate": "134000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Luisa", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "payRate": "192000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Wu", "preferredName": "Tony", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "payRate": "116000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "payRate": "73500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "payRate": "78000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "payRate": "370000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "payRate": "90000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "payRate": "400000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "payRate": "245000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "TJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "payRate": "35.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "payRate": "125000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "payRate": "800000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "payRate": "70720 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "payRate": "184000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kristin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "payRate": "107100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "payRate": "348000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "payRate": "87250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "payRate": "216000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tom", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "payRate": "1308000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "payRate": "90000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "payRate": "888000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "payRate": "684000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "payRate": "22.88 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Enzo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "payRate": "80000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "payRate": "132850 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "payRate": "66000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "payRate": "69500 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jasreel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "payRate": "3410618.4 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "payRate": "816000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kadde", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "payRate": "654000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "payRate": "804000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Costa", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "payRate": "960000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Prashanth", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "payRate": "119000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "payRate": "193640 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "payRate": "150800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "payRate": "195120 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Perreault", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "payRate": "7649250 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "payRate": "185000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "payRate": "100.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Amie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "payRate": "150000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "payRate": "310000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "payRate": "220000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Maruthi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "payRate": "94000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "payRate": "90000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "payRate": "95000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "payRate": "84500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "payRate": "167000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Stu", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "payRate": "147000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "payRate": "696000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "payRate": "81250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "payRate": "110.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "payRate": "89000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "payRate": "42000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "payRate": "104000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "payRate": "150.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "payRate": "79500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "payRate": "150000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Angie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "payRate": "732000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jane", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "payRate": "952000 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Derek", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "payRate": "133500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "payRate": "69784 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "payRate": "43680 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "payRate": "70.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "payRate": "139200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "payRate": "117300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "payRate": "180000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "payRate": "200000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "payRate": "70720 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "payRate": "228000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Mackey", "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "payRate": "325000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Carl", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "payRate": "123000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "payRate": "100.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "payRate": "74900 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "payRate": "5000000 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "payRate": "66950 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "payRate": "88000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "payRate": "3.90 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "payRate": "4400000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "payRate": "690000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "payRate": "197631.2 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "payRate": "155150 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "payRate": "150000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "payRate": "584400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "payRate": "126200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "payRate": "64800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "payRate": "25.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "payRate": "25.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Frank", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "payRate": "100.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "payRate": "153000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "payRate": "168000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "payRate": "1248000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "payRate": "588000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mahes", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Michael", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "payRate": "576000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "payRate": "81000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "payRate": "1620000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "payRate": "90000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "payRate": "71000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "payRate": "125000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Stewart", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "payRate": "3900000 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "payRate": "212750.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "payRate": "869400.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "payRate": "187500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "payRate": "158000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "payRate": "109200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "payRate": "38000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "payRate": "108000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nacho", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "payRate": "180000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "payRate": "139050 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "payRate": "65.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "payRate": "42230 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "payRate": "43050 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "payRate": "175000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "payRate": "107700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Duval", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "payRate": "767000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "payRate": "72100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "payRate": "46620 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ellie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "payRate": "636000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "payRate": "142100 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "payRate": "782000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Charlie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "payRate": "172500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "payRate": "163600 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "payRate": "163200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "payRate": "210000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Xander", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "payRate": "120000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "payRate": "203940 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "payRate": "67920 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "payRate": "63600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "payRate": "36.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Yoshi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "payRate": "67.60 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "payRate": "105000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "payRate": "147000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "BambooHR", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "payRate": "782363 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "payRate": "216000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ken", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "payRate": "9398545.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "payRate": "3112621.05 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "payRate": "87250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jun", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "payRate": "138.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "payRate": "86400 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "payRate": "75000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "payRate": "113000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "payRate": "179740 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Amy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "payRate": "38.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "payRate": "70000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "payRate": "75100.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "payRate": "162000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "payRate": "16.20 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "payRate": "200000.00 CAD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "payRate": "996000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "payRate": "68250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "payRate": "261000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gavin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "payRate": "226800 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "payRate": "273000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hubert", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "payRate": "160000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "payRate": "170000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jean Jacques", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "payRate": "160000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cassie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "payRate": "602400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "payRate": "3260841.1 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "payRate": "6006580.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "payRate": "174250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "payRate": "2719954.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "payRate": "60.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "payRate": "63000.00 SGD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "payRate": "164000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "payRate": "137000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "payRate": "98880 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mandy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "payRate": "252000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "payRate": "72.80 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "payRate": "3823555 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "payRate": "200000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "payRate": "1250000000.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "payRate": "1077911100 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "payRate": "161000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "payRate": "295000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sef", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "payRate": "240000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "payRate": "113000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nicki", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "payRate": "87500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "payRate": "153000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "payRate": "179740 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "payRate": "98000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "payRate": "850000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sophie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "payRate": "49.92 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "payRate": "60000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Freddy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "payRate": "588000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "payRate": "42.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "payRate": "192000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "payRate": "288400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "payRate": "15.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "payRate": "643885.45 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "payRate": "140000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "payRate": "180000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "payRate": "118000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "payRate": "105000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "payRate": "155000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Susanne", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "payRate": "1128000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "payRate": "91520 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "payRate": "263165 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "payRate": "69500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "payRate": "57000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "payRate": "262650 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "payRate": "210000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "payRate": "47000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Carlos", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "payRate": "172500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Pam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "payRate": "341250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "payRate": "330000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "payRate": "143000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "payRate": "139050 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "payRate": "114000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "payRate": "278030.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "payRate": "112200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "payRate": "175000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "payRate": "195000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Katie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "payRate": "352000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "payRate": "96000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "payRate": "135000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rodriguez", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "payRate": "84500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "payRate": "261000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "payRate": "167375 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "payRate": "68250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "payRate": "124200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "payRate": "95000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "payRate": "2914751.06 INR", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "payRate": "175000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "payRate": "125000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "payRate": "175000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Yami", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "payRate": "155250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "payRate": "412500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "payRate": "119600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "payRate": "305915.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "payRate": "1380000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "payRate": "180000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "payRate": "76776 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "George", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "payRate": "185000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "payRate": "63000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "payRate": "77000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "payRate": "900000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "payRate": "1032000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Audrey", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "payRate": "160000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "payRate": "203550.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chuck", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "payRate": "166400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Rae", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "payRate": "819864.76 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Paula", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "payRate": "160000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kimberly", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "payRate": "206000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "payRate": "678000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "payRate": "50000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "payRate": "179350 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "CJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "payRate": "179500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "payRate": "440000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "payRate": "175100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "payRate": "50.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "payRate": "19200000.00 JPY", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "payRate": "47700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "payRate": "3873057.5 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "payRate": "97200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hang", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "payRate": "97000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "payRate": "35.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Nari", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "payRate": "594000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gem", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "payRate": "1150000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "payRate": "36750 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "payRate": "86700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "payRate": "1571427750.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "payRate": "95000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "payRate": "36400 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "payRate": "160500 CAD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vish", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "payRate": "217330 SGD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ezhil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "payRate": "45000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "payRate": "480000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "payRate": "132600 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Renea", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "payRate": "310000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "payRate": "95.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "payRate": "234000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "payRate": "215000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "payRate": "13.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "payRate": "75.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "payRate": "2379178.00 MXN", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "payRate": "163200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "payRate": "175950 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "payRate": "250.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "payRate": "82000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "payRate": "1008000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "payRate": "200000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "payRate": "175100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "payRate": "72100 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "payRate": "104000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Taner Sener", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "payRate": "158000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Lovitz", "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "payRate": "106000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Brian", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "payRate": "783705.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "payRate": "474000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "payRate": "97000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "payRate": "148625 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Fed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "payRate": "469680 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "payRate": "558000.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "payRate": "75000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "payRate": "91000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "payRate": "572400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "payRate": "112500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "payRate": "114000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "payRate": "700500.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "payRate": "158620 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lee", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "payRate": "113600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "payRate": "87000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "payRate": "198000 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "payRate": "130000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "payRate": "96000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Pahola", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "payRate": "185400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jack", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Lui", "preferredName": "Danny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "payRate": "235000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "payRate": "88400.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "payRate": "86000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "payRate": "825366.09 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Harry", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jonny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "payRate": "549000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "payRate": "613920 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "payRate": "112500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "payRate": "180000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "JG", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Kat", "preferredName": "Kat", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "payRate": "77500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Madi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "payRate": "275000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "payRate": "47500 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "payRate": "176000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Daniel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "payRate": "36400 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "payRate": "176000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "payRate": "6900000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Padma", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "payRate": "2488752.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Soumya", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "payRate": "612000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "payRate": "290000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "payRate": "172200.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "payRate": "152000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "payRate": "84000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Leo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "payRate": "105000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "payRate": "85000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "payRate": "155000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "payRate": "22.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Webb", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "payRate": "275000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "payRate": "180000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "payRate": "95000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "payRate": "95000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "payRate": "57500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "payRate": "234000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "payRate": "1380000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "payRate": "196000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alvin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "payRate": "2184000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "payRate": "2400000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "payRate": "738720 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "payRate": "114800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ollie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Grigoriy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "payRate": "500004.00 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "payRate": "98000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "payRate": "672000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "payRate": "6000000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "payRate": "85000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "payRate": "125000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "payRate": "103200.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "payRate": "65.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "payRate": "146250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "payRate": "1320000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "payRate": "55000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "payRate": "1100004.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "payRate": "86520.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "payRate": "155250 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "payRate": "109000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "payRate": "51500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "payRate": "72100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mat", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "payRate": "40000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "payRate": "272400.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "payRate": "182000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "payRate": "170000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": "Le", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "payRate": "412000.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "payRate": "576000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "payRate": "164000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Chiang", "preferredName": "Edward", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "payRate": "500004.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "payRate": "208000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Leo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "payRate": "105000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Kim", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "payRate": "264000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "payRate": "3500.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "payRate": "732060.03 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Grenier", "preferredName": "Duncan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cate", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "payRate": "107000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Razvenskaia", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "payRate": "106500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Commission", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "payRate": "72000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "payRate": "150000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "payRate": "140000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "payRate": "196000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "payRate": "204000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "payRate": "265000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Singh", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Hopfer", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "payRate": "132000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hylke", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "payRate": "268500.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "payRate": "155000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "payRate": "95000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "payRate": "260000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "payRate": "165000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "payRate": "175000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "payRate": "191250.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "payRate": "555915.49 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "payRate": "332000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "af Klint", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "payRate": "125000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "payRate": "30000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "payRate": "215000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Becca", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "payRate": "26000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "payRate": "2200800.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "payRate": "2200800.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "payRate": "1630500.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "payRate": "1304200.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "payRate": "1960000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "payRate": "144000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "payRate": "110400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "payRate": "450000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "payRate": "180000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "payRate": "200000.00 SGD", "payPeriod": null, "paySchedule": null, "payType": "Salary", "customPreferredLastName": null, "preferredName": "Teddy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "payRate": "60.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "payRate": "52.50 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "payRate": "52.50 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "payRate": "87000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "payRate": "360.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "payRate": "143000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "payRate": "225000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Isa", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "payRate": "648000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "payRate": "10000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "payRate": "115.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Lamarche", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "payRate": "102000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "payRate": "260000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "payRate": "432000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "payRate": "200.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "payRate": "5000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "payRate": "5000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "payRate": "10000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "payRate": "7000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "payRate": "105000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "payRate": "75.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mia", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "payRate": "20.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "payRate": "170000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Liz", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "payRate": "115.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ram", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "payRate": "285000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Casey", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "payRate": "35000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "payRate": "97745156.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "payRate": "234000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "payRate": "150000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "payRate": "525000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "payRate": "220000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chase", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "payRate": "270000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "payRate": "4532000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "payRate": "490000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eliezer", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "payRate": "125000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eugene", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "payRate": "247500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "payRate": "132000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "payRate": "98000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Buss", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "payRate": "80.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "payRate": "80000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "payRate": "165000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Tan", "preferredName": "John", "pronouns": "He/him", "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "payRate": "70000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "payRate": "576000.00 MYR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "payRate": "221875.00 MYR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "payRate": "636000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Manel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": "Janzen", "preferredName": "Jennie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "payRate": "8000000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sumit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "payRate": "315000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "payRate": "420.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "payRate": "67000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "payRate": "35000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "payRate": "123000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "payRate": "420.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "payRate": "91000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Erik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "payRate": "684000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": "He/him", "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "payRate": "6250.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Evian", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "payRate": "252500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "payRate": "310000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "payRate": "116000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "payRate": "28.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": "Callejas", "preferredName": "Sophie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "payRate": "196000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sarah", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "payRate": "72000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "payRate": "85.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Hopkinson", "preferredName": "Theo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rettig", "preferredName": "Marcus Rettig", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "payRate": "728000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ademir Aurelio Monteiro", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "payRate": "425000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "KP", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "payRate": "819000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Jorge", "preferredName": "Andr\u00e9", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "payRate": "160000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Derrick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "payRate": "300.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "payRate": "332500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "payRate": "73000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "payRate": "28.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "payRate": "247500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "payRate": "127500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "payRate": "242250.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "payRate": "320000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "payRate": "24.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Vicky", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "payRate": "180000.00 CAD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vince", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "payRate": "213625.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "payRate": "123000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "payRate": "17917.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "payRate": "6500.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jay", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "payRate": "156000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kyle", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Harsh", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "payRate": "89000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "payRate": "598000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "payRate": "85000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "payRate": "225000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ray", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Akalin", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "payRate": "684000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Wilco", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sandi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Anu", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "payRate": "20.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "payRate": "93.75 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Gouveia", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Bautzer", "preferredName": "Max", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872576075}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "status": "Inactive"}, "emitted_at": 1710872576670}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "status": "Active"}, "emitted_at": 1710872576670}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "status": "Inactive"}, "emitted_at": 1710872576671}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "status": "Active"}, "emitted_at": 1710872576671}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "status": "Active"}, "emitted_at": 1710872576671}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "status": "Inactive"}, "emitted_at": 1710872576672}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "status": "Inactive"}, "emitted_at": 1710872576672}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "status": "Inactive"}, "emitted_at": 1710872576673}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "status": "Active"}, "emitted_at": 1710872576673}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "status": "Inactive"}, "emitted_at": 1710872576673}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "status": "Inactive"}, "emitted_at": 1710872576674}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "status": "Active"}, "emitted_at": 1710872576674}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "status": "Inactive"}, "emitted_at": 1710872576675}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "status": "Inactive"}, "emitted_at": 1710872576675}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "status": "Active"}, "emitted_at": 1710872576675}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "status": "Inactive"}, "emitted_at": 1710872576676}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "status": "Inactive"}, "emitted_at": 1710872576676}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "status": "Active"}, "emitted_at": 1710872576676}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "status": "Inactive"}, "emitted_at": 1710872576676}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "status": "Inactive"}, "emitted_at": 1710872576677}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "status": "Inactive"}, "emitted_at": 1710872576677}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "status": "Inactive"}, "emitted_at": 1710872576677}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "status": "Active"}, "emitted_at": 1710872576677}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "status": "Active"}, "emitted_at": 1710872576678}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "status": "Inactive"}, "emitted_at": 1710872576678}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "status": "Inactive"}, "emitted_at": 1710872576678}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "status": "Inactive"}, "emitted_at": 1710872576678}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "status": "Inactive"}, "emitted_at": 1710872576679}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "status": "Active"}, "emitted_at": 1710872576679}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "status": "Inactive"}, "emitted_at": 1710872576679}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "status": "Inactive"}, "emitted_at": 1710872576679}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "status": "Inactive"}, "emitted_at": 1710872576679}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "status": "Inactive"}, "emitted_at": 1710872576680}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "status": "Active"}, "emitted_at": 1710872576680}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "status": "Active"}, "emitted_at": 1710872576680}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "status": "Inactive"}, "emitted_at": 1710872576680}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "status": "Inactive"}, "emitted_at": 1710872576681}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "status": "Inactive"}, "emitted_at": 1710872576681}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "status": "Inactive"}, "emitted_at": 1710872576681}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "status": "Active"}, "emitted_at": 1710872576681}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "status": "Inactive"}, "emitted_at": 1710872576681}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "status": "Inactive"}, "emitted_at": 1710872576682}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "status": "Inactive"}, "emitted_at": 1710872576682}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "status": "Inactive"}, "emitted_at": 1710872576682}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "status": "Active"}, "emitted_at": 1710872576682}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "status": "Inactive"}, "emitted_at": 1710872576682}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "status": "Active"}, "emitted_at": 1710872576683}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "status": "Active"}, "emitted_at": 1710872576683}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "status": "Inactive"}, "emitted_at": 1710872576683}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "status": "Inactive"}, "emitted_at": 1710872576683}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "status": "Inactive"}, "emitted_at": 1710872576683}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "status": "Active"}, "emitted_at": 1710872576684}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "status": "Inactive"}, "emitted_at": 1710872576684}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "status": "Inactive"}, "emitted_at": 1710872576684}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "status": "Inactive"}, "emitted_at": 1710872576684}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "status": "Inactive"}, "emitted_at": 1710872576684}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "status": "Active"}, "emitted_at": 1710872576685}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "status": "Active"}, "emitted_at": 1710872576685}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "status": "Inactive"}, "emitted_at": 1710872576685}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "status": "Active"}, "emitted_at": 1710872576702}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "status": "Inactive"}, "emitted_at": 1710872576702}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "status": "Active"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "status": "Active"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "status": "Inactive"}, "emitted_at": 1710872576703}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "status": "Inactive"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "status": "Inactive"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "status": "Active"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "status": "Active"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "status": "Inactive"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "status": "Active"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "status": "Inactive"}, "emitted_at": 1710872576704}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "status": "Inactive"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "status": "Inactive"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "status": "Inactive"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "status": "Inactive"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "status": "Active"}, "emitted_at": 1710872576705}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "status": "Active"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "status": "Inactive"}, "emitted_at": 1710872576706}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "status": "Active"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "status": "Inactive"}, "emitted_at": 1710872576707}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "status": "Active"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "status": "Active"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "status": "Active"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "status": "Active"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "status": "Active"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "status": "Inactive"}, "emitted_at": 1710872576708}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "status": "Inactive"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "status": "Active"}, "emitted_at": 1710872576709}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "status": "Inactive"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "status": "Active"}, "emitted_at": 1710872576710}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "status": "Inactive"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "status": "Active"}, "emitted_at": 1710872576711}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "status": "Active"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "status": "Inactive"}, "emitted_at": 1710872576712}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "status": "Active"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "status": "Inactive"}, "emitted_at": 1710872576713}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "status": "Inactive"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "status": "Active"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "status": "Inactive"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "status": "Inactive"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "status": "Inactive"}, "emitted_at": 1710872576714}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "status": "Inactive"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "status": "Inactive"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "status": "Inactive"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "status": "Inactive"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "status": "Active"}, "emitted_at": 1710872576715}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "status": "Active"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "status": "Inactive"}, "emitted_at": 1710872576716}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "status": "Active"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "status": "Active"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "status": "Active"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "status": "Inactive"}, "emitted_at": 1710872576717}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "status": "Inactive"}, "emitted_at": 1710872576718}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "status": "Inactive"}, "emitted_at": 1710872576719}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "status": "Inactive"}, "emitted_at": 1710872576720}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "status": "Inactive"}, "emitted_at": 1710872576721}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "status": "Active"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "status": "Inactive"}, "emitted_at": 1710872576722}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "status": "Active"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "status": "Inactive"}, "emitted_at": 1710872576723}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "status": "Active"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "status": "Inactive"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "status": "Active"}, "emitted_at": 1710872576724}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "status": "Inactive"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "status": "Active"}, "emitted_at": 1710872576725}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "status": "Inactive"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "status": "Active"}, "emitted_at": 1710872576726}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "status": "Active"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "status": "Inactive"}, "emitted_at": 1710872576727}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "status": "Active"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "status": "Inactive"}, "emitted_at": 1710872576728}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "status": "Inactive"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "status": "Active"}, "emitted_at": 1710872576729}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "status": "Inactive"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "status": "Active"}, "emitted_at": 1710872576730}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "status": "Inactive"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "status": "Active"}, "emitted_at": 1710872576731}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "status": "Inactive"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "status": "Active"}, "emitted_at": 1710872576732}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "status": "Active"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "status": "Inactive"}, "emitted_at": 1710872576733}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "status": "Inactive"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "status": "Active"}, "emitted_at": 1710872576734}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "status": "Inactive"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "status": "Active"}, "emitted_at": 1710872576735}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "status": "Active"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "status": "Inactive"}, "emitted_at": 1710872576736}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "status": "Active"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "status": "Inactive"}, "emitted_at": 1710872576737}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "status": "Active"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "status": "Inactive"}, "emitted_at": 1710872576738}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "status": "Inactive"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "status": "Active"}, "emitted_at": 1710872576739}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "status": "Active"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "status": "Inactive"}, "emitted_at": 1710872576740}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "status": "Active"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "status": "Inactive"}, "emitted_at": 1710872576741}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "status": "Inactive"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "status": "Active"}, "emitted_at": 1710872576742}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "status": "Active"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "status": "Inactive"}, "emitted_at": 1710872576743}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "status": "Active"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "status": "Inactive"}, "emitted_at": 1710872576744}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "status": "Inactive"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "status": "Active"}, "emitted_at": 1710872576745}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "status": "Active"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "status": "Inactive"}, "emitted_at": 1710872576746}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "status": "Active"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "status": "Inactive"}, "emitted_at": 1710872576747}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "status": "Active"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "status": "Inactive"}, "emitted_at": 1710872576748}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "status": "Inactive"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "status": "Active"}, "emitted_at": 1710872576749}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "status": "Active"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "status": "Inactive"}, "emitted_at": 1710872576750}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "status": "Active"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "status": "Inactive"}, "emitted_at": 1710872576751}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "status": "Inactive"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "status": "Inactive"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "status": "Inactive"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "status": "Inactive"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "status": "Active"}, "emitted_at": 1710872576752}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "status": "Active"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "status": "Inactive"}, "emitted_at": 1710872576753}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "status": "Active"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "status": "Inactive"}, "emitted_at": 1710872576754}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "status": "Inactive"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "status": "Inactive"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "status": "Inactive"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "status": "Inactive"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "status": "Inactive"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "status": "Active"}, "emitted_at": 1710872576755}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "status": "Inactive"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "status": "Inactive"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "status": "Inactive"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "status": "Inactive"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "status": "Active"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "status": "Inactive"}, "emitted_at": 1710872576756}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "status": "Active"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "status": "Inactive"}, "emitted_at": 1710872576757}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "status": "Active"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "status": "Inactive"}, "emitted_at": 1710872576758}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "status": "Active"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "status": "Inactive"}, "emitted_at": 1710872576759}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "status": "Inactive"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "status": "Inactive"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "status": "Active"}, "emitted_at": 1710872576760}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "status": "Inactive"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "status": "Inactive"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "status": "Inactive"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "status": "Inactive"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "status": "Active"}, "emitted_at": 1710872576761}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "status": "Inactive"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "status": "Inactive"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "status": "Active"}, "emitted_at": 1710872576762}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "status": "Inactive"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "status": "Inactive"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "status": "Inactive"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "status": "Inactive"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "status": "Active"}, "emitted_at": 1710872576763}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "status": "Inactive"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "status": "Active"}, "emitted_at": 1710872576764}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "status": "Inactive"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "status": "Inactive"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "status": "Inactive"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "status": "Active"}, "emitted_at": 1710872576765}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "status": "Active"}, "emitted_at": 1710872576766}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "status": "Active"}, "emitted_at": 1710872576767}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "status": "Active"}, "emitted_at": 1710872576768}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "status": "Inactive"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "status": "Active"}, "emitted_at": 1710872576769}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "status": "Active"}, "emitted_at": 1710872576770}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "status": "Active"}, "emitted_at": 1710872576771}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872576932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "terminationDate": "2022-01-05"}, "emitted_at": 1710872577857}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577858}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "terminationDate": "2021-02-12"}, "emitted_at": 1710872577858}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577859}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577859}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "terminationDate": "2019-12-01"}, "emitted_at": 1710872577859}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "terminationDate": "2023-02-10"}, "emitted_at": 1710872577860}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577860}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577861}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "terminationDate": "2020-08-14"}, "emitted_at": 1710872577861}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "terminationDate": "2020-09-18"}, "emitted_at": 1710872577861}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577862}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "terminationDate": "2021-04-23"}, "emitted_at": 1710872577864}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "terminationDate": "2024-03-15"}, "emitted_at": 1710872577864}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577864}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "terminationDate": "2021-07-08"}, "emitted_at": 1710872577864}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "terminationDate": "2021-05-14"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "terminationDate": "2022-03-04"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "terminationDate": "2021-02-05"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577865}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "terminationDate": "2020-08-07"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "terminationDate": "2022-04-01"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "terminationDate": "2021-01-29"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "terminationDate": "2020-01-05"}, "emitted_at": 1710872577866}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "terminationDate": "2023-09-22"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577867}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577868}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "terminationDate": "2020-01-01"}, "emitted_at": 1710872577868}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577868}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "terminationDate": "2023-10-01"}, "emitted_at": 1710872577868}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "terminationDate": "2020-03-06"}, "emitted_at": 1710872577868}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577869}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "terminationDate": "2024-02-16"}, "emitted_at": 1710872577869}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "terminationDate": "2022-02-11"}, "emitted_at": 1710872577869}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577869}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577869}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577870}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "terminationDate": "2020-04-03"}, "emitted_at": 1710872577871}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "terminationDate": "2021-08-18"}, "emitted_at": 1710872577871}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577871}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577871}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "terminationDate": "2022-10-21"}, "emitted_at": 1710872577871}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "terminationDate": "2020-02-21"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "terminationDate": "2022-05-01"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "terminationDate": "2020-01-10"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "terminationDate": "2023-05-15"}, "emitted_at": 1710872577872}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "terminationDate": "2024-01-01"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "terminationDate": "2022-10-21"}, "emitted_at": 1710872577873}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "terminationDate": "2024-01-05"}, "emitted_at": 1710872577874}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577874}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "terminationDate": "2022-03-18"}, "emitted_at": 1710872577874}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "terminationDate": "2023-01-13"}, "emitted_at": 1710872577874}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "terminationDate": "2020-10-30"}, "emitted_at": 1710872577875}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "terminationDate": "2022-03-11"}, "emitted_at": 1710872577875}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "terminationDate": "2022-03-31"}, "emitted_at": 1710872577876}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "terminationDate": "2023-11-15"}, "emitted_at": 1710872577876}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "terminationDate": "2021-10-01"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "terminationDate": "2019-10-14"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "terminationDate": "2022-08-23"}, "emitted_at": 1710872577877}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "terminationDate": "2022-05-23"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "terminationDate": "2021-08-27"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "terminationDate": "2020-04-15"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "terminationDate": "2020-11-20"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "terminationDate": "2023-04-28"}, "emitted_at": 1710872577878}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "terminationDate": "2021-02-01"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "terminationDate": "2021-04-01"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "terminationDate": "2021-08-31"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "terminationDate": "2021-04-16"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "terminationDate": "2021-04-14"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "terminationDate": "2020-03-20"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "terminationDate": "2022-07-22"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "terminationDate": "2022-09-02"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "terminationDate": "2020-07-15"}, "emitted_at": 1710872577881}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "terminationDate": "2022-09-23"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "terminationDate": "2022-01-07"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "terminationDate": "2021-01-19"}, "emitted_at": 1710872577882}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "terminationDate": "2021-09-10"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "terminationDate": "2021-10-12"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "terminationDate": "2022-08-09"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "terminationDate": "2020-02-21"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "terminationDate": "2020-11-13"}, "emitted_at": 1710872577883}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "terminationDate": "2021-04-02"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "terminationDate": "2021-10-22"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "terminationDate": "2020-03-13"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "terminationDate": "2021-05-21"}, "emitted_at": 1710872577884}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "terminationDate": "2023-04-19"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "terminationDate": "2021-05-21"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "terminationDate": "2021-09-24"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "terminationDate": "2024-02-16"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "terminationDate": "2021-03-19"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "terminationDate": "2021-05-14"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "terminationDate": "2020-06-30"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "terminationDate": "2021-07-31"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "terminationDate": "2021-03-04"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "terminationDate": "2021-07-21"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "terminationDate": "2019-11-29"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "terminationDate": "2021-08-31"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "terminationDate": "2022-02-22"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "terminationDate": "2021-01-31"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "terminationDate": "2020-04-30"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "terminationDate": "2021-09-23"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "terminationDate": "2020-04-19"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "terminationDate": "2021-12-31"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "terminationDate": "2019-12-31"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "terminationDate": "2020-08-14"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "terminationDate": "2020-10-09"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "terminationDate": "2019-12-31"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "terminationDate": "2023-01-24"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "terminationDate": "2020-11-13"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "terminationDate": "2023-05-01"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "terminationDate": "2021-09-17"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "terminationDate": "2020-08-28"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "terminationDate": "2022-04-30"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "terminationDate": "2020-06-09"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "terminationDate": "2020-08-31"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "terminationDate": "2019-11-15"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "terminationDate": "2019-10-31"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "terminationDate": "2021-07-02"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "terminationDate": "2021-03-07"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "terminationDate": "2020-02-11"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "terminationDate": "2020-09-30"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "terminationDate": "2020-08-31"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "terminationDate": "2021-04-30"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "terminationDate": "2023-11-24"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "terminationDate": "2021-06-30"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "terminationDate": "2020-02-28"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "terminationDate": "2023-01-18"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "terminationDate": "2022-01-21"}, "emitted_at": 1710872577891}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "terminationDate": "2019-11-05"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "terminationDate": "2022-05-06"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "terminationDate": "2014-08-25"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "terminationDate": "2016-04-01"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "terminationDate": "2014-11-21"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "terminationDate": "2013-12-31"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "terminationDate": "2014-01-02"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "terminationDate": "2013-11-01"}, "emitted_at": 1710872577892}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "terminationDate": "2015-04-16"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "terminationDate": "2013-07-12"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "terminationDate": "2014-09-30"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "terminationDate": "2015-08-07"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "terminationDate": "2014-09-30"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "terminationDate": "2014-01-07"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "terminationDate": "2014-02-04"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "terminationDate": "2014-10-13"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "terminationDate": "2014-11-14"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "terminationDate": "2017-05-15"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "terminationDate": "2015-11-02"}, "emitted_at": 1710872577893}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "terminationDate": "2019-06-14"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "terminationDate": "2018-10-01"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "terminationDate": "2014-09-14"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "terminationDate": "2018-05-04"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "terminationDate": "2014-09-14"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "terminationDate": "2016-07-22"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "terminationDate": "2015-10-16"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "terminationDate": "2014-10-31"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "terminationDate": "2016-02-26"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "terminationDate": "2015-12-11"}, "emitted_at": 1710872577894}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "terminationDate": "2018-04-13"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "terminationDate": "2019-10-14"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "terminationDate": "2016-04-22"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "terminationDate": "2016-03-04"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "terminationDate": "2015-10-09"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "terminationDate": "2016-09-21"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "terminationDate": "2015-09-02"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "terminationDate": "2017-11-28"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "terminationDate": "2016-12-09"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "terminationDate": "2019-06-03"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "terminationDate": "2017-09-01"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "terminationDate": "2018-06-15"}, "emitted_at": 1710872577895}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "terminationDate": "2018-04-09"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "terminationDate": "2016-11-17"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "terminationDate": "2017-09-15"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "terminationDate": "2016-07-15"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "terminationDate": "2018-08-27"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "terminationDate": "2016-12-19"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "terminationDate": "2017-04-20"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "terminationDate": "2017-03-06"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "terminationDate": "2016-12-15"}, "emitted_at": 1710872577896}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "terminationDate": "2017-09-15"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "terminationDate": "2017-10-15"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "terminationDate": "2019-06-28"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "terminationDate": "2017-12-31"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "terminationDate": "2018-09-17"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "terminationDate": "2017-11-14"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "terminationDate": "2017-08-11"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "terminationDate": "2017-08-11"}, "emitted_at": 1710872577897}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "terminationDate": "2017-08-07"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "terminationDate": "2017-09-26"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "terminationDate": "2018-08-31"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "terminationDate": "2017-10-20"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "terminationDate": "2019-09-11"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "terminationDate": "2018-09-04"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "terminationDate": "2018-09-30"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "terminationDate": "2018-12-28"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "terminationDate": "2018-12-28"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "terminationDate": "2018-10-10"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "terminationDate": "2019-05-01"}, "emitted_at": 1710872577898}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "terminationDate": "2019-06-07"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "terminationDate": "2019-01-15"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "terminationDate": "2019-08-16"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "terminationDate": "2019-10-12"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "terminationDate": "2016-03-12"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "terminationDate": "2014-03-31"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "terminationDate": "2018-01-26"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "terminationDate": "2018-07-23"}, "emitted_at": 1710872577899}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "terminationDate": "2012-04-30"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "terminationDate": "2016-05-31"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "terminationDate": "2015-09-30"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "terminationDate": "2013-10-31"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "terminationDate": "2019-03-11"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "terminationDate": "2014-12-01"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "terminationDate": "2013-11-17"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "terminationDate": "2015-01-31"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "terminationDate": "2014-06-30"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "terminationDate": "2018-01-14"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "terminationDate": "2015-03-18"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577900}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "terminationDate": "2015-02-03"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "terminationDate": "2016-11-30"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "terminationDate": "2017-02-24"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "terminationDate": "2017-10-31"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "terminationDate": "2017-01-22"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "terminationDate": "2017-07-03"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "terminationDate": "2015-08-31"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "terminationDate": "2017-11-30"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "terminationDate": "2018-03-23"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577901}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "terminationDate": "2016-06-22"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "terminationDate": "2018-04-30"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "terminationDate": "2017-09-20"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "terminationDate": "2018-07-10"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "terminationDate": "2019-09-30"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "terminationDate": "2017-09-30"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "terminationDate": "2017-09-30"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "terminationDate": "2018-12-14"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "terminationDate": "2017-04-30"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "terminationDate": "2017-08-31"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "terminationDate": "2017-08-31"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577902}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "terminationDate": "2018-12-18"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "terminationDate": "2019-04-30"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "terminationDate": "2018-02-09"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "terminationDate": "2018-02-16"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "terminationDate": "2017-12-31"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "terminationDate": "2019-09-24"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "terminationDate": "2018-07-30"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "terminationDate": "2018-11-13"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "terminationDate": "2019-07-05"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "terminationDate": "2018-08-31"}, "emitted_at": 1710872577903}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "terminationDate": "2018-07-17"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "terminationDate": "2018-07-04"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "terminationDate": "2018-06-22"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "terminationDate": "2019-07-08"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "terminationDate": "2018-08-10"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "terminationDate": "2018-08-17"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "terminationDate": "2019-06-07"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "terminationDate": "2019-07-06"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "terminationDate": "2019-08-16"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "terminationDate": "2021-03-12"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "terminationDate": "2021-12-03"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "terminationDate": "2020-12-09"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "terminationDate": "2020-03-13"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "terminationDate": "2022-07-05"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "terminationDate": "2020-02-03"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "terminationDate": "2020-02-03"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "terminationDate": "2023-02-13"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "terminationDate": "2022-02-17"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "terminationDate": "2022-12-26"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "terminationDate": "2022-09-01"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "terminationDate": "2020-07-15"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "terminationDate": "2021-06-15"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "terminationDate": "2020-07-09"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "terminationDate": "2020-04-01"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "terminationDate": "2024-01-05"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "terminationDate": "2020-06-22"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "terminationDate": "2022-09-21"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "terminationDate": "2022-02-04"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "terminationDate": "2024-02-11"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577909}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "terminationDate": "2023-09-11"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "terminationDate": "2020-04-28"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "terminationDate": "2021-04-16"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "terminationDate": "2021-09-30"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "terminationDate": "2023-06-21"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "terminationDate": "2022-03-31"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "terminationDate": "2022-08-29"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "terminationDate": "2020-10-21"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "terminationDate": "2020-07-31"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "terminationDate": "2023-07-31"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "terminationDate": "2020-09-01"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "terminationDate": "2023-08-04"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "terminationDate": "2022-04-14"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "terminationDate": "2023-10-10"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "terminationDate": "2021-07-01"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577912}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "terminationDate": "2021-07-26"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "terminationDate": "2023-09-29"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "terminationDate": "2020-12-10"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "terminationDate": "2021-03-31"}, "emitted_at": 1710872577913}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "terminationDate": "2021-03-09"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "terminationDate": "2022-01-25"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "terminationDate": "2021-03-31"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "terminationDate": "2022-03-25"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "terminationDate": "2022-09-12"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "terminationDate": "2020-12-22"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "terminationDate": "2021-10-31"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "terminationDate": "2020-12-18"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "terminationDate": "2022-05-12"}, "emitted_at": 1710872577915}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "terminationDate": "2021-03-19"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577916}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "terminationDate": "2024-01-01"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "terminationDate": "2021-07-16"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "terminationDate": "2021-06-11"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "terminationDate": "2021-07-01"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "terminationDate": "2022-03-18"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577917}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "terminationDate": "2021-10-01"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "terminationDate": "2022-10-10"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "terminationDate": "2022-10-14"}, "emitted_at": 1710872577918}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "terminationDate": "2024-03-11"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "terminationDate": "2022-08-26"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "terminationDate": "2022-05-13"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "terminationDate": "2022-12-23"}, "emitted_at": 1710872577919}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "terminationDate": "2022-05-02"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "terminationDate": "2022-05-20"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "terminationDate": "2023-09-15"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "terminationDate": "2022-08-18"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "terminationDate": "2023-03-24"}, "emitted_at": 1710872577920}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "terminationDate": "2023-11-22"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "terminationDate": "2021-11-08"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "terminationDate": "2022-10-11"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "terminationDate": "2021-09-09"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "terminationDate": "2021-09-30"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "terminationDate": "2021-09-02"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "terminationDate": "2021-07-16"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "terminationDate": "2022-06-24"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "terminationDate": "2021-06-25"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "terminationDate": "2022-03-29"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "terminationDate": "2023-11-17"}, "emitted_at": 1710872577923}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "terminationDate": "2021-09-21"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "terminationDate": "2022-08-29"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "terminationDate": "2022-07-22"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "terminationDate": "2022-02-28"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "terminationDate": "2021-10-15"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "terminationDate": "2022-02-04"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "terminationDate": "2022-04-19"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "terminationDate": "2023-08-09"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "terminationDate": "2023-07-20"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "terminationDate": "2022-07-01"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "terminationDate": "2023-02-16"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "terminationDate": "2022-03-23"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "terminationDate": "2023-03-29"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "terminationDate": "2024-01-24"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "terminationDate": "2022-11-20"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "terminationDate": "2024-02-01"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "terminationDate": "2021-10-29"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "terminationDate": "2022-07-05"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "terminationDate": "2021-10-27"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "terminationDate": "2024-01-15"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "terminationDate": "2022-10-17"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "terminationDate": "2022-04-15"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "terminationDate": "2022-01-19"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "terminationDate": "2021-12-30"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "terminationDate": "2023-11-24"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "terminationDate": "2022-01-17"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "terminationDate": "2023-04-25"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "terminationDate": "2022-12-09"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "terminationDate": "2022-11-04"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "terminationDate": "2024-02-09"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "terminationDate": "2022-03-03"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "terminationDate": "2024-01-02"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "terminationDate": "2024-01-15"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "terminationDate": "2022-09-16"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "terminationDate": "2024-01-12"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "terminationDate": "2023-05-26"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "terminationDate": "2024-02-13"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "terminationDate": "2023-04-14"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "terminationDate": "2022-01-11"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "terminationDate": "2023-05-19"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "terminationDate": "2023-01-13"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "terminationDate": "2022-07-11"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "terminationDate": "2023-12-06"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "terminationDate": "2023-07-28"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "terminationDate": "2024-02-18"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "terminationDate": "2023-03-01"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "terminationDate": "2022-09-23"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577933}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "terminationDate": "2023-10-18"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "terminationDate": "2023-01-20"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "terminationDate": "2023-08-25"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "terminationDate": "2023-11-03"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "terminationDate": "2024-01-12"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "terminationDate": "2024-01-24"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "terminationDate": "2022-07-11"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "terminationDate": "2022-12-09"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "terminationDate": "2023-04-21"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "terminationDate": "2023-05-18"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "terminationDate": "2022-08-26"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "terminationDate": "2022-08-09"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "terminationDate": "2022-06-29"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "terminationDate": "2023-05-12"}, "emitted_at": 1710872577936}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "terminationDate": "2023-05-05"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "terminationDate": "2022-11-30"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "terminationDate": "2023-06-23"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "terminationDate": "2022-05-05"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "terminationDate": "2024-01-31"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "terminationDate": "2022-10-31"}, "emitted_at": 1710872577937}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "terminationDate": "2022-09-02"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "terminationDate": "2023-10-06"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "terminationDate": "2024-02-12"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "terminationDate": "2022-12-16"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "terminationDate": "2022-12-16"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "terminationDate": "2023-02-17"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "terminationDate": "2022-09-06"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "terminationDate": "2024-02-23"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "terminationDate": "2023-08-01"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "terminationDate": "2023-07-03"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "terminationDate": "2022-09-06"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "terminationDate": "2023-09-28"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "terminationDate": "2022-09-09"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "terminationDate": "2023-02-10"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "terminationDate": "2023-08-08"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "terminationDate": "2022-11-30"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "terminationDate": "2023-05-26"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "terminationDate": "2023-02-23"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "terminationDate": "2022-08-21"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "terminationDate": "2023-12-07"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "terminationDate": "2023-10-30"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "terminationDate": "2024-02-19"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "terminationDate": "2023-05-09"}, "emitted_at": 1710872577942}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "terminationDate": "2023-07-21"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "terminationDate": "2023-02-03"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "terminationDate": "2023-04-21"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "terminationDate": "2023-03-13"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "terminationDate": "2023-11-17"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "terminationDate": "2024-02-13"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "terminationDate": "2023-08-16"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "terminationDate": "2023-08-15"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "terminationDate": "2023-03-23"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "terminationDate": "2023-03-23"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "terminationDate": "2023-10-09"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "terminationDate": "2023-11-15"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "terminationDate": "2023-09-05"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "terminationDate": "2023-08-16"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "terminationDate": "2023-04-25"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "terminationDate": "2023-09-07"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "terminationDate": "2023-08-10"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "terminationDate": "2023-02-01"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "terminationDate": "2023-02-01"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "terminationDate": "2022-12-01"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "terminationDate": "2022-11-01"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "terminationDate": "2023-12-27"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "terminationDate": "2023-06-13"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "terminationDate": "2024-01-19"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "terminationDate": "2023-08-25"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "terminationDate": "2023-09-22"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "terminationDate": "2023-08-23"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "terminationDate": "2023-08-10"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "terminationDate": "2023-08-11"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "terminationDate": "2024-03-04"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "terminationDate": "2023-10-17"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "terminationDate": "2023-10-13"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "terminationDate": "2023-08-31"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577949}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "terminationDate": "2024-01-26"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "terminationDate": "2023-08-21"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "terminationDate": "2024-01-31"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "terminationDate": "2023-09-13"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "terminationDate": "2024-01-26"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "terminationDate": "2024-01-18"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "terminationDate": "2024-01-19"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "terminationDate": "2023-12-01"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "terminationDate": "2023-12-15"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "terminationDate": "2024-02-23"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} +{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577958}} +{"type": "LOG", "log": {"level": "INFO", "message": "Read 10741 records from custom_reports_stream stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as STOPPED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872577958.311, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "COMPLETE"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing custom_reports_stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_tables_stream 0:00:00.390416"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as STARTED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578315.8481, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "STARTED"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: meta_fields_stream "}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as RUNNING"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578586.349, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "RUNNING"}}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4967, "name": "% Sales Commissions", "type": "textarea"}, "emitted_at": 1710872578585}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4968, "name": "% Variable Bonus", "type": "textarea"}, "emitted_at": 1710872578586}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4641, "name": "2022 Annual Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578587}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4641.1", "name": "2022 Annual Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578587}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4740, "name": "2022 SKO 1-INTRODUCTION - Completed", "type": "date"}, "emitted_at": 1710872578587}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4740.2", "name": "2022 SKO 1-INTRODUCTION - Due Date", "type": "date"}, "emitted_at": 1710872578587}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4736, "name": "2022 SKO 2-COREDB - Completed", "type": "date"}, "emitted_at": 1710872578587}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4736.2", "name": "2022 SKO 2-COREDB - Due Date", "type": "date"}, "emitted_at": 1710872578588}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4737, "name": "2022 SKO 3-CLOUD - Completed", "type": "date"}, "emitted_at": 1710872578588}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4737.2", "name": "2022 SKO 3-CLOUD - Due Date", "type": "date"}, "emitted_at": 1710872578588}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4741, "name": "2022 SKO 4-DATA SCIENCE - Completed", "type": "date"}, "emitted_at": 1710872578589}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4741.2", "name": "2022 SKO 4-DATA SCIENCE - Due Date", "type": "date"}, "emitted_at": 1710872578589}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4738, "name": "2022 SKO 5-GO TO MARKET - Completed", "type": "date"}, "emitted_at": 1710872578589}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4738.2", "name": "2022 SKO 5-GO TO MARKET - Due Date", "type": "date"}, "emitted_at": 1710872578590}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4739, "name": "2022 SKO 6-TECHNICAL - Completed", "type": "date"}, "emitted_at": 1710872578590}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4739.2", "name": "2022 SKO 6-TECHNICAL - Due Date", "type": "date"}, "emitted_at": 1710872578590}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4751, "name": "2022 SKO 7-NEW HIRE Aura Enterprise Customer Pursuit - Completed", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4751.2", "name": "2022 SKO 7-NEW HIRE Aura Enterprise Customer Pursuit - Due Date", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4752, "name": "2022 SKO 7-NEW HIRE Competitive Overview - Completed", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4752.2", "name": "2022 SKO 7-NEW HIRE Competitive Overview - Due Date", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4753, "name": "2022 SKO 7-NEW HIRE Neo4j Company Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4753.2", "name": "2022 SKO 7-NEW HIRE Neo4j Company Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578591}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4754, "name": "2022 SKO 7-NEW HIRE Neo4j Product Vision - Completed", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4754.2", "name": "2022 SKO 7-NEW HIRE Neo4j Product Vision - Due Date", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4755, "name": "2022 SKO 7-NEW HIRE Neo4j Services - Completed", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4755.2", "name": "2022 SKO 7-NEW HIRE Neo4j Services - Due Date", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4748, "name": "2022 SKO 7-NEW HIRE Objection Handling Session - Completed", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4748.2", "name": "2022 SKO 7-NEW HIRE Objection Handling Session - Due Date", "type": "date"}, "emitted_at": 1710872578592}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4756, "name": "2022 SKO 7-NEW HIRE Product Management - Aura Briefing - Completed", "type": "date"}, "emitted_at": 1710872578593}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4756.2", "name": "2022 SKO 7-NEW HIRE Product Management - Aura Briefing - Due Date", "type": "date"}, "emitted_at": 1710872578593}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4757, "name": "2022 SKO 7-NEW HIRE Product Management - Core DB - Completed", "type": "date"}, "emitted_at": 1710872578593}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4757.2", "name": "2022 SKO 7-NEW HIRE Product Management - Core DB - Due Date", "type": "date"}, "emitted_at": 1710872578593}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4758, "name": "2022 SKO 7-NEW HIRE Product Management - Visualization briefing - Completed", "type": "date"}, "emitted_at": 1710872578593}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4758.2", "name": "2022 SKO 7-NEW HIRE Product Management - Visualization briefing - Due Date", "type": "date"}, "emitted_at": 1710872578594}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4746, "name": "2022 SKO 7-NEW HIRE Sales Tools Training - Completed", "type": "date"}, "emitted_at": 1710872578595}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4746.2", "name": "2022 SKO 7-NEW HIRE Sales Tools Training - Due Date", "type": "date"}, "emitted_at": 1710872578595}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4742, "name": "2022 SKO 7-NEW HIRE Vision for 2020 - 2030 - Completed", "type": "date"}, "emitted_at": 1710872578595}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4742.2", "name": "2022 SKO 7-NEW HIRE Vision for 2020 - 2030 - Due Date", "type": "date"}, "emitted_at": 1710872578596}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4744, "name": "2022 SKO 7-NEW HIRE Voice of the Customer - Manulife - Completed", "type": "date"}, "emitted_at": 1710872578596}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4744.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer - Manulife - Due Date", "type": "date"}, "emitted_at": 1710872578596}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4743, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Bank of Montreal - Completed", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4743.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Bank of Montreal - Due Date", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4749, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Deloitte / Allianz - Completed", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4749.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Deloitte / Allianz - Due Date", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4750, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Novo Nordisk - Completed", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4750.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Novo Nordisk - Due Date", "type": "date"}, "emitted_at": 1710872578597}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4745, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Volvo - Completed", "type": "date"}, "emitted_at": 1710872578598}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4745.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Volvo - Due Date", "type": "date"}, "emitted_at": 1710872578598}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4747, "name": "2022 SKO 7-NEW HIRE Welcome and Apiax Customer Session - Completed", "type": "date"}, "emitted_at": 1710872578598}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4747.2", "name": "2022 SKO 7-NEW HIRE Welcome and Apiax Customer Session - Due Date", "type": "date"}, "emitted_at": 1710872578598}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4175, "name": "Accrual Level Start Date", "type": "date"}, "emitted_at": 1710872578598}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 8, "name": "Address Line 1", "type": "text", "alias": "address1"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 9, "name": "Address Line 2", "type": "text", "alias": "address2"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5001, "name": "Agency Name", "type": "text"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4911, "name": "Allergies", "type": "text", "alias": "customAllergies"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.8", "name": "Annual Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.6", "name": "Annual Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578599}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.3", "name": "Annual Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.7", "name": "Annual Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.5", "name": "Annual Leave (Australia) - Days scheduled", "type": "int"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.4", "name": "Annual Leave (Australia) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.2", "name": "Annual Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4881, "name": "Annual Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4884, "name": "Annual Leave (Australia) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578600}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4884.1", "name": "Annual Leave (Australia) policy - Started on", "type": "date"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.8", "name": "Annual Leave (India) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.6", "name": "Annual Leave (India) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.3", "name": "Annual Leave (India) - Available Balance", "type": "int"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.7", "name": "Annual Leave (India) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.5", "name": "Annual Leave (India) - Days scheduled", "type": "int"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.4", "name": "Annual Leave (India) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578601}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.2", "name": "Annual Leave (India) - Policy", "type": "text"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4894, "name": "Annual Leave (India) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4897, "name": "Annual Leave (India) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4897.1", "name": "Annual Leave (India) policy - Started on", "type": "date"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.8", "name": "Annual Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.6", "name": "Annual Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.3", "name": "Annual Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.7", "name": "Annual Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578602}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.5", "name": "Annual Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.4", "name": "Annual Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.2", "name": "Annual Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4598, "name": "Annual Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5002, "name": "Anticipated End Date", "type": "date"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4507, "name": "Asset category", "type": "list"}, "emitted_at": 1710872578603}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4508, "name": "Asset description", "type": "text"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4849, "name": "A Testing Talent - not a course - Completed", "type": "date"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4849.2", "name": "A Testing Talent - not a course - Due Date", "type": "date"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4659, "name": "Aura Consumption Based Pricing - 49min - Completed", "type": "date"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4659.2", "name": "Aura Consumption Based Pricing - 49min - Due Date", "type": "date"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4793, "name": "Aura Role", "type": "text", "alias": "customAuraRole3"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5112, "name": "Aura Role", "type": "list"}, "emitted_at": 1710872578604}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5111, "name": "Aura Role Indicator", "type": "list"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4863, "name": "Benchmark Code", "type": "text"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1502, "name": "Benefit History", "type": "benefit_history"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 6, "name": "Birth Date", "type": "date", "alias": "dateOfBirth"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4485, "name": "Bonus Reason", "type": "list"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.8", "name": "Carer's Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.6", "name": "Carer's Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578605}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.3", "name": "Carer's Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578606}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.7", "name": "Carer's Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578606}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.5", "name": "Carer's Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578606}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.4", "name": "Carer's Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578606}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.2", "name": "Carer's Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578606}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4945, "name": "Carer's Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5113, "name": "Changed By", "type": "list"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5114, "name": "Change Reason", "type": "text"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.8", "name": "Childcare Leave (APAC) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.6", "name": "Childcare Leave (APAC) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.3", "name": "Childcare Leave (APAC) - Available Balance", "type": "int"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.7", "name": "Childcare Leave (APAC) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578607}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.5", "name": "Childcare Leave (APAC) - Days scheduled", "type": "int"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.4", "name": "Childcare Leave (APAC) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.2", "name": "Childcare Leave (APAC) - Policy", "type": "text"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4992, "name": "Childcare Leave (APAC) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4993, "name": "Childcare Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4993.1", "name": "Childcare Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4768, "name": "CI Boot Camp: Tool up to Win! - Completed", "type": "date"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4768.2", "name": "CI Boot Camp: Tool up to Win! - Due Date", "type": "date"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4566, "name": "Citizen Service Number/BSN (NL employees only)", "type": "text", "alias": "customCitizenServiceNumber/BSN(NLemployeesonly)"}, "emitted_at": 1710872578608}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 10, "name": "City", "type": "text", "alias": "city"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4667, "name": "Cloud Managed Services & AgilePS - 26min - Completed", "type": "date"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4667.2", "name": "Cloud Managed Services & AgilePS - 26min - Due Date", "type": "date"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4860, "name": "Comments", "type": "textarea"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5067, "name": "Comments - Non-Employee", "type": "textarea"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4021, "name": "Compensation: Date", "type": "date", "alias": "payRateEffectiveDate"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4017, "name": "Compensation Change Reason", "type": "list", "alias": "payChangeReason"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4045, "name": "Compensation comments", "type": "textarea"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.1", "name": "Completed - Category", "type": "list"}, "emitted_at": 1710872578609}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.2", "name": "Completed - Completed", "type": "date"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.3", "name": "Completed - Cost", "type": "currency"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.4", "name": "Completed - Credits", "type": "int"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.5", "name": "Completed - Hours", "type": "int"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.6", "name": "Completed - Instructor", "type": "text"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.7", "name": "Completed - Notes", "type": "text"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4020, "name": "Completed - Title", "type": "training_type"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4913, "name": "Corporate Career Path", "type": "list"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4960, "name": "Corporate Career Path", "type": "text", "alias": "customCorporateCareerPath1"}, "emitted_at": 1710872578610}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4852, "name": "Corporate Job Level", "type": "list"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4959, "name": "Corporate Job level", "type": "text", "alias": "customCorporateJoblevel"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4856, "name": "Corporate Title", "type": "list"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4961, "name": "Corporate Title", "type": "text", "alias": "customCorporateTitle1"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3991, "name": "Country", "type": "country", "alias": "country"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4725, "name": "Covered CS Accounts - Completed", "type": "date"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4725.2", "name": "Covered CS Accounts - Due Date", "type": "date"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4643, "name": "CPR-number (DK employees only)", "type": "text", "alias": "customCPR-number(DKemployeesonly)"}, "emitted_at": 1710872578611}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4602, "name": "Custom Gender Identity", "type": "text", "alias": "genderIdentityCustom"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4654, "name": "Daily Video Message - 29 May 2020: \"Surprises\" - Completed", "type": "date"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4654.2", "name": "Daily Video Message - 29 May 2020: \"Surprises\" - Due Date", "type": "date"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4510, "name": "Date loaned", "type": "date"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4511, "name": "Date returned", "type": "date"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4, "name": "Department", "type": "list", "alias": "department"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1928, "name": "Dependent Birth Date", "type": "date"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1931, "name": "Dependent City", "type": "text"}, "emitted_at": 1710872578612}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3992, "name": "Dependent Country", "type": "country"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1923, "name": "Dependent First Name", "type": "text"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4301, "name": "Dependent Full-Time Student", "type": "checkbox"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1927, "name": "Dependent Gender", "type": "gender"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1935, "name": "Dependent Home Phone", "type": "phone"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1924, "name": "Dependent Last Name", "type": "text"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1925, "name": "Dependent Middle Name", "type": "text"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1926, "name": "Dependent Relationship", "type": "relationship"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1933, "name": "Dependent SSN", "type": "ssn"}, "emitted_at": 1710872578613}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1932, "name": "Dependent State", "type": "state"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1929, "name": "Dependent Street 1", "type": "text"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1930, "name": "Dependent Street 2", "type": "text"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4300, "name": "Dependent US Citizen", "type": "checkbox"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1934, "name": "Dependent ZIP", "type": "text"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1355, "name": "Division", "type": "list", "alias": "division"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4498, "name": "Division #", "type": "list"}, "emitted_at": 1710872578614}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4776, "name": "Division Number", "type": "text", "alias": "customDivisionNumber"}, "emitted_at": 1710872578615}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4647, "name": "DNI Number (ES employees only)", "type": "text", "alias": "customDNINumber(ESemployeesonly)"}, "emitted_at": 1710872578615}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4650, "name": "E-staff", "type": "employee"}, "emitted_at": 1710872578615}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4792, "name": "E-Staff", "type": "text", "alias": "customE-Staff1"}, "emitted_at": 1710872578615}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 157, "name": "EEO Job Category", "type": "list", "alias": "eeo"}, "emitted_at": 1710872578615}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5110, "name": "Effective Date", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4497, "name": "Effective Date - Additional Job Information", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5104, "name": "Effective Date - Contract Exceptions", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4855, "name": "Effective Date - Job Leveling", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4999, "name": "Effective Date - Non-Employee", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4965, "name": "Effective Date - Sales", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4606, "name": "Effective Date - Stock Options", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4315, "name": "Eligible For Re-hire", "type": "list"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4671, "name": "EMEA Professional Services briefing - 27min - Completed", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4671.2", "name": "EMEA Professional Services briefing - 27min - Due Date", "type": "date"}, "emitted_at": 1710872578616}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 692, "name": "Emergency Contact City", "type": "text"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3993, "name": "Emergency Contact Country", "type": "country"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2123, "name": "Emergency Contact Email", "type": "email"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 159, "name": "Emergency Contact Home Phone", "type": "phone"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 693, "name": "Emergency Contact Mobile Phone", "type": "phone"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 158, "name": "Emergency Contact Name", "type": "text"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4289, "name": "Emergency Contact Primary", "type": "checkbox"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 160, "name": "Emergency Contact Relationship", "type": "list"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4299, "name": "Emergency Contacts", "type": "employee_contacts"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 690, "name": "Emergency Contact State", "type": "state"}, "emitted_at": 1710872578617}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 691, "name": "Emergency Contact Street 1", "type": "text"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2124, "name": "Emergency Contact Street 2", "type": "text"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4063, "name": "Emergency Contact Work Ext", "type": "text"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4044, "name": "Emergency Contact Work Phone", "type": "phone"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 689, "name": "Emergency Contact ZIP Code", "type": "text"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 636, "name": "Employee #", "type": "employee_number", "alias": "employeeNumber"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 16, "name": "Employment Status", "type": "list", "alias": "employmentHistoryStatus"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "16.1", "name": "Employment Status - FTE", "type": "list", "alias": "employmentHistoryStatus"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4302, "name": "Employment Status: ACA Full-Time", "type": "aca_status", "alias": "acaStatus"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1936, "name": "Employment Status: Date", "type": "date", "alias": "employeeStatusDate"}, "emitted_at": 1710872578618}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4046, "name": "Employment status comments", "type": "textarea"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4500, "name": "Entity", "type": "list"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4791, "name": "Entity", "type": "text", "alias": "customEntity1"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4655, "name": "Episode 2: Capitalizing on Opportunities - Completed", "type": "date"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4655.2", "name": "Episode 2: Capitalizing on Opportunities - Due Date", "type": "date"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1037, "name": "Ethnicity", "type": "list", "alias": "ethnicity"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1, "name": "First Name", "type": "text", "alias": "firstName"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4406, "name": "Fiscal Code (IT employees only)", "type": "text", "alias": "customFiscalcodeItaly"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4670, "name": "GDSL product briefing - 30min - Completed", "type": "date"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4670.2", "name": "GDSL product briefing - 30min - Due Date", "type": "date"}, "emitted_at": 1710872578619}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4876, "name": "GDSML - The market knows what Graph Data Science is and what we mean by it. - Completed", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4876.2", "name": "GDSML - The market knows what Graph Data Science is and what we mean by it. - Due Date", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4878, "name": "GDSML - What are some benefits of fully managed over self managed - Completed", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4878.2", "name": "GDSML - What are some benefits of fully managed over self managed - Due Date", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4879, "name": "GDSML - What are the commercial products we offer - Completed", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4879.2", "name": "GDSML - What are the commercial products we offer - Due Date", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4872, "name": "GDSML - What are the most important value messages when pitching Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4872.2", "name": "GDSML - What are the most important value messages when pitching Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4873, "name": "GDSML - What are usually bad fits for Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4873.2", "name": "GDSML - What are usually bad fits for Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578620}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4877, "name": "GDSML - What commercial variants do we offer - Completed", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4877.2", "name": "GDSML - What commercial variants do we offer - Due Date", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4869, "name": "GDSML - What do we want data science managers to do - Completed", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4869.2", "name": "GDSML - What do we want data science managers to do - Due Date", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4868, "name": "GDSML - What do we want data scientists to do - Completed", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4868.2", "name": "GDSML - What do we want data scientists to do - Due Date", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4866, "name": "GDSML - What is always part of the commercial offering - Completed", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4866.2", "name": "GDSML - What is always part of the commercial offering - Due Date", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4875, "name": "GDSML - What is not an alternative to Neo4j Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4875.2", "name": "GDSML - What is not an alternative to Neo4j Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578621}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4871, "name": "GDSML - Where can you sell Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4871.2", "name": "GDSML - Where can you sell Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4865, "name": "GDSML - Which products do we sell - Completed", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4865.2", "name": "GDSML - Which products do we sell - Due Date", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4870, "name": "GDSML - Who are the most important stakeholders in any Graph Data Science purchase process - Completed", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4870.2", "name": "GDSML - Who are the most important stakeholders in any Graph Data Science purchase process - Due Date", "type": "date"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 154, "name": "Gender", "type": "gender", "alias": "gender"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4574, "name": "Gender Identity", "type": "multilist", "alias": "genderIdentity"}, "emitted_at": 1710872578622}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4651, "name": "Github ID", "type": "text", "alias": "customGithubID"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4657, "name": "Graph Databases for Dummies - Completed", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4657.2", "name": "Graph Databases for Dummies - Due Date", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4763, "name": "Graph Data Science (GDS) - 301 - Completed", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4763.2", "name": "Graph Data Science (GDS) - 301 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4733, "name": "Graph Data Science (GDS) - Sales 101 - Completed", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4733.2", "name": "Graph Data Science (GDS) - Sales 101 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4734, "name": "Graph Data Science (GDS) - Sales 201 - Completed", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4734.2", "name": "Graph Data Science (GDS) - Sales 201 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4874, "name": "Graph Data Science LevelUP quiz (finish by 15-Dec-2022) - Completed", "type": "date"}, "emitted_at": 1710872578623}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4874.2", "name": "Graph Data Science LevelUP quiz (finish by 15-Dec-2022) - Due Date", "type": "date"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5087, "name": "Guaranteed Severance", "type": "list"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4561, "name": "Headcount", "type": "list"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4788, "name": "Headcount", "type": "text", "alias": "customHeadcount2"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4794, "name": "Highspot Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4794.2", "name": "Highspot Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3, "name": "Hire Date", "type": "date", "alias": "hireDate"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.8", "name": "Historical Balances (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.6", "name": "Historical Balances (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.3", "name": "Historical Balances (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.7", "name": "Historical Balances (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578624}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.5", "name": "Historical Balances (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.4", "name": "Historical Balances (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.2", "name": "Historical Balances (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5061, "name": "Historical Balances (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.8", "name": "Historical Balances - Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.6", "name": "Historical Balances - Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.3", "name": "Historical Balances - Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.7", "name": "Historical Balances - Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.5", "name": "Historical Balances - Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.4", "name": "Historical Balances - Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.2", "name": "Historical Balances - Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5097, "name": "Historical Balances - Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578625}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.8", "name": "Historical Balances - RTT (France) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.6", "name": "Historical Balances - RTT (France) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.3", "name": "Historical Balances - RTT (France) - Available Balance", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.7", "name": "Historical Balances - RTT (France) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.5", "name": "Historical Balances - RTT (France) - Days scheduled", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.4", "name": "Historical Balances - RTT (France) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.2", "name": "Historical Balances - RTT (France) - Policy", "type": "text"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5120, "name": "Historical Balances - RTT (France) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.8", "name": "Historical Balances - Suppressed Festivity (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.6", "name": "Historical Balances - Suppressed Festivity (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.3", "name": "Historical Balances - Suppressed Festivity (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.7", "name": "Historical Balances - Suppressed Festivity (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.5", "name": "Historical Balances - Suppressed Festivity (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578626}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.4", "name": "Historical Balances - Suppressed Festivity (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.2", "name": "Historical Balances - Suppressed Festivity (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5096, "name": "Historical Balances - Suppressed Festivity (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1357, "name": "Home Email", "type": "email", "alias": "homeEmail"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 14, "name": "Home Phone", "type": "phone", "alias": "homePhone"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.8", "name": "Hospitalization Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.6", "name": "Hospitalization Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.3", "name": "Hospitalization Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.7", "name": "Hospitalization Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.5", "name": "Hospitalization Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.4", "name": "Hospitalization Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.2", "name": "Hospitalization Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578627}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4929, "name": "Hospitalization Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4930, "name": "Hospitalization Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4930.1", "name": "Hospitalization Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4640, "name": "Hours Per Pay Cycle", "type": "text", "alias": "hoursPerPayCycle"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4663, "name": "Identity and Access Management - with Nulli - 34min - Completed", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4663.2", "name": "Identity and Access Management - with Nulli - 34min - Due Date", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4730, "name": "Introducing Neo4j 4.3: The Fastest Path to Graph Productivity - Completed", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4730.2", "name": "Introducing Neo4j 4.3: The Fastest Path to Graph Productivity - Due Date", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4735, "name": "Introducing Neo4j 4.4: Fastest Path to Graph Database Productivity (10 mins.) - Completed", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4735.2", "name": "Introducing Neo4j 4.4: Fastest Path to Graph Database Productivity (10 mins.) - Due Date", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4729, "name": "Introduction to Machine Learning Concepts - Completed", "type": "date"}, "emitted_at": 1710872578628}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4729.2", "name": "Introduction to Machine Learning Concepts - Due Date", "type": "date"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4728, "name": "Intro to Knowledge Graphs - Completed", "type": "date"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4728.2", "name": "Intro to Knowledge Graphs - Due Date", "type": "date"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4405, "name": "Israeli ID Number (IL employees only)", "type": "text", "alias": "customIsraeliIDno."}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4901, "name": "Job Change Reason", "type": "text"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4047, "name": "Job Information: Date", "type": "date"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4790, "name": "Job Level", "type": "text", "alias": "customJobLevel2"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 17, "name": "Job Title", "type": "list", "alias": "jobTitle"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2, "name": "Last Name", "type": "text", "alias": "lastName"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.8", "name": "Leave of Absence - Paid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.6", "name": "Leave of Absence - Paid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578629}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.3", "name": "Leave of Absence - Paid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.7", "name": "Leave of Absence - Paid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.5", "name": "Leave of Absence - Paid (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.4", "name": "Leave of Absence - Paid (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.2", "name": "Leave of Absence - Paid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4947, "name": "Leave of Absence - Paid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.8", "name": "Leave of Absence - Unpaid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.6", "name": "Leave of Absence - Unpaid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.3", "name": "Leave of Absence - Unpaid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.7", "name": "Leave of Absence - Unpaid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.5", "name": "Leave of Absence - Unpaid (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.4", "name": "Leave of Absence - Unpaid (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.2", "name": "Leave of Absence - Unpaid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4948, "name": "Leave of Absence - Unpaid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578630}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 18, "name": "Location", "type": "list", "alias": "location"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4603, "name": "Manager Email", "type": "text", "alias": "customManagerEmail"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4966, "name": "MBO", "type": "list"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5, "name": "Middle Name", "type": "text", "alias": "middleName"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.8", "name": "Military Leave (APAC) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.6", "name": "Military Leave (APAC) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.3", "name": "Military Leave (APAC) - Available Balance", "type": "int"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.7", "name": "Military Leave (APAC) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.5", "name": "Military Leave (APAC) - Days scheduled", "type": "int"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.4", "name": "Military Leave (APAC) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.2", "name": "Military Leave (APAC) - Policy", "type": "text"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4990, "name": "Military Leave (APAC) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4837, "name": "ML5 Aura and Fabric (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578631}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4837.2", "name": "ML5 Aura and Fabric (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4820, "name": "ML5 Aura and Fabric - Completed", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4820.2", "name": "ML5 Aura and Fabric - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4832, "name": "ML5 Autonomous cluster benefits (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4832.2", "name": "ML5 Autonomous cluster benefits (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4813, "name": "ML5 Autonomous cluster benefits - Completed", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4813.2", "name": "ML5 Autonomous cluster benefits - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4805, "name": "ML5 Cloud operating agility - Completed", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4805.2", "name": "ML5 Cloud operating agility - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4825, "name": "ML5 Cloud operating agility personas (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4825.2", "name": "ML5 Cloud operating agility personas (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4806, "name": "ML5 Cloud operating agility personas - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4806.2", "name": "ML5 Cloud operating agility personas - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4836, "name": "ML5 Enhanced index use cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4836.2", "name": "ML5 Enhanced index use cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4819, "name": "ML5 Enhanced index use cases - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4819.2", "name": "ML5 Enhanced index use cases - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4828, "name": "ML5 Fabric and federated queries (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4828.2", "name": "ML5 Fabric and federated queries (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4810, "name": "ML5 Fabric and federated queries - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4810.2", "name": "ML5 Fabric and federated queries - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4812, "name": "ML5 Fabric enhancement - Completed", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4812.2", "name": "ML5 Fabric enhancement - Due Date", "type": "date"}, "emitted_at": 1710872578633}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4831, "name": "ML5 Fabric enhancements (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4831.2", "name": "ML5 Fabric enhancements (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4833, "name": "ML5 Hybrid deployment compatibility (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4833.2", "name": "ML5 Hybrid deployment compatibility (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4815, "name": "ML5 Hybrid deployment compatibility - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4815.2", "name": "ML5 Hybrid deployment compatibility - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4844, "name": "ML5 Hybrid deployment use cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4844.2", "name": "ML5 Hybrid deployment use cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4814, "name": "ML5 Hybrid deployment use cases - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4814.2", "name": "ML5 Hybrid deployment use cases - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4802, "name": "ML5 Improved scalability (3 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4802.2", "name": "ML5 Improved scalability (3 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4829, "name": "ML5 K-Hop and TigerGraph (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4829.2", "name": "ML5 K-Hop and TigerGraph (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4809, "name": "ML5 K-Hop and TigerGraph - Completed", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4809.2", "name": "ML5 K-Hop and TigerGraph - Due Date", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4808, "name": "ML5 K-Hop case - Completed", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4808.2", "name": "ML5 K-Hop case - Due Date", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4827, "name": "ML5 K-Hop cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4827.2", "name": "ML5 K-Hop cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4826, "name": "ML5 K-Hop significance (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578635}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4826.2", "name": "ML5 K-Hop significance (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4807, "name": "ML5 K-Hop significance - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4807.2", "name": "ML5 K-Hop significance - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4835, "name": "ML5 Main messages (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4835.2", "name": "ML5 Main messages (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4817, "name": "ML5 Main messages - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4817.2", "name": "ML5 Main messages - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4818, "name": "ML5 Multi-cluster fabric benefits - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4818.2", "name": "ML5 Multi-cluster fabric benefits - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4838, "name": "ML5 Offline import features (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4838.2", "name": "ML5 Offline import features (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4821, "name": "ML5 Offline import features - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4821.2", "name": "ML5 Offline import features - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4839, "name": "ML5 Ops Manager deployment types support (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4839.2", "name": "ML5 Ops Manager deployment types support (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4822, "name": "ML5 Ops Manager deployment types support - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4822.2", "name": "ML5 Ops Manager deployment types support - Due Date", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4799, "name": "ML5 Performance claims (6 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4799.2", "name": "ML5 Performance claims (6 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4796, "name": "ML5 Performance claims - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4796.2", "name": "ML5 Performance claims - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4801, "name": "ML5 Query performance personas (3min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4801.2", "name": "ML5 Query performance personas (3min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4798, "name": "ML5 Query performance personas - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4798.2", "name": "ML5 Query performance personas - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4823, "name": "ML5 Scalability personas (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4823.2", "name": "ML5 Scalability personas (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4803, "name": "ML5 Scalability personas - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4803.2", "name": "ML5 Scalability personas - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4830, "name": "ML5 Shard querying (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4830.2", "name": "ML5 Shard querying (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4811, "name": "ML5 Shard querying - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4811.2", "name": "ML5 Shard querying - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4824, "name": "ML5 Unbounded scalability (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4824.2", "name": "ML5 Unbounded scalability (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4804, "name": "ML5 Unbounded scalability - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4804.2", "name": "ML5 Unbounded scalability - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4834, "name": "ML5 Upgrade with no downtime (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4834.2", "name": "ML5 Upgrade with no downtime (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4816, "name": "ML5 Upgrade with no downtime - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4816.2", "name": "ML5 Upgrade with no downtime - Due Date", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4800, "name": "ML5 Widening performance (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4800.2", "name": "ML5 Widening performance (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4797, "name": "ML5 Widening performance - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4797.2", "name": "ML5 Widening performance - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 13, "name": "Mobile Phone", "type": "phone", "alias": "mobilePhone"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4649, "name": "National identification number (SG employees only)", "type": "text", "alias": "customNationalidentificationnumber(SGemployeesonly)"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4660, "name": "Neo4j 4.2 briefing - 44min - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4660.2", "name": "Neo4j 4.2 briefing - 44min - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4841, "name": "Neo4j 5 Level UP Quiz (finish by October 31, 2022) - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4841.2", "name": "Neo4j 5 Level UP Quiz (finish by October 31, 2022) - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4795, "name": "Neo4j 5 Level UP Quiz - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4795.2", "name": "Neo4j 5 Level UP Quiz - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4653, "name": "Neo4j Renewals Manager New Hire Training - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4653.2", "name": "Neo4j Renewals Manager New Hire Training - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4761, "name": "Neo4j Scale-in-a-Box: Core Graph Database at Scale - Technical - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4761.2", "name": "Neo4j Scale-in-a-Box: Core Graph Database at Scale - Technical - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4762, "name": "Neo4j Scale-in-a-Box: GDS at Scale - Technical - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4762.2", "name": "Neo4j Scale-in-a-Box: GDS at Scale - Technical - Due Date", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4759, "name": "Neo4j Scale-in-a-Box: Graph Database at Scale - Completed", "type": "date"}, "emitted_at": 1710872578638}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4759.2", "name": "Neo4j Scale-in-a-Box: Graph Database at Scale - Due Date", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4760, "name": "Neo4j Scale-in-a-Box: Graph Data Science at Scale - Completed", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4760.2", "name": "Neo4j Scale-in-a-Box: Graph Data Science at Scale - Due Date", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4402, "name": "NI Number (UK employees only)", "type": "text", "alias": "customNINumber(UK)"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4646, "name": "NISS Number (BE employees only)", "type": "text", "alias": "customNISSNumber(BEemployeesonly)"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4726, "name": "Non-Covered CS Accounts - Completed", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4726.2", "name": "Non-Covered CS Accounts - Due Date", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5000, "name": "Non-Employee Type", "type": "list"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4969, "name": "Non-Recoverable Draw", "type": "list"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4970, "name": "Non-Recoverable Draw Monthly Amount", "type": "currency"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4970.1", "name": "Non-Recoverable Draw Monthly Amount - Currency code", "type": "text"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4971, "name": "Non-Recoverable Draw Total Amount", "type": "currency"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4971.1", "name": "Non-Recoverable Draw Total Amount - Currency code", "type": "text"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4562, "name": "Non HC Hire Date", "type": "date", "alias": "customOriginalDateofHire"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4672, "name": "NORAM Professional Services briefing - 34min - Completed", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4672.2", "name": "NORAM Professional Services briefing - 34min - Due Date", "type": "date"}, "emitted_at": 1710872578639}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5089, "name": "Notes", "type": "textarea"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5066, "name": "Notice Requirement", "type": "textarea"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4333, "name": "Original Hire Date", "type": "date", "alias": "originalHireDate"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4401, "name": "OTE", "type": "currency", "alias": "customOTE"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4401.1", "name": "OTE - Currency code", "type": "text", "alias": "customOTE"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.8", "name": "Outpatient Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.6", "name": "Outpatient Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.3", "name": "Outpatient Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.7", "name": "Outpatient Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.5", "name": "Outpatient Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.4", "name": "Outpatient Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.2", "name": "Outpatient Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4926, "name": "Outpatient Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4927, "name": "Outpatient Sick Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4927.1", "name": "Outpatient Sick Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578640}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4518, "name": "Overtime Rate", "type": "currency", "alias": "overtimeRate"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4518.1", "name": "Overtime Rate - Currency code", "type": "text", "alias": "overtimeRate"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4042, "name": "Overtime Status", "type": "exempt", "alias": "exempt"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4330, "name": "Paid per", "type": "paid_per", "alias": "payPer"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.8", "name": "Parental Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.6", "name": "Parental Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.3", "name": "Parental Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.7", "name": "Parental Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.5", "name": "Parental Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.4", "name": "Parental Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.2", "name": "Parental Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4425, "name": "Parental Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4669, "name": "Partner program - 49min - Completed", "type": "date"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4669.2", "name": "Partner program - 49min - Due Date", "type": "date"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 19, "name": "Pay rate", "type": "currency", "alias": "payRate"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "19.1", "name": "Pay rate - Currency code", "type": "text", "alias": "payRate"}, "emitted_at": 1710872578641}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4331, "type": "pay_period", "deprecated": true, "name": "Pay Period", "alias": "payPeriod"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4386, "name": "Pay Schedule", "type": "list", "alias": "paySchedule"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 156, "name": "Pay type", "type": "pay_type", "alias": "payType"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4787, "name": "People Manager", "type": "text", "alias": "customPeopleManager2"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.8", "name": "Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.6", "name": "Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.3", "name": "Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.7", "name": "Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.5", "name": "Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.4", "name": "Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.2", "name": "Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5102, "name": "Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5100, "name": "Permits Seniority 2 + 4 Years (Italy) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5103, "name": "Permits Seniority 2 + 4 Years (Italy) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5100.1", "name": "Permits Seniority 2 + 4 Years (Italy) policy - Started on", "type": "date"}, "emitted_at": 1710872578642}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5103.1", "name": "Permits Seniority 2 + 4 Years (Italy) policy - Started on", "type": "date"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4644, "name": "Personbeteckning (FI Employees only)", "type": "text", "alias": "customPersonbeteckning(FIEmployeesonly)"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4407, "name": "Personnummer (SE employees only)", "type": "text", "alias": "customPersonnummer(SE)"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4645, "name": "PESEL Number (PL employees only)", "type": "text", "alias": "customPESELNumber(PLemployeesonly)"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5074, "name": "Position #", "type": "list"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5090, "name": "Post Term Obligations", "type": "textarea"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4784, "name": "Preferred Last Name", "type": "text", "alias": "customPreferredLastName"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1358, "type": "text", "deprecated": true, "name": "Nickname", "alias": "nickname"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1358, "name": "Preferred Name", "type": "text", "alias": "preferredName"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5085, "name": "Prior Inventions", "type": "list"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4575, "name": "Pronouns", "type": "list", "alias": "pronouns"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4764, "name": "PS - Completed", "type": "date"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4764.2", "name": "PS - Due Date", "type": "date"}, "emitted_at": 1710872578643}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4864, "name": "Quiz Graph Data Science for sales Nov-2022 - Completed", "type": "date"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4864.2", "name": "Quiz Graph Data Science for sales Nov-2022 - Due Date", "type": "date"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4974, "name": "Recoverable Draw", "type": "list"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4975, "name": "Recoverable Draw Monthly Amount", "type": "currency"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4975.1", "name": "Recoverable Draw Monthly Amount - Currency code", "type": "text"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.8", "name": "Region Specific National Holiday (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.6", "name": "Region Specific National Holiday (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.3", "name": "Region Specific National Holiday (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.7", "name": "Region Specific National Holiday (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.5", "name": "Region Specific National Holiday (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.4", "name": "Region Specific National Holiday (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.2", "name": "Region Specific National Holiday (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4951, "name": "Region Specific National Holiday (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4902, "name": "Regrettable", "type": "list", "alias": "customRegrettable"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4912, "name": "Regrettable or Non-Regrettable", "type": "list"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4724, "name": "Renewals Test - Completed", "type": "date"}, "emitted_at": 1710872578644}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4724.2", "name": "Renewals Test - Due Date", "type": "date"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4668, "name": "Renewals workflow - 40min - Completed", "type": "date"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4668.2", "name": "Renewals workflow - 40min - Due Date", "type": "date"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 91, "name": "Reporting to", "type": "employee"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.8", "name": "RTT (France) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.6", "name": "RTT (France) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.3", "name": "RTT (France) - Available Balance", "type": "int"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.7", "name": "RTT (France) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.5", "name": "RTT (France) - Days scheduled", "type": "int"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.4", "name": "RTT (France) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.2", "name": "RTT (France) - Policy", "type": "text"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5117, "name": "RTT (France) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5118, "name": "RTT - France policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5118.1", "name": "RTT - France policy - Started on", "type": "date"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4732, "name": "Sales Enablement Survey - Completed", "type": "date"}, "emitted_at": 1710872578645}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4732.2", "name": "Sales Enablement Survey - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4847, "name": "Sales New Hire Competition Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4847.2", "name": "Sales New Hire Competition Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4848, "name": "Sales New Hire CoreDB Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4848.2", "name": "Sales New Hire CoreDB Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4861, "name": "Sales New Hire Deal Desk Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4861.2", "name": "Sales New Hire Deal Desk Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4846, "name": "Sales New Hire Legal Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4846.2", "name": "Sales New Hire Legal Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4859, "name": "Sales New Hire Marketing Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4859.2", "name": "Sales New Hire Marketing Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4845, "name": "Sales New Hire Partner Ecosystem Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4845.2", "name": "Sales New Hire Partner Ecosystem Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4842, "name": "Sales New Hire Partners Ecosystem Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4842.2", "name": "Sales New Hire Partners Ecosystem Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4858, "name": "Sales New Hire Pre-Sales Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4858.2", "name": "Sales New Hire Pre-Sales Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4840, "name": "Sales New Hire Renewals Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4840.2", "name": "Sales New Hire Renewals Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4886, "name": "Sales New Hire Sales Development (SDR) Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4886.2", "name": "Sales New Hire Sales Development (SDR) Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4862, "name": "Sales New Hire Sales Operations Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4862.2", "name": "Sales New Hire Sales Operations Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4843, "name": "Sales New Hire SFDC Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4843.2", "name": "Sales New Hire SFDC Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4887, "name": "Sales New Hire Strategic Products Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4887.2", "name": "Sales New Hire Strategic Products Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4779, "name": "Sales Onboarding Week-1 - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4779.2", "name": "Sales Onboarding Week-1 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4780, "name": "Sales Onboarding Week-2 - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4780.2", "name": "Sales Onboarding Week-2 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4781, "name": "Sales Onboarding Week-3 - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4781.2", "name": "Sales Onboarding Week-3 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4782, "name": "Sales Onboarding Week-4 - Completed", "type": "date"}, "emitted_at": 1710872578647}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4782.2", "name": "Sales Onboarding Week-4 - Due Date", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4783, "name": "Sales Onboarding Week-5 - Completed", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4783.2", "name": "Sales Onboarding Week-5 - Due Date", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1610, "name": "Self-service access", "type": "employee_access"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4666, "name": "Selling GDS - 53min - Completed", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4666.2", "name": "Selling GDS - 53min - Due Date", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4661, "name": "Selling GDS 1.4 - 59min - Completed", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4661.2", "name": "Selling GDS 1.4 - 59min - Due Date", "type": "date"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4509, "name": "Serial #", "type": "text"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4476, "name": "Shirt size", "type": "list", "alias": "customShirtsize1"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.8", "name": "Sick & Carer's Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.6", "name": "Sick & Carer's Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.3", "name": "Sick & Carer's Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.7", "name": "Sick & Carer's Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.5", "name": "Sick & Carer's Leave (Australia) - Days scheduled", "type": "int"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.4", "name": "Sick & Carer's Leave (Australia) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.2", "name": "Sick & Carer's Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578648}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4889, "name": "Sick & Carer's Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4893, "name": "Sick & Carer's Leave (Australia) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4893.1", "name": "Sick & Carer's Leave (Australia) policy - Started on", "type": "date"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.8", "name": "Sick Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.6", "name": "Sick Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.3", "name": "Sick Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.7", "name": "Sick Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.5", "name": "Sick Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.4", "name": "Sick Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.2", "name": "Sick Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4914, "name": "Sick Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.8", "name": "Sick Leave (India) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.6", "name": "Sick Leave (India) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.3", "name": "Sick Leave (India) - Available Balance", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.7", "name": "Sick Leave (India) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.5", "name": "Sick Leave (India) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.4", "name": "Sick Leave (India) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.2", "name": "Sick Leave (India) - Policy", "type": "text"}, "emitted_at": 1710872578649}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4906, "name": "Sick Leave (India) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4909, "name": "Sick Leave (India) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4909.1", "name": "Sick Leave (India) policy - Started on", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4686, "name": "SKO Live - Day 1 Field Operations Strategy & Plan - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4686.2", "name": "SKO Live - Day 1 Field Operations Strategy & Plan - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4684, "name": "SKO Live - Day 1 Pitch Contest - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4684.2", "name": "SKO Live - Day 1 Pitch Contest - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4688, "name": "SKO Live - Day 1 Product Vision Q&A - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4688.2", "name": "SKO Live - Day 1 Product Vision Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4685, "name": "SKO Live - Day 1 Vision for 2020 - 2030 - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4685.2", "name": "SKO Live - Day 1 Vision for 2020 - 2030 - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4687, "name": "SKO Live - Day 1 Voice of the Customer: Bank of Montreal - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4687.2", "name": "SKO Live - Day 1 Voice of the Customer: Bank of Montreal - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4690, "name": "SKO Live - Day 2 GDS Product Q&A - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4690.2", "name": "SKO Live - Day 2 GDS Product Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4692, "name": "SKO Live - Day 2 Improv - How it Matters in a connected world - Completed", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4692.2", "name": "SKO Live - Day 2 Improv - How it Matters in a connected world - Due Date", "type": "date"}, "emitted_at": 1710872578650}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4691, "name": "SKO Live - Day 2 Voice of the Customer - Manulife - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4691.2", "name": "SKO Live - Day 2 Voice of the Customer - Manulife - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4689, "name": "SKO Live - Day 2 Welcome Session - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4689.2", "name": "SKO Live - Day 2 Welcome Session - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4696, "name": "SKO Live - Day 3 Aura Q&A - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4696.2", "name": "SKO Live - Day 3 Aura Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4694, "name": "SKO Live - Day 3 Sales Best Practices - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4694.2", "name": "SKO Live - Day 3 Sales Best Practices - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4695, "name": "SKO Live - Day 3 Voice of the Customer: Volvo - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4695.2", "name": "SKO Live - Day 3 Voice of the Customer: Volvo - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4693, "name": "SKO Live - Day 3 Welcome Session - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4693.2", "name": "SKO Live - Day 3 Welcome Session - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4714, "name": "SKO Live - Day 4 Negotiation Skills - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4714.2", "name": "SKO Live - Day 4 Negotiation Skills - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4712, "name": "SKO Live - Day 4 Product Management - Visualization QA - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4712.2", "name": "SKO Live - Day 4 Product Management - Visualization QA - Due Date", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4713, "name": "SKO Live - Day 4 Sales Tools Training - Completed", "type": "date"}, "emitted_at": 1710872578651}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4713.2", "name": "SKO Live - Day 4 Sales Tools Training - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4711, "name": "SKO Live - Day 4 Welcome and Apiax Customer Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4711.2", "name": "SKO Live - Day 4 Welcome and Apiax Customer Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4716, "name": "SKO Live - Day 5 Field Presentation and Integrated Demo - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4716.2", "name": "SKO Live - Day 5 Field Presentation and Integrated Demo - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4717, "name": "SKO Live - Day 5 Objection Handling Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4717.2", "name": "SKO Live - Day 5 Objection Handling Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4719, "name": "SKO Live - Day 5 Product Management: Core DB Q&A Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4719.2", "name": "SKO Live - Day 5 Product Management: Core DB Q&A Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4718, "name": "SKO Live - Day 5 Voice of the Customer: Deloitte / Allianz - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4718.2", "name": "SKO Live - Day 5 Voice of the Customer: Deloitte / Allianz - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4715, "name": "SKO Live - Day 5 Welcome and Presentation Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4715.2", "name": "SKO Live - Day 5 Welcome and Presentation Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4721, "name": "SKO Live - Day 6 Fireside Chat w/ Emil & Lars Q&A - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4721.2", "name": "SKO Live - Day 6 Fireside Chat w/ Emil & Lars Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4720, "name": "SKO Live - Day 6 Opening Session / Pitch Contest - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4720.2", "name": "SKO Live - Day 6 Opening Session / Pitch Contest - Due Date", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4722, "name": "SKO Live - Day 6 Pitch Contest Winner & Moving to an Outbound Organization w/ Aaron Ross - Completed", "type": "date"}, "emitted_at": 1710872578652}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4722.2", "name": "SKO Live - Day 6 Pitch Contest Winner & Moving to an Outbound Organization w/ Aaron Ross - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4723, "name": "SKO Live - Day 6 Voice of the Customer: Novo Nordisk - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4723.2", "name": "SKO Live - Day 6 Voice of the Customer: Novo Nordisk - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4703, "name": "SKOO - Accelerating & Uplifting ARR with Solutions - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4703.2", "name": "SKOO - Accelerating & Uplifting ARR with Solutions - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4699, "name": "SKOO - Aura Enterprise Customer Pursuit - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4699.2", "name": "SKOO - Aura Enterprise Customer Pursuit - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4682, "name": "SKOO - Cloud Managed Services (CMS): 2021 - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4682.2", "name": "SKOO - Cloud Managed Services (CMS): 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4706, "name": "SKOO - Competitive Overview - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4706.2", "name": "SKOO - Competitive Overview - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4697, "name": "SKOO - Customer Success - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4697.2", "name": "SKOO - Customer Success - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4707, "name": "SKOO - EMEA Sales Engineering - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4707.2", "name": "SKOO - EMEA Sales Engineering - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4704, "name": "SKOO - Global Sales Development - Completed", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4704.2", "name": "SKOO - Global Sales Development - Due Date", "type": "date"}, "emitted_at": 1710872578653}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4676, "name": "SKOO - Graph Data Science: 2021 Product Update - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4676.2", "name": "SKOO - Graph Data Science: 2021 Product Update - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4675, "name": "SKOO - Legal Hot Topics: Accelerating Deal Closure - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4675.2", "name": "SKOO - Legal Hot Topics: Accelerating Deal Closure - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4673, "name": "SKOO - Market and Sector Outlook 2021 - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4673.2", "name": "SKOO - Market and Sector Outlook 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4678, "name": "SKOO - Marketing 2021 - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4678.2", "name": "SKOO - Marketing 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4658, "name": "SKOO - Neo4j Company Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4658.2", "name": "SKOO - Neo4j Company Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4710, "name": "SKOO - Neo4j Innovation Lab - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4710.2", "name": "SKOO - Neo4j Innovation Lab - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4680, "name": "SKOO - Neo4j Product Vision - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4680.2", "name": "SKOO - Neo4j Product Vision - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4683, "name": "SKOO - Neo4j Services - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4683.2", "name": "SKOO - Neo4j Services - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4708, "name": "SKOO - North America Sales Engineering - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4708.2", "name": "SKOO - North America Sales Engineering - Due Date", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4677, "name": "SKOO - Nurturing the Integrated Customer Experience - Completed", "type": "date"}, "emitted_at": 1710872578654}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4677.2", "name": "SKOO - Nurturing the Integrated Customer Experience - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4674, "name": "SKOO - Product Management - Aura Briefing - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4674.2", "name": "SKOO - Product Management - Aura Briefing - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4709, "name": "SKOO - Product Management - Core DB - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4709.2", "name": "SKOO - Product Management - Core DB - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4698, "name": "SKOO - Product Management - Visualization briefing - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4698.2", "name": "SKOO - Product Management - Visualization briefing - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4700, "name": "SKOO - Selling GDS to Economic Influencers - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4700.2", "name": "SKOO - Selling GDS to Economic Influencers - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4701, "name": "SKOO - Selling with Cloud Partners - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4701.2", "name": "SKOO - Selling with Cloud Partners - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4681, "name": "SKOO - Selling with Partners - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4681.2", "name": "SKOO - Selling with Partners - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4679, "name": "SKOO - SuppARRt (Customer Support) - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4679.2", "name": "SKOO - SuppARRt (Customer Support) - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4702, "name": "SKOO - Surviving the Security Conversation - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4702.2", "name": "SKOO - Surviving the Security Conversation - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4705, "name": "SKOO - Your Role in Customer Retention - Completed", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4705.2", "name": "SKOO - Your Role in Customer Retention - Due Date", "type": "date"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4404, "name": "Social Security Number (FR employees only)", "type": "text", "alias": "customSocialsecuritynumber(FR)"}, "emitted_at": 1710872578655}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4483, "name": "Spot Bonus - Date", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4484, "name": "Spot Bonus: Amount", "type": "currency"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4484.1", "name": "Spot Bonus: Amount - Currency code", "type": "text"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4486, "name": "Spot Bonus: Comment", "type": "textarea"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 7, "name": "SSN", "type": "ssn", "alias": "ssn"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 11, "name": "State", "type": "state", "alias": "state"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 387, "type": "status", "deprecated": true, "name": "Employment Status", "alias": "employmentStatus"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 387, "name": "Status", "type": "status", "alias": "status"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4766, "name": "Stephen Test - Completed", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4766.2", "name": "Stephen Test - Due Date", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4609, "name": "Stock Options: Amount", "type": "int"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4608, "name": "Stock Options: Change Reason", "type": "list"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4765, "name": "Stock Options: Comment", "type": "text"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5076, "name": "Stock Options: Date Added", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4769, "name": "Supply Chain - Bill of Material (BOM) - Completed", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4769.2", "name": "Supply Chain - Bill of Material (BOM) - Due Date", "type": "date"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.8", "name": "Suppressed Festivity (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.6", "name": "Suppressed Festivity (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.3", "name": "Suppressed Festivity (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578656}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.7", "name": "Suppressed Festivity (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.5", "name": "Suppressed Festivity (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.4", "name": "Suppressed Festivity (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.2", "name": "Suppressed Festivity (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5013, "name": "Suppressed Festivity (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.8", "name": "Suppressed Festivity - Italy Executive - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.6", "name": "Suppressed Festivity - Italy Executive - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.3", "name": "Suppressed Festivity - Italy Executive - Available Balance", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.7", "name": "Suppressed Festivity - Italy Executive - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.5", "name": "Suppressed Festivity - Italy Executive - Days scheduled", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.4", "name": "Suppressed Festivity - Italy Executive - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.2", "name": "Suppressed Festivity - Italy Executive - Policy", "type": "text"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5094, "name": "Suppressed Festivity - Italy Executive - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5095, "name": "Suppressed Festivity - Italy Executive policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5095.1", "name": "Suppressed Festivity - Italy Executive policy - Started on", "type": "date"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5014, "name": "Suppressed Festivity - Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5014.1", "name": "Suppressed Festivity - Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4488, "name": "Target Variable - Date", "type": "date"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4489, "name": "Target Variable: Amount", "type": "currency"}, "emitted_at": 1710872578657}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4489.1", "name": "Target Variable: Amount - Currency code", "type": "text"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4568, "name": "Target Variable: Change Reason", "type": "list"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4491, "name": "Target Variable: Comment", "type": "textarea"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4490, "name": "Target Variable Reason", "type": "list"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4403, "name": "Tax Identification number (DE employees only)", "type": "text", "alias": "customInsurancenumber(DE)"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4648, "name": "Tax identification number (NL employees only)", "type": "text", "alias": "customTaxidentificationnumber(NLemployeesonly)"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4499, "name": "Team Name", "type": "list"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4789, "name": "Team Name", "type": "text", "alias": "customTeamName1"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4314, "name": "Termination Reason", "type": "list"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4313, "name": "Termination Type", "type": "list"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.8", "name": "Test - Historical Balances (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.6", "name": "Test - Historical Balances (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.3", "name": "Test - Historical Balances (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.7", "name": "Test - Historical Balances (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.5", "name": "Test - Historical Balances (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.4", "name": "Test - Historical Balances (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.2", "name": "Test - Historical Balances (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5029, "name": "Test - Historical Balances (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.8", "name": "Test - Leave of Absence - Paid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.6", "name": "Test - Leave of Absence - Paid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578658}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.3", "name": "Test - Leave of Absence - Paid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.7", "name": "Test - Leave of Absence - Paid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.5", "name": "Test - Leave of Absence - Paid (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.4", "name": "Test - Leave of Absence - Paid (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.2", "name": "Test - Leave of Absence - Paid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5077, "name": "Test - Leave of Absence - Paid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.8", "name": "Test - Leave of Absence - Unpaid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.6", "name": "Test - Leave of Absence - Unpaid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.3", "name": "Test - Leave of Absence - Unpaid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.7", "name": "Test - Leave of Absence - Unpaid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.5", "name": "Test - Leave of Absence - Unpaid (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.4", "name": "Test - Leave of Absence - Unpaid (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.2", "name": "Test - Leave of Absence - Unpaid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5078, "name": "Test - Leave of Absence - Unpaid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.8", "name": "Test - Parental Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.6", "name": "Test - Parental Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.3", "name": "Test - Parental Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.7", "name": "Test - Parental Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.5", "name": "Test - Parental Leave (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.4", "name": "Test - Parental Leave (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.2", "name": "Test - Parental Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5079, "name": "Test - Parental Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.8", "name": "Test - Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.6", "name": "Test - Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.3", "name": "Test - Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.7", "name": "Test - Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.5", "name": "Test - Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.4", "name": "Test - Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.2", "name": "Test - Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5016, "name": "Test - Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.8", "name": "Test - Sick Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.6", "name": "Test - Sick Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.3", "name": "Test - Sick Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.7", "name": "Test - Sick Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.5", "name": "Test - Sick Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.4", "name": "Test - Sick Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.2", "name": "Test - Sick Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4917, "name": "Test - Sick Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.8", "name": "Test - Vacation (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.6", "name": "Test - Vacation (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.3", "name": "Test - Vacation (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.7", "name": "Test - Vacation (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.5", "name": "Test - Vacation (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.4", "name": "Test - Vacation (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.2", "name": "Test - Vacation (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4415, "name": "Test - Vacation (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5019, "name": "Test - Vacation (Germany) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5019.1", "name": "Test - Vacation (Germany) policy - Started on", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5093, "name": "Test - Vacation Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5093.1", "name": "Test - Vacation Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4767, "name": "Test 2 - Completed", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4767.2", "name": "Test 2 - Due Date", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4731, "name": "The Art of the Big Deal - Completed", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4731.2", "name": "The Art of the Big Deal - Due Date", "type": "date"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.8", "name": "Unpaid Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.6", "name": "Unpaid Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.3", "name": "Unpaid Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.7", "name": "Unpaid Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578661}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.5", "name": "Unpaid Leave (Australia) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.4", "name": "Unpaid Leave (Australia) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.2", "name": "Unpaid Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5106, "name": "Unpaid Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4656, "name": "Updated Deal Desk Submission Process Training - Completed", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4656.2", "name": "Updated Deal Desk Submission Process Training - Due Date", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4665, "name": "Upselling possibilities - 43min - Completed", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4665.2", "name": "Upselling possibilities - 43min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4662, "name": "Use Case - Financial crime analysis with Linkurio.us - 48min - Completed", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4662.2", "name": "Use Case - Financial crime analysis with Linkurio.us - 48min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4664, "name": "Use Case - Knowledge Graphs with Graphaware Hume - 38min - Completed", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4664.2", "name": "Use Case - Knowledge Graphs with Graphaware Hume - 38min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.8", "name": "Vacation (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.6", "name": "Vacation (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.3", "name": "Vacation (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.7", "name": "Vacation (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.5", "name": "Vacation (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.4", "name": "Vacation (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.2", "name": "Vacation (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4941, "name": "Vacation (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4977, "name": "Vacation - Finland policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578662}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4977.1", "name": "Vacation - Finland policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5119, "name": "Vacation - France policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5119.1", "name": "Vacation - France policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5009, "name": "Vacation - Germany policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5009.1", "name": "Vacation - Germany policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5092, "name": "Vacation - Italy Executive policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5092.1", "name": "Vacation - Italy Executive policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5091, "name": "Vacation - Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5091.1", "name": "Vacation - Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4942, "name": "Vacation - Spain policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4942.1", "name": "Vacation - Spain policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5010, "name": "Vacation - The Netherlands policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5010.1", "name": "Vacation - The Netherlands policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5115, "name": "Vacation - UK Intern policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5115.1", "name": "Vacation - UK Intern policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5011, "name": "Vacation - UK policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5011.1", "name": "Vacation - UK policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5088, "name": "Vesting Acceleration", "type": "list"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4001, "name": "Veteran Status", "type": "multilist"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4512, "name": "Voluntary Self-Identification of Disability", "type": "list", "alias": "customVoluntarySelf-IdentificationofDisability"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4867, "name": "Which of these statements are true - Completed", "type": "date"}, "emitted_at": 1710872578663}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4867.2", "name": "Which of these statements are true - Due Date", "type": "date"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 15, "name": "Work Email", "type": "email", "alias": "workEmail"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 635, "name": "Work Ext.", "type": "text", "alias": "workPhoneExtension"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4727, "name": "Working Session: Building Trust for Better Prospecting on LinkedIn - Completed", "type": "date"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4727.2", "name": "Working Session: Building Trust for Better Prospecting on LinkedIn - Due Date", "type": "date"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 634, "name": "Work Phone", "type": "phone", "alias": "workPhone"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 12, "name": "Zip Code", "type": "text", "alias": "zipcode"}, "emitted_at": 1710872578664}} +{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": -38, "name": "Termination Date", "type": "date", "alias": "terminationDate"}, "emitted_at": 1710872578664}} +{"type": "LOG", "log": {"level": "INFO", "message": "Read 903 records from meta_fields_stream stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as STOPPED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578664.644, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "COMPLETE"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing meta_fields_stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_fields_stream 0:00:00.706214\nSyncing stream meta_tables_stream 0:00:00.390416"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as STARTED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872580183.289, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "STARTED"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: tables_stream "}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as RUNNING"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872581422.672, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "RUNNING"}}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "118", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Web Program Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "187", "date": "2019-04-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4", "employeeId": "154", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Head of Solutions Lab", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "181", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "140", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sales Ops Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "246", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "162", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "1", "date": "2019-09-09", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, Human Resources", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "206", "date": "2019-10-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management, End-User Appplications", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "142", "date": "2019-04-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Enterprise Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "219", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "190", "date": "2018-02-20", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Director of Sales, Western", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "139", "date": "2019-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "157", "date": "2017-01-11", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "193", "date": "2019-09-23", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "156", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "146", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "249", "date": "2019-07-29", "location": "San Mateo - USA (HQ)", "department": "Support Engineering (US)", "division": "", "jobTitle": "Lead DBaaS Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "147", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "163", "date": "2017-04-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Web Developer, Front-end UX", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "213", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Corporate Accounts Representative", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "227", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Technical Support Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "153", "date": "2016-11-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "130", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "35", "employeeId": "135", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. Director, Customer Support", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "179", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "180", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "215", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "257", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "254", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Lead Managed Service Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "191", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "205", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Principal Curriculum Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "263", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "46", "employeeId": "166", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "198", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "243", "date": "2019-06-10", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "148", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "VP, Account Management", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "171", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "129", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Manager", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "241", "date": "2019-05-30", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Solutions Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "235", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "133", "date": "2014-12-08", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "152", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "232", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "192", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "251", "date": "2019-08-12", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "199", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "131", "date": "2014-12-01", "location": "Remote - USA", "department": "Engineering (US)", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "145", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "VP Channel, Americas", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "160", "date": "2017-02-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "255", "date": "2019-09-03", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Data Scientist", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "209", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "155", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "73", "employeeId": "183", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Prog Mgr, Comm Dev and Enablement", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "114", "date": "2019-09-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP, Finance & Administration", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "144", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sales Ops Manager", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "158", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Manager", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "175", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Product Management (US)", "division": "", "jobTitle": "Director, Product Management - Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "211", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Federal Alliance & Channel Manager, US", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "125", "date": "2013-10-14", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Director, Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "188", "date": "2018-01-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Chief Marketing Officer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "120", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "256", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Sr. Manager of Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "173", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "236", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "Partner Bus Dev Manager", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "217", "date": "2019-01-07", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "185", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "253", "date": "2019-10-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "126", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "182", "date": "2017-11-06", "location": "Remote - USA", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "Technology Partner Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "92", "employeeId": "247", "date": "2019-07-22", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "132", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "138", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Global Market Development Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "123", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "240", "date": "2019-10-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "98", "employeeId": "208", "date": "2018-07-30", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "210", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer & Customer Success", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "239", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "167", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "SVP, Bus and Corp Dev", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "159", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "220", "date": "2019-01-14", "location": "San Mateo - USA (HQ)", "department": "Legal", "division": "G&A", "jobTitle": "Associate General Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "168", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "Sales & Marketing", "jobTitle": "Solution Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "176", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Director, Field Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "178", "date": "2018-04-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "124", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "248", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Director", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "121", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "224", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Visual Designer", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "114", "employeeId": "218", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "172", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "202", "date": "2018-06-25", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "149", "date": "2016-03-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "EA and Office Manager, America", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "122", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Director", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "169", "date": "2017-07-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "128", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "197", "date": "2019-05-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Sr. Marketing Operations Mgr", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "186", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "141", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "161", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "222", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "137", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "136", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Engineering (US)", "division": "", "jobTitle": "Software Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "130", "employeeId": "245", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "UX Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "184", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "212", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "250", "date": "2019-08-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "207", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "238", "date": "2019-05-20", "location": "Remote - USA", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "115", "date": "2019-03-25", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. HR Generalist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "231", "date": "2019-04-08", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Intern", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "127", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Director, Sales Engineering, Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "252", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "221", "date": "2019-01-14", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "134", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "143", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "229", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "350", "date": "2018-05-14", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "364", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "148", "employeeId": "357", "date": "2018-09-01", "location": "Remote - Belgium", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Sr. Director for Professional Services EMEA (kJube BVBA)", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "316", "date": "2017-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "117", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "392", "date": "2019-05-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "338", "date": "2019-01-01", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager/HR Coordinator", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "374", "date": "2019-01-15", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "266", "date": "2012-07-09", "location": "Munich - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Developer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "359", "date": "2018-09-10", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Analyst", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "268", "date": "2013-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "295", "date": "2018-04-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Director Global Telecom Practice", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "380", "date": "2019-03-01", "location": "Remote - Israel", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "403", "date": "2019-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "384", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "343", "date": "2017-10-16", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Data Analyst", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "395", "date": "2019-06-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "412", "date": "2019-10-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "397", "date": "2019-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "304", "date": "2016-02-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "288", "date": "2015-01-01", "location": "Remote - Spain", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "393", "date": "2019-05-13", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Project Director", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "271", "date": "2013-09-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "371", "date": "2019-01-14", "location": "Remote - The Netherlands", "department": "Product-EMEA", "division": "", "jobTitle": "Contractor (Cannan Consultancy)", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "323", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "348", "date": "2018-04-02", "location": "Remote - Belgium", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Chief Solutions Architect (iBridge BBVA)", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "276", "date": "2014-05-19", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "406", "date": "2019-10-01", "location": "Remote - Italy", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, Italy", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "329", "date": "2019-01-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "391", "date": "2019-05-07", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "404", "date": "2019-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Quality Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "407", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "296", "date": "2019-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "293", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "341", "date": "2017-09-18", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "381", "date": "2019-03-01", "location": "Remote - EMEA", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "385", "date": "2019-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "278", "date": "2017-12-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "265", "date": "2012-07-03", "location": "Remote - France", "department": "Sales (EMEA)", "division": "", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "415", "date": "2019-11-01", "location": "Remote - Spain", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "396", "date": "2019-06-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "260", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "347", "date": "2018-02-12", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "387", "date": "2019-04-08", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "284", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "325", "date": "2019-10-01", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Technical Standards Specialist (Healthy Consulting Ltd)", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "418", "date": "2020-01-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "292", "date": "2019-07-01", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Associate Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "320", "date": "2019-01-01", "location": "Remote - Belgium", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "342", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Chief Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "306", "date": "2019-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "330", "date": "2017-07-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "280", "date": "2014-08-01", "location": "Remote - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "200", "employeeId": "408", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "335", "date": "2017-08-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "411", "date": "2019-10-07", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "383", "date": "2019-03-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "262", "date": "2020-02-05", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "205", "employeeId": "370", "date": "2019-01-07", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "398", "date": "2019-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "301", "date": "2015-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "208", "employeeId": "305", "date": "2019-01-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "372", "date": "2019-01-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "344", "date": "2017-10-16", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "116", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "300", "date": "2015-10-01", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "365", "date": "2019-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "324", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "216", "employeeId": "355", "date": "2018-08-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "414", "date": "2019-10-21", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "334", "date": "2019-01-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "327", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "313", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "321", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "353", "date": "2018-09-27", "location": "Malm\u00f6 - Sweden", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management for Product Design", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "289", "date": "2017-07-01", "location": "Remote - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "389", "date": "2019-04-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "382", "date": "2019-03-01", "location": "Remote - Israel", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative, Israel", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "377", "date": "2019-10-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern Trainee", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "386", "date": "2019-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "333", "date": "2020-02-05", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "229", "employeeId": "285", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "259", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "294", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. QA Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "279", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "349", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "368", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "361", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "409", "date": "2019-10-01", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "331", "date": "2017-07-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "238", "employeeId": "360", "date": "2019-10-01", "location": "Remote - EMEA", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Sr. Delivery Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "339", "date": "2019-01-11", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "281", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "311", "date": "2018-06-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "242", "employeeId": "340", "date": "2017-09-05", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "243", "employeeId": "417", "date": "2019-11-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "309", "date": "2016-10-03", "location": "Munich - Germany", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Director DACH", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "270", "date": "2020-02-05", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "394", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "275", "date": "2014-03-11", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Channel Director", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "390", "date": "2019-05-01", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "297", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "410", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "314", "date": "2017-02-27", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "328", "date": "2017-07-10", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "318", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "332", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "362", "date": "2018-10-01", "location": "Remote - Poland", "department": "Engineering-EMEA", "division": "", "jobTitle": "Performance Benchmarking Infrastructure Developer (Symentis)", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "299", "date": "2015-09-14", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "312", "date": "2016-12-05", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "401", "date": "2019-07-03", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "366", "date": "2018-11-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "260", "employeeId": "307", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "326", "date": "2018-10-15", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "379", "date": "2019-03-08", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "317", "date": "2017-04-01", "location": "Munich - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "399", "date": "2019-07-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "363", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "274", "date": "2019-05-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "376", "date": "2019-02-01", "location": "Remote - Belgium", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative (He.Ro Business Development Consulting)", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "402", "date": "2019-09-01", "location": "Remote - France", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "388", "date": "2019-04-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "291", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "405", "date": "2019-09-09", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "322", "date": "2017-05-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Enterprise Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "378", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "303", "date": "2016-01-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "375", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "286", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "336", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "373", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "354", "date": "2019-01-11", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "315", "date": "2017-03-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant (Anabranch)", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "282", "date": "2019-01-11", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "416", "date": "2019-11-18", "location": "Remote - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "337", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "369", "date": "2020-02-05", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "400", "date": "2019-07-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "310", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "283", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "308", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "319", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "413", "date": "2019-10-14", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "290", "date": "2015-01-07", "location": "Remote - Germany", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Sales Manager", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "346", "date": "2018-02-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "267", "date": "2012-08-01", "location": "Remote - Belgium", "department": "Sales (EMEA)", "division": "", "jobTitle": "Regional VP of Sales, EMEA (Bruggen BVBA)", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "287", "date": "2014-11-03", "location": "Remote - The Netherlands", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "273", "date": "2013-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "VP, Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "272", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "345", "date": "2017-11-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "351", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "261", "date": "2010-10-25", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "356", "date": "2019-06-01", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "298", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "269", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "358", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "302", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "352", "date": "2020-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "308", "employeeId": "421", "date": "2019-11-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "312", "employeeId": "533", "date": "2016-05-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "561", "date": "2018-06-18", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting-US", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "539", "date": "2017-04-01", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "527", "date": "2015-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "316", "employeeId": "506", "date": "2011-02-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Julian Simpson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "549", "date": "2017-09-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "523", "date": "2015-04-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "553", "date": "2017-11-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "535", "date": "2016-10-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "544", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "531", "date": "2016-02-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "510", "date": "2011-10-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "516", "date": "2014-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "536", "date": "2017-01-23", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "554", "date": "2018-01-08", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "560", "date": "2018-06-11", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "515", "date": "2013-06-03", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "515", "date": "2014-01-02", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Assistant", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "331", "employeeId": "545", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "565", "date": "2018-08-13", "location": "London - UK", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "334", "employeeId": "541", "date": "2017-04-03", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Marketing Digital Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "335", "employeeId": "568", "date": "2019-07-15", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "528", "date": "2015-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "547", "date": "2017-07-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "338", "employeeId": "534", "date": "2016-06-06", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "555", "date": "2018-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "520", "date": "2014-10-13", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "530", "date": "2016-02-01", "location": "Malm\u00f6 - Sweden", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Global Support Manager", "reportsTo": "Gabriel Stanek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "562", "date": "2018-06-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Petra Selmer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "557", "date": "2018-03-26", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "550", "date": "2017-10-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "512", "date": "2012-09-24", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Community Manager", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "524", "date": "2015-04-01", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "566", "date": "2019-03-25", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "564", "date": "2018-07-16", "location": "Munich - Germany", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Intern (Contractor)", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "504", "date": "2010-09-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-Sales Manager, EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "537", "date": "2017-01-23", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "502", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "503", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Developer Evangelist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "559", "date": "2018-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "509", "date": "2011-09-20", "location": "Malaysia", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "558", "date": "2018-03-26", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "556", "date": "2018-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "552", "date": "2017-10-09", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "507", "date": "2011-05-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "514", "date": "2013-01-28", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Representative", "reportsTo": "Holger Temme", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "538", "date": "2017-03-15", "location": "Remote - EMEA", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "511", "date": "2012-04-01", "location": "UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "511", "date": "2013-01-01", "location": "New Zeeland", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Utpal Bhatt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "364", "employeeId": "546", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "546", "date": "2018-06-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "546", "date": "2019-06-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "551", "date": "2017-10-03", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "368", "employeeId": "548", "date": "2017-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "369", "employeeId": "522", "date": "2015-02-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "370", "employeeId": "522", "date": "2015-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "372", "employeeId": "501", "date": "2009-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "CTO", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "505", "date": "2010-10-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "519", "date": "2014-05-05", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Sales Director", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "525", "date": "2015-04-01", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "376", "employeeId": "563", "date": "2018-07-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "567", "date": "2019-04-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "513", "date": "2012-11-05", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Representative", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "521", "date": "2015-01-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "542", "date": "2017-04-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Contractor", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "540", "date": "2017-04-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern Trainee", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "517", "date": "2014-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "532", "date": "2016-04-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "526", "date": "2015-04-01", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "569", "date": "2019-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "570", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "571", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "572", "date": "2019-11-01", "location": "Remote - The Netherlands", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "117", "date": "2015-09-10", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "117", "date": "2017-01-09", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "117", "date": "2017-09-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "338", "date": "2017-09-01", "location": "London - UK", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "142", "date": "2015-08-11", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Senior Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "142", "date": "2019-09-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Contractor", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "241", "date": "2019-10-04", "location": "Remote - USA", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "193", "date": "2018-02-26", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "573", "date": "2019-10-21", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "574", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "575", "date": "2020-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "400", "employeeId": "576", "date": "2019-11-18", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "577", "date": "2019-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "346", "date": "2019-12-03", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "311", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "385", "date": "2019-12-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "394", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "398", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "578", "date": "2019-12-02", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "579", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "419", "date": "2019-10-29", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "411", "employeeId": "142", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "414", "employeeId": "156", "date": "2019-12-03", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "415", "employeeId": "322", "date": "2019-12-03", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Enterprise Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "323", "date": "2019-12-03", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "207", "date": "2019-12-03", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "419", "employeeId": "218", "date": "2019-12-03", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "391", "date": "2019-12-03", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "424", "employeeId": "186", "date": "2020-01-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "426", "employeeId": "582", "date": "2019-10-21", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "427", "employeeId": "295", "date": "2020-01-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-sales Director", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "428", "employeeId": "268", "date": "2012-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Research Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "268", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "295", "date": "2015-07-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "295", "date": "2017-07-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Director Global Telecom Practice", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "384", "date": "2017-09-13", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Julian Simpson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "384", "date": "2018-08-09", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "435", "employeeId": "323", "date": "2017-05-08", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "323", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Manager, EMEA Sales Development", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "323", "date": "2018-01-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Manager, EMEA Sales Development", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "438", "employeeId": "329", "date": "2017-07-15", "location": "London - UK", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "439", "employeeId": "296", "date": "2015-07-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "EMEA Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "293", "date": "2015-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "278", "date": "2014-07-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Manager, EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "260", "date": "2012-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "347", "date": "2019-01-11", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "277", "date": "2014-05-19", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "284", "date": "2014-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "292", "date": "2015-05-01", "location": "London - UK", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Field Engineering Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "320", "date": "2017-05-01", "location": "Remote - Belgium", "department": "Sales (US)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "245", "date": "2019-12-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Intern", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "449", "employeeId": "350", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Professional Services Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "450", "employeeId": "175", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management - Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "451", "employeeId": "249", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Lead DBaaS Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "452", "employeeId": "131", "date": "2019-12-03", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "453", "employeeId": "583", "date": "2019-11-11", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "454", "employeeId": "583", "date": "2020-01-01", "location": "Remote - USA", "department": "Support - Aura (US)", "division": "", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "584", "date": "2019-12-09", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "342", "date": "2017-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "342", "date": "2012-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "317", "date": "2020-01-01", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "342", "date": "2015-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "572", "date": "2018-04-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "572", "date": "2018-09-03", "location": "Remote - The Netherlands", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "572", "date": "2018-10-15", "location": "Remote - The Netherlands", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "330", "date": "2019-04-01", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "123", "date": "2020-01-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "335", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "322", "date": "2020-01-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Renewal Sales Manager, EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "474", "employeeId": "323", "date": "2020-01-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "391", "date": "2020-01-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "343", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Head of Analytics & Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "359", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "587", "date": "2020-01-09", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "479", "employeeId": "588", "date": "2020-01-13", "location": "Remote - France", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative France", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "589", "date": "2019-11-11", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "590", "date": "2019-12-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Specialist", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "591", "date": "2020-01-21", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "262", "date": "2011-01-01", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "262", "date": "2018-01-22", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "262", "date": "2018-01-01", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "370", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "305", "date": "2016-03-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "599", "date": "2019-12-09", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "600", "date": "2019-12-16", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "499", "employeeId": "601", "date": "2019-12-30", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "500", "employeeId": "245", "date": "2019-06-17", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "501", "employeeId": "207", "date": "2020-01-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "202", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "210", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "217", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "506", "employeeId": "125", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "508", "employeeId": "151", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "602", "date": "2020-01-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "603", "date": "2019-12-12", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "365", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "604", "date": "2020-01-06", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "605", "date": "2020-02-05", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter and Resourcer, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "264", "date": "2011-08-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "606", "date": "2020-02-01", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "516", "employeeId": "607", "date": "2020-02-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "517", "employeeId": "608", "date": "2020-03-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "EMEA Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "609", "date": "2020-03-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Sr. Analyst, Commercial Excellence", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "610", "date": "2020-03-16", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "611", "date": "2020-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "613", "date": "2020-03-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "414", "date": "2020-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "346", "date": "2020-01-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "299", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "292", "date": "2020-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "527", "employeeId": "311", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "385", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "330", "date": "2020-01-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "400", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "304", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "344", "date": "2020-01-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "412", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "535", "employeeId": "394", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "536", "employeeId": "316", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "271", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "539", "employeeId": "366", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "398", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "355", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "395", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "543", "employeeId": "331", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "334", "date": "2020-01-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "321", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "307", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "272", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "339", "date": "2020-01-21", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "576", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "347", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "403", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "284", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "553", "employeeId": "260", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "354", "date": "2020-01-21", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "293", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "282", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "372", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "136", "date": "2020-01-21", "location": "San Mateo - USA (HQ)", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Architect", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "298", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "388", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "561", "employeeId": "285", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "562", "employeeId": "365", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "141", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "147", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Lead Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "568", "employeeId": "324", "date": "2017-05-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "569", "employeeId": "313", "date": "2016-03-21", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "313", "date": "2017-01-23", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "332", "date": "2020-03-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "572", "employeeId": "116", "date": "2010-10-15", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Director, Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "573", "employeeId": "116", "date": "2017-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "340", "date": "2019-12-01", "location": "Remote - EMEA", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "355", "date": "2017-03-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Timicode)", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "334", "date": "2017-08-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "327", "date": "2017-07-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "321", "date": "2017-05-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "353", "date": "2018-07-01", "location": "Malm\u00f6 - Sweden", "department": "Product-EMEA", "division": "", "jobTitle": "Product Experience Designer", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "289", "date": "2015-01-01", "location": "Remote - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Sr. Manager of Pre-sales, Europe", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "333", "date": "2017-08-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "285", "date": "2014-09-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "615", "date": "2020-01-27", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "250", "date": "2020-01-27", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "178", "date": "2017-10-02", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "178", "date": "2019-05-29", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "178", "date": "2019-10-16", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "197", "date": "2018-04-30", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Marketing Operations Manager", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "322", "date": "2020-02-05", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "125", "date": "2020-01-18", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "401", "date": "2020-01-18", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "134", "date": "2020-01-18", "location": "San Mateo - USA (HQ)", "department": "Analytics", "division": "G&A", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "616", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "618", "date": "2020-02-03", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "292", "date": "2020-02-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager, Aura", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "414", "date": "2020-02-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Activation", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "605", "employeeId": "317", "date": "2020-02-04", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager, GQL Spec Editor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "371", "date": "2020-02-04", "location": "Remote - The Netherlands", "department": "Product-EMEA", "division": "", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "391", "date": "2020-01-27", "location": "London - UK", "department": "Sales (EMEA)", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "610", "employeeId": "323", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "619", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Professional Services, Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "259", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "294", "date": "2015-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. QA Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "349", "date": "2019-09-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "349", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "349", "date": "2018-05-07", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Scott Marino", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "361", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "378", "date": "2020-01-18", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "350", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "357", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Director for Professional Services EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "255", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "217", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "202", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "629", "employeeId": "243", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "393", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "233", "date": "2019-04-22", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "221", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "329", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "572", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "387", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "219", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "161", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "210", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "247", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "305", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "235", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "171", "date": "2020-02-05", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "229", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "399", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "573", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "212", "date": "2019-12-31", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "413", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "146", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "266", "date": "2020-02-05", "location": "Munich - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Developer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "295", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-sales Director", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "380", "date": "2020-02-05", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "170", "date": "2017-07-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering - East", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "123", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "341", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "130", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "234", "date": "2019-04-29", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "415", "date": "2020-02-05", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "216", "date": "2018-12-03", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "189", "date": "2019-11-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "320", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "289", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "184", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "663", "employeeId": "607", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "594", "date": "2020-01-13", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "198", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "599", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "228", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "601", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "127", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering, Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "185", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "172", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "181", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "180", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "674", "employeeId": "402", "date": "2020-02-05", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "405", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "315", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "677", "employeeId": "232", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "678", "employeeId": "287", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "257", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "258", "date": "2019-10-14", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "135", "date": "2020-02-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Customer Success", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "186", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "174", "date": "2020-02-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "254", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Lead Managed Service Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "252", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "227", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Manager", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "241", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "348", "date": "2020-02-01", "location": "Remote - Belgium", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "159", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "194", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "390", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "154", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Solutions Lab", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "356", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "182", "date": "2020-02-05", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "Technology Partner Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "581", "date": "2019-10-29", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Solutions Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "236", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Bus Dev Manager", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "167", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "SVP, Bus and Corp Dev", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "178", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "339", "date": "2017-09-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "583", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "340", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "603", "date": "2020-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "708", "employeeId": "312", "date": "2020-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "379", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "710", "employeeId": "190", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director of Sales, Western", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "169", "date": "2017-07-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "145", "date": "2020-01-07", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Channel, Americas", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "288", "date": "2020-02-05", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "580", "date": "2019-11-18", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "160", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "214", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "276", "date": "2020-02-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "406", "date": "2020-02-05", "location": "Remote - Italy", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Italy", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "223", "date": "2019-01-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "592", "date": "2020-01-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "595", "date": "2020-01-07", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "391", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "207", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "606", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "265", "date": "2020-02-05", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "119", "date": "2012-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "277", "date": "2016-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "126", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "729", "employeeId": "187", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "730", "employeeId": "300", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "731", "employeeId": "382", "date": "2020-02-05", "location": "Remote - Israel", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative, Israel", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "732", "employeeId": "211", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Alliance & Channel Manager, US", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "133", "date": "2018-02-20", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "201", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Accounts Representative", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "230", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "195", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "737", "employeeId": "588", "date": "2020-02-05", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "213", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Accounts Representative", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "618", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "150", "date": "2020-02-05", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Sales East", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "309", "date": "2020-02-05", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Director, CEMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "275", "date": "2020-02-05", "location": "Remote - EMEA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of APAC Channel", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "120", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "President, Field Operations and Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "225", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "179", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "142", "date": "2020-02-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "132", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "376", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative BeNeLux", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "218", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "153", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "156", "date": "2020-01-27", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "177", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "290", "date": "2020-02-05", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Sales Manager", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "267", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "215", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "128", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "152", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "281", "date": "2014-08-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "311", "date": "2016-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "412", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "383", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "781", "employeeId": "299", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "400", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "392", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "571", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "374", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "268", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "403", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "397", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "404", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "407", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "293", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "795", "employeeId": "381", "date": "2020-02-05", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "396", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "260", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "347", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "284", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "418", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "569", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "280", "date": "2020-02-05", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "587", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "408", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "335", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "411", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "301", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "372", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "810", "employeeId": "365", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "324", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "813", "employeeId": "421", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "327", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "321", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "386", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "602", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "285", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "259", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "294", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "361", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "339", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "281", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "578", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "297", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "410", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "314", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "328", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "332", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "362", "date": "2020-02-05", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "307", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "326", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "604", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "363", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "388", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "291", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "303", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "354", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "282", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "337", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "310", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "416", "date": "2020-02-05", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "283", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "308", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "273", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "VP, Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "853", "employeeId": "272", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "345", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "351", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "261", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "298", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "269", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "358", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "576", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "197", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Operations Mgr", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "582", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "593", "date": "2020-01-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "865", "employeeId": "617", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Technology Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "251", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "200", "date": "2018-05-21", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Communications", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "165", "date": "2017-05-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "246", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "278", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "163", "date": "2019-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer, Front-end UX", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "245", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "237", "date": "2019-05-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "875", "employeeId": "162", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "876", "employeeId": "199", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "256", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "139", "date": "2020-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "242", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "274", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "367", "date": "2019-04-26", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "176", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "138", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Global Market Development Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "224", "date": "2019-12-02", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Visual Designer", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "885", "employeeId": "248", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "188", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "129", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "244", "date": "2019-06-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "371", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "226", "date": "2019-03-04", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. Data Scientist", "reportsTo": "Jacob Graham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "203", "date": "2019-12-04", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for AI & Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "353", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management for Neo4j Developer Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "409", "date": "2020-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "317", "date": "2020-02-05", "location": "Munich - Germany", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, GQL Spec Editor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "121", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "206", "date": "2020-02-04", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management for Neo4j Visualization", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "352", "date": "2020-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management, Neo4j DBMS", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "238", "date": "2020-01-20", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "155", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "614", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Sales Development", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "158", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "173", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "370", "date": "2020-01-20", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "349", "date": "2020-01-20", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "204", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "166", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "336", "date": "2020-02-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "239", "date": "2020-01-20", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "157", "date": "2020-02-05", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "144", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "914", "employeeId": "125", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "270", "date": "2013-05-13", "location": "London - UK", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Field Sales Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "916", "employeeId": "270", "date": "2017-12-01", "location": "London - UK", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "270", "date": "2019-01-01", "location": "London - UK", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "620", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West/Central Region", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "621", "date": "2020-02-24", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "499", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Associate Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "923", "employeeId": "622", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Data Science Solution Architect", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "297", "date": "2015-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "318", "date": "2017-04-18", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "318", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "318", "date": "2019-09-23", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "928", "employeeId": "318", "date": "2018-06-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "332", "date": "2017-07-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "362", "date": "2018-10-15", "location": "Remote - Poland", "department": "Engineering-EMEA", "division": "", "jobTitle": "Performance Benchmarking Infrastructure Developer (Symentis)", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "401", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "307", "date": "2016-05-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "499", "date": "2019-06-10", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "934", "employeeId": "326", "date": "2017-06-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "379", "date": "2019-02-18", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "623", "date": "2019-12-09", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. SFDC Developer", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "624", "date": "2020-01-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Communications Generalist", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "625", "date": "2020-01-02", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "626", "date": "2020-01-06", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "941", "employeeId": "627", "date": "2017-12-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "628", "date": "2020-01-13", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "629", "date": "2017-01-10", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "629", "date": "2019-01-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "630", "date": "2020-02-10", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "631", "date": "2017-08-01", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "947", "employeeId": "164", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "317", "date": "2018-04-28", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "317", "date": "2018-06-28", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "312", "date": "2019-01-01", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "579", "date": "2019-12-10", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "605", "date": "2020-01-06", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Recruiter and Resourcer, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "363", "date": "2018-10-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "274", "date": "2018-01-22", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "274", "date": "2017-12-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "274", "date": "2014-01-20", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Director EMEA", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "263", "date": "2018-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "263", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "262", "date": "2019-01-01", "location": "Munich - Germany", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "313", "date": "2017-05-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "313", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "962", "employeeId": "306", "date": "2016-04-20", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "340", "date": "2019-03-08", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "291", "date": "2015-03-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "966", "employeeId": "322", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "", "jobTitle": "Renewal Sales Manager, EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "378", "date": "2020-02-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "378", "date": "2019-02-11", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "375", "date": "2019-01-16", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Accounting Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "970", "employeeId": "367", "date": "2018-11-27", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "971", "employeeId": "286", "date": "2018-11-02", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "286", "date": "2014-10-15", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "336", "date": "2020-01-18", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "336", "date": "2019-09-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "336", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "336", "date": "2017-08-21", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Marino", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "633", "date": "2020-03-02", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "373", "date": "2019-01-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "354", "date": "2018-07-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "282", "date": "2014-08-06", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "282", "date": "2019-03-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "337", "date": "2017-08-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "369", "date": "2018-04-16", "location": "London - UK", "department": "G&A-EMEA", "division": "", "jobTitle": "Part Time Recruiter (Penny Stevenson Consulting Ltd)", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "369", "date": "2018-10-01", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Part Time Recruiter (Penny Stevenson Consulting Ltd)", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "634", "date": "2020-04-01", "location": "Remote - Switzerland", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Rep. Switzerland/Austria", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "369", "date": "2019-01-01", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "987", "employeeId": "635", "date": "2020-04-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "310", "date": "2016-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "636", "date": "2020-03-02", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Aura Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "637", "date": "2020-03-02", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "283", "date": "2014-08-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "327", "date": "2016-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "377", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "308", "date": "2016-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "995", "employeeId": "319", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "319", "date": "2017-04-27", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "319", "date": "2019-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "272", "date": "2013-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "351", "date": "2018-06-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "356", "date": "2018-08-13", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Innovation Lab Leader, EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "298", "date": "2015-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "269", "date": "2013-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "358", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "302", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "302", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "302", "date": "2016-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "352", "date": "2018-06-07", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management (Athoa Ltd)", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "638", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "639", "date": "2020-03-02", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1010", "employeeId": "116", "date": "2019-03-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1011", "employeeId": "151", "date": "2017-01-03", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Jr. Sales Ops Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "342", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "269", "date": "2012-06-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "363", "date": "2018-01-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "377", "date": "2018-08-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "317", "date": "2013-01-07", "location": "Munich - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "353", "date": "2012-02-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Engineer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "204", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "138", "date": "2020-02-16", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "139", "date": "2020-02-18", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "134", "date": "2014-12-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Demand Generation", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "134", "date": "2017-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Marketing Ops & Analytics", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "134", "date": "2018-01-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Marketing Ops & Analytics", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1026", "employeeId": "164", "date": "2017-05-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "189", "date": "2018-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1028", "employeeId": "364", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "117", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "117", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "359", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "384", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1033", "employeeId": "384", "date": "2019-04-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Manager, IT", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "343", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Head of Analytics & Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "640", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1036", "employeeId": "131", "date": "2011-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "154", "date": "2015-09-14", "location": "Stockholm - Sweden", "department": "Marketing - EMEA", "division": "", "jobTitle": "Solutions Marketing Manager", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "301", "date": "2020-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "130", "date": "2020-02-25", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "162", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "129", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "248", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "593", "date": "2020-02-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "116", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "368", "date": "2019-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "317", "date": "2020-03-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1047", "employeeId": "275", "date": "2020-01-07", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Head of APAC Channel", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1048", "employeeId": "391", "date": "2020-02-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "323", "date": "2020-02-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "329", "date": "2020-03-01", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "203", "date": "2018-07-02", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. PM for AI & Graph Analytics", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1052", "employeeId": "405", "date": "2020-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "607", "date": "2020-03-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1054", "employeeId": "415", "date": "2020-03-01", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "341", "date": "2020-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "498", "date": "2019-06-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1057", "employeeId": "137", "date": "2015-04-13", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "137", "date": "2017-07-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "301", "date": "2020-03-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "642", "date": "2020-04-20", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "643", "date": "2020-03-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive, Northeast", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "644", "date": "2020-04-20", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "231", "date": "2020-03-16", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "226", "date": "2020-04-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "533", "date": "2020-05-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "645", "date": "2020-06-22", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "646", "date": "2020-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "647", "date": "2020-03-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "648", "date": "2020-03-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "649", "date": "2020-04-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "650", "date": "2020-05-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1074", "employeeId": "651", "date": "2020-03-23", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "652", "date": "2020-03-23", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "361", "date": "2020-03-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "176", "date": "2020-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director NA Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "653", "date": "2020-09-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "654", "date": "2019-03-04", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Temp", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "367", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "655", "date": "2020-04-06", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "APAC Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "255", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "217", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "202", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "243", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "233", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "221", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "640", "date": "2020-03-02", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "210", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "247", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "235", "date": "2020-02-10", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "229", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "212", "date": "2020-01-01", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "146", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "625", "date": "2020-02-10", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "244", "date": "2019-08-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "656", "date": "2020-04-06", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre Sales Engineer, OEM", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "245", "date": "2020-04-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "344", "date": "2020-04-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "658", "date": "2020-05-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "163", "date": "2020-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Web User Experience", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "224", "date": "2020-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Visual Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "659", "date": "2020-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Security Specialist", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "662", "date": "2020-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "663", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1109", "employeeId": "664", "date": "2020-05-11", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "665", "date": "2020-04-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "667", "date": "2020-04-30", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "333", "date": "2019-10-01", "location": "London - UK", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Developer Relations Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "245", "date": "2020-06-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "668", "date": "2020-05-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1116", "employeeId": "452", "date": "2015-01-19", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "460", "date": "2019-06-02", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, Human Resources", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "669", "date": "2020-06-03", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "670", "date": "2020-06-08", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Manager, EMEA", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "671", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "316", "date": "2020-07-15", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "672", "date": "2020-06-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "674", "date": "2020-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "676", "date": "2020-07-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "677", "date": "2021-08-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1128", "employeeId": "678", "date": "2020-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "679", "date": "2020-06-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1130", "employeeId": "546", "date": "2020-06-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "361", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "365", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1133", "employeeId": "283", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "131", "date": "2020-06-12", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "681", "date": "2020-06-01", "location": "Remote - France", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Scientific Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "682", "date": "2020-07-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "120", "date": "2020-05-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "President, Field Operations and Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "605", "date": "2020-06-24", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "684", "date": "2020-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "685", "date": "2020-08-03", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "370", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "336", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "378", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1146", "employeeId": "686", "date": "2020-08-01", "location": "Remote - EMEA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "687", "date": "2020-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "162", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "593", "date": "2020-07-09", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "129", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "248", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "688", "date": "2020-07-20", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "689", "date": "2020-07-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "690", "date": "2020-06-10", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Scientist", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "691", "date": "2020-07-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "693", "date": "2020-09-15", "location": "Remote - EMEA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "334", "date": "2020-07-20", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "283", "date": "2020-07-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "694", "date": "2020-07-01", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "695", "date": "2020-08-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "697", "date": "2020-09-14", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "696", "date": "2020-10-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "698", "date": "2020-09-02", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep, France", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "699", "date": "2020-08-24", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "700", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "701", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "702", "date": "2020-08-14", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Dirk Aschoff)", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "703", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "704", "date": "2020-09-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "705", "date": "2020-08-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Communication Specialist", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "706", "date": "2020-08-24", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "212", "date": "2020-07-01", "location": "Boston - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Project Director", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "268", "date": "2020-07-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "707", "date": "2020-11-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "157", "date": "2020-10-01", "location": "Boston - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "708", "date": "2020-09-01", "location": "Remote - Poland", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Rafal Janicki)", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "709", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1181", "employeeId": "710", "date": "2020-11-02", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "711", "date": "2020-09-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "712", "date": "2020-10-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "713", "date": "2020-10-01", "location": "Remote - France", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "138", "date": "2020-09-09", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "714", "date": "2020-09-28", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "715", "date": "2020-10-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "716", "date": "2020-09-21", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Cloud Managed Services Lead", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "717", "date": "2020-09-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "718", "date": "2020-09-28", "location": "Malm\u00f6 - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Director, Sales Operations", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "719", "date": "2020-09-21", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "720", "date": "2020-09-07", "location": "Remote - EMEA", "department": "Legal", "division": "G&A", "jobTitle": "EMEA Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "721", "date": "2020-09-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "722", "date": "2020-10-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amy Hodler", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "271", "date": "2020-09-23", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "403", "date": "2020-09-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "397", "date": "2020-09-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "723", "date": "2020-10-19", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Support Specialist", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "724", "date": "2020-09-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "725", "date": "2019-12-16", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketo Administrator", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "726", "date": "2020-12-01", "location": "Remote - Italy", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "727", "date": "2020-10-05", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "728", "date": "2020-11-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "616", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "633", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "615", "date": "2020-10-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "156", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "730", "date": "2020-05-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Consultant", "reportsTo": "Karin Wolok", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "651", "date": "2020-10-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "SDR Team Lead", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1212", "employeeId": "731", "date": "2020-10-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "732", "date": "2020-09-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Global Integrated Campaign Manager", "reportsTo": "Lauren McCormack", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "729", "date": "2020-11-02", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "734", "date": "2020-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "353", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "395", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "383", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "574", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "366", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "668", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "362", "date": "2020-10-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "310", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1225", "employeeId": "533", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "385", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "570", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "311", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "283", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "346", "date": "2020-10-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "404", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "396", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "684", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "294", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "332", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "269", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "330", "date": "2020-10-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "575", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "334", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "735", "date": "2021-01-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "736", "date": "2020-10-12", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Intern, Developer Relations", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "737", "date": "2020-10-12", "location": "Remote - Canada", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Solutions Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "738", "date": "2020-11-30", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "John Kennedy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "398", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "739", "date": "2021-01-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Enterprise", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1248", "employeeId": "740", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "419", "date": "2019-10-09", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "419", "date": "2020-10-19", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "686", "date": "2020-12-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "743", "date": "2020-11-16", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "744", "date": "2020-11-16", "location": "Remote - Beijing", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "745", "date": "2020-11-16", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "746", "date": "2021-01-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "747", "date": "2020-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "748", "date": "2020-12-14", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "749", "date": "2020-10-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "131", "date": "2020-10-01", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "751", "date": "2021-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "752", "date": "2020-12-07", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "741", "date": "2020-11-02", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "742", "date": "2020-12-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "753", "date": "2020-12-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1268", "employeeId": "754", "date": "2020-11-09", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1269", "employeeId": "755", "date": "2020-12-14", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "139", "date": "2015-06-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "292", "date": "2020-11-13", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager, Aura", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "756", "date": "2020-01-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Marketing Manager", "reportsTo": "Lauren McCormack", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "757", "date": "2020-11-17", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations DevOps Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "758", "date": "2021-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "759", "date": "2020-11-23", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director ASEAN", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "760", "date": "2021-02-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for Dev Tools", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "761", "date": "2021-01-11", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "274", "date": "2020-12-02", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Director, Enterprise Cloud Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "762", "date": "2020-12-21", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "VP, Global Cloud Partnerships", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "763", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "764", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "765", "date": "2020-12-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, OEM Sales", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "766", "date": "2020-12-14", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "767", "date": "2021-01-01", "location": "Stockholm - Sweden", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - Nordic", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "583", "date": "2020-12-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Data Engineer", "reportsTo": "John Kennedy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "768", "date": "2021-02-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "769", "date": "2020-12-14", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "770", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "605", "date": "2021-05-03", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "771", "date": "2021-01-04", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1292", "employeeId": "772", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1293", "employeeId": "773", "date": "2021-01-04", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "774", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "775", "date": "2021-01-04", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director APAC Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "776", "date": "2021-03-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1297", "employeeId": "725", "date": "2020-12-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1298", "employeeId": "777", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "778", "date": "2020-12-14", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "VP, People", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "1", "date": "2020-12-14", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, Human Resources", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "381", "date": "2021-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "780", "date": "2020-12-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "262", "date": "2021-01-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Director, Global Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "116", "date": "2020-12-14", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "319", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "402", "date": "2021-01-01", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "315", "date": "2021-01-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "782", "date": "2021-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "783", "date": "2021-01-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "139", "date": "2020-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "691", "date": "2020-12-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "582", "date": "2020-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "785", "date": "2021-05-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "786", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "787", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "788", "date": "2021-02-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "419", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "115", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Generalist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "1", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "116", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People & Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "117", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, People, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "149", "date": "2020-12-14", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "EA and Office Manager, America", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "790", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "791", "date": "2021-01-11", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "792", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "793", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "794", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "795", "date": "2021-01-11", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "590", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "796", "date": "2021-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "206", "date": "2021-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of PM for Neo4j User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "356", "date": "2021-01-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "798", "date": "2019-10-07", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "799", "date": "2021-04-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "800", "date": "2021-04-19", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "212", "date": "2021-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Cloud Programs", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "801", "date": "2019-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "269", "date": "2021-01-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "802", "date": "2021-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "803", "date": "2021-03-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "804", "date": "2020-03-23", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "797", "date": "2021-01-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Competitive and Enablement Product Marketing Director", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "626", "date": "2021-01-11", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "142", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "226", "date": "2021-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of PM for Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "197", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "237", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Global Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "251", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1355", "employeeId": "155", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1356", "employeeId": "158", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Sales Development", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1357", "employeeId": "173", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1358", "employeeId": "199", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "256", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "805", "date": "2021-03-15", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "806", "date": "2021-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "174", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "600", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office & People Strategy Coordinator", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "414", "date": "2021-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "312", "date": "2021-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "336", "date": "2021-01-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "807", "date": "2021-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1368", "employeeId": "225", "date": "2021-01-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "627", "date": "2021-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering - APAC", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "244", "date": "2021-01-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "715", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1372", "employeeId": "804", "date": "2021-01-26", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "251", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "199", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "782", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "808", "date": "2021-02-08", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "809", "date": "2021-02-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "810", "date": "2021-04-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1379", "employeeId": "196", "date": "2019-10-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Partner Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "489", "date": "2019-09-11", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "293", "date": "2021-02-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "801", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "798", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, East", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "479", "date": "2017-03-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Director Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "440", "date": "2017-03-04", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Systems Administration Manager", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1387", "employeeId": "497", "date": "2019-01-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "812", "date": "2021-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Content Analyst", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "813", "date": "2021-02-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "199", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Content", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "715", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "804", "date": "2021-02-08", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "251", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "782", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Deb Cameron", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "244", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Deb Cameron", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "806", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Jessica Baumgardner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "814", "date": "2021-04-08", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Senior Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "815", "date": "2021-04-05", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "628", "date": "2021-02-15", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "816", "date": "2021-03-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "817", "date": "2021-03-15", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "818", "date": "2021-03-15", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "819", "date": "2021-03-22", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "713", "date": "2021-03-01", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "820", "date": "2021-03-15", "location": "Boston - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. Manager, People Strategy", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "138", "date": "2021-02-25", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "821", "date": "2021-02-22", "location": "Remote - India", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "133", "date": "2018-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "822", "date": "2021-06-01", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "823", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1412", "employeeId": "824", "date": "2021-03-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "745", "date": "2021-01-11", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "825", "date": "2021-03-08", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "UK Country Director", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "665", "date": "2021-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "667", "date": "2021-01-01", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "771", "date": "2021-01-04", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "826", "date": "2021-03-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Sales Enablement", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "605", "date": "2021-03-03", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "131", "date": "2021-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "277", "date": "2021-04-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, UK", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "231", "date": "2021-03-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Merton Thompson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "827", "date": "2021-03-08", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "828", "date": "2021-06-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "829", "date": "2021-03-15", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "830", "date": "2021-06-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "831", "date": "2021-05-24", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "832", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX Designer", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "319", "date": "2021-03-08", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "352", "date": "2021-04-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "833", "date": "2021-04-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "834", "date": "2021-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1434", "employeeId": "419", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Specialist", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "835", "date": "2021-04-19", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Graph Data Science Product Manager", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1436", "employeeId": "178", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Armida Mandadero", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "117", "date": "2021-03-17", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. Manager, People, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "836", "date": "2021-06-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "716", "date": "2021-03-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Managed Services Lead", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "263", "date": "2009-10-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "263", "date": "2011-05-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "636", "date": "2021-03-22", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Aura Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "837", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "838", "date": "2021-03-22", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "741", "date": "2021-03-19", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "256", "date": "2021-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "801", "date": "2021-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "839", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "842", "date": "2021-05-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - DACH Region", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1453", "employeeId": "843", "date": "2021-04-12", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Armida Mandadero", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "844", "date": "2021-04-01", "location": "Remote - Italy", "department": "Legal", "division": "G&A", "jobTitle": "Legal Contractor", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "845", "date": "2021-04-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "590", "date": "2021-04-12", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "846", "date": "2021-04-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Blog Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "847", "date": "2021-04-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "848", "date": "2021-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "849", "date": "2021-04-05", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "744", "date": "2021-04-05", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "219", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "638", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "850", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Integrations Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "850", "date": "2017-06-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "370", "date": "2021-04-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Specialist", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "851", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "852", "date": "2021-06-01", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "853", "date": "2021-04-19", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Iberia & Italy Region", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1470", "employeeId": "854", "date": "2021-04-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "855", "date": "2021-04-12", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "582", "date": "2021-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Demand Generation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "808", "date": "2021-04-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "856", "date": "2021-05-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1476", "employeeId": "857", "date": "2021-04-26", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "LATAM Channel & Alliances Manager", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "858", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "859", "date": "2021-04-26", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "860", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Director", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "150", "date": "2021-04-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "240", "date": "2021-04-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "253", "date": "2021-04-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Merton Thompson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "861", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "General Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "862", "date": "2021-06-14", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "304", "date": "2021-05-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "813", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "758", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "697", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "368", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "577", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "569", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "646", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "587", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "374", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "703", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "389", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "314", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "707", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "863", "date": "2021-05-03", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1500", "employeeId": "636", "date": "2021-05-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Manager, Neo4j Aura", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "741", "date": "2021-04-22", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "744", "date": "2021-04-22", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "815", "date": "2021-04-22", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "864", "date": "2020-06-26", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Freelancer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "865", "date": "2021-04-26", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "664", "date": "2021-04-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1507", "employeeId": "866", "date": "2021-05-17", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "821", "date": "2021-04-23", "location": "Remote - India", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "642", "date": "2021-04-23", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "144", "date": "2021-04-23", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "623", "date": "2021-04-23", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. SFDC Developer", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1512", "employeeId": "705", "date": "2021-05-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Analyst Relations", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "867", "date": "2021-07-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1514", "employeeId": "225", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "790", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "793", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "700", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "869", "date": "2021-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "870", "date": "2021-06-28", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "871", "date": "2021-05-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "872", "date": "2021-08-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "873", "date": "2021-05-10", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1524", "employeeId": "874", "date": "2021-05-17", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1525", "employeeId": "336", "date": "2021-07-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - EMEA", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "875", "date": "2021-08-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "876", "date": "2021-06-01", "location": "Remote - Canada", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager - Bloom", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "877", "date": "2021-07-26", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1529", "employeeId": "756", "date": "2021-05-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "878", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "879", "date": "2021-08-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager Germany", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1532", "employeeId": "880", "date": "2021-06-30", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "881", "date": "2021-08-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "882", "date": "2021-08-02", "location": "Malm\u00f6 - Sweden", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "883", "date": "2021-07-26", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "884", "date": "2021-07-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "736", "date": "2021-06-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Data Science Technology Specialist", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "885", "date": "2021-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Web Development Intern", "reportsTo": "Paul Dessert", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "886", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UI/UX Design Intern", "reportsTo": "Shreyans Gandhi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "887", "date": "2021-05-24", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "200", "date": "2021-05-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "888", "date": "2021-06-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1543", "employeeId": "244", "date": "2021-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "889", "date": "2021-06-01", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1545", "employeeId": "890", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "891", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Testing Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "892", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "857", "date": "2021-06-01", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "LATAM Channel & Alliances Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "893", "date": "2021-08-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "894", "date": "2021-08-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "895", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "895", "date": "2014-02-24", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Sales Rep, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "896", "date": "2021-06-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "844", "date": "2021-06-01", "location": "Remote - Italy", "department": "Legal", "division": "G&A", "jobTitle": "Legal Contractor", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "897", "date": "2021-07-05", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "898", "date": "2021-07-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "899", "date": "2021-06-14", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Business Systems Analyst (Jr. Salesforce Admin)", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "300", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Karl Sj\u00f6borg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1560", "employeeId": "606", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Karl Sj\u00f6borg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "240", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "253", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "901", "date": "2021-06-16", "location": "Remote - India", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1565", "employeeId": "669", "date": "2021-06-09", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer and Researcher", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "822", "date": "2021-06-09", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "278", "date": "2021-06-07", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "296", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "686", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "367", "date": "2021-06-07", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1571", "employeeId": "722", "date": "2021-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "231", "date": "2021-06-14", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "902", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1574", "employeeId": "280", "date": "2021-06-14", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1575", "employeeId": "903", "date": "2021-08-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Social Media Marketing", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "904", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1577", "employeeId": "905", "date": "2021-11-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "854", "date": "2021-06-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1580", "employeeId": "907", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "908", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "343", "date": "2021-07-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "865", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "909", "date": "2021-10-04", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "910", "date": "2021-10-25", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead PM, Aura Platform", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "651", "date": "2021-07-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Development", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1587", "employeeId": "639", "date": "2021-07-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "829", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1589", "employeeId": "773", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "709", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "774", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1592", "employeeId": "859", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "155", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "807", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "173", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "652", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "791", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1598", "employeeId": "704", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1599", "employeeId": "911", "date": "2021-08-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "USA Federal Channel & Alliances Director", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1600", "employeeId": "912", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "900", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "VP, Global Revenue Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "772", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "913", "date": "2021-08-02", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1604", "employeeId": "326", "date": "2021-07-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "282", "date": "2021-07-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1606", "employeeId": "914", "date": "2021-09-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "915", "date": "2021-09-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1609", "employeeId": "664", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1610", "employeeId": "144", "date": "2021-07-06", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "642", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "852", "date": "2021-07-06", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "916", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "918", "date": "2021-07-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1617", "employeeId": "919", "date": "2021-08-11", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "920", "date": "2021-07-19", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "682", "date": "2021-07-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1620", "employeeId": "162", "date": "2017-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "921", "date": "2021-09-20", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Application Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "922", "date": "2021-07-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1623", "employeeId": "923", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Nordics", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "924", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - UK", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "925", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - UK/Benelux", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "927", "date": "2021-09-07", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "926", "date": "2021-09-02", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for Developer Experience", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "928", "date": "2021-07-26", "location": "Remote - China", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1629", "employeeId": "929", "date": "2021-09-27", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1630", "employeeId": "930", "date": "2021-08-09", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "190", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1632", "employeeId": "162", "date": "2021-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "629", "date": "2021-07-30", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "353", "date": "2010-09-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "G&A", "jobTitle": "Field Engineer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1635", "employeeId": "292", "date": "2021-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "931", "date": "2021-08-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "932", "date": "2021-10-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "933", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1639", "employeeId": "600", "date": "2021-07-26", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Specialist", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "934", "date": "2021-08-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director Alliances and Channels", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "935", "date": "2021-08-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1642", "employeeId": "936", "date": "2021-08-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Marketing", "reportsTo": "Maya Sampath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "236", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Director, Global Cloud and ISV Partnerships", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1644", "employeeId": "278", "date": "2021-11-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "937", "date": "2021-09-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "191", "date": "2021-01-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "245", "date": "2021-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "818", "date": "2021-06-05", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "938", "date": "2021-08-23", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "939", "date": "2021-08-30", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "940", "date": "2021-08-23", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer - LatAm", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "364", "date": "2021-10-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Chief of Staff / Director of Product Operations", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "941", "date": "2021-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "942", "date": "2021-09-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "943", "date": "2021-08-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "944", "date": "2021-09-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "945", "date": "2021-08-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Marketing Coordinator", "reportsTo": "Rence Holt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "605", "date": "2021-08-16", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "369", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "866", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "838", "date": "2021-08-16", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "946", "date": "2021-09-07", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "582", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "947", "date": "2021-10-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "948", "date": "2021-10-18", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "951", "date": "2021-08-30", "location": "Remote - China", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "952", "date": "2021-09-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Tara Jana", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "953", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "954", "date": "2021-10-04", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "299", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "955", "date": "2021-09-27", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "956", "date": "2021-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Events Specialist", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "957", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "958", "date": "2021-10-11", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "959", "date": "2021-05-17", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consultant", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "801", "date": "2021-08-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "756", "date": "2021-08-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital Marketing", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "960", "date": "2022-01-03", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "961", "date": "2021-11-22", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1682", "employeeId": "962", "date": "2021-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "546", "date": "2021-09-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "963", "date": "2021-09-27", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "587", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "646", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "331", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "355", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "400", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1690", "employeeId": "674", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "752", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "748", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "796", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Developer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "803", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "847", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "836", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "368", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "577", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "569", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "831", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1701", "employeeId": "410", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "848", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "891", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Testing Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "269", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "291", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "301", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "324", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "327", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "363", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "411", "date": "2021-09-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "416", "date": "2021-09-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1712", "employeeId": "578", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "381", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1714", "employeeId": "785", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "931", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "964", "date": "2021-09-20", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting/Payroll Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1717", "employeeId": "965", "date": "2021-09-07", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Database / Email Marketer", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "966", "date": "2021-09-08", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "313", "date": "2021-09-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "644", "date": "2021-09-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "967", "date": "2021-09-27", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "968", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "970", "date": "2021-09-08", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "823", "date": "2021-09-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "971", "date": "2021-09-13", "location": "Remote - Canada", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "972", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "639", "date": "2021-09-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Team Lead-Outbound", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1729", "employeeId": "686", "date": "2021-10-28", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "973", "date": "2021-11-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1731", "employeeId": "974", "date": "2021-09-27", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "975", "date": "2021-10-04", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "178", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Lydia Browne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1734", "employeeId": "843", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Lydia Browne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "976", "date": "2021-09-28", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1736", "employeeId": "316", "date": "2021-04-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1738", "employeeId": "978", "date": "2021-09-21", "location": "Remote - Singapore", "department": "Business Development", "division": "G&A", "jobTitle": "APAC Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "979", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "980", "date": "2021-11-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Benelux", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1741", "employeeId": "981", "date": "2021-10-11", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "982", "date": "2021-11-22", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "983", "date": "2021-12-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "984", "date": "2021-10-17", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Partner Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "985", "date": "2021-10-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "763", "date": "2021-09-20", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "986", "date": "2021-11-02", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "987", "date": "2021-11-30", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "988", "date": "2021-09-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Joann Neuhaus", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "369", "date": "2021-09-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "866", "date": "2021-09-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "605", "date": "2021-09-22", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "268", "date": "2021-09-30", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1754", "employeeId": "802", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "421", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1756", "employeeId": "645", "date": "2021-09-30", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "875", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "351", "date": "2021-09-30", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1759", "employeeId": "297", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "839", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "628", "date": "2021-09-30", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "611", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1763", "employeeId": "337", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "687", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "648", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "914", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "728", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "302", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "286", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "281", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "335", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "317", "date": "2021-09-30", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "361", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "365", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "989", "date": "2021-11-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "990", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Principal, Partner Solutions & Technology", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1777", "employeeId": "991", "date": "2021-10-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "992", "date": "2021-11-01", "location": "London - UK", "department": "Business Development", "division": "G&A", "jobTitle": "EMEA Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "993", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "994", "date": "2021-11-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "995", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Product Led Marketing Demand Generation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1782", "employeeId": "778", "date": "2021-09-29", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1783", "employeeId": "273", "date": "2021-09-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "SVP Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "121", "date": "2021-09-29", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "SVP Product", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "996", "date": "2021-10-18", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "838", "date": "2021-09-22", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "197", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1788", "employeeId": "725", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "969", "date": "2021-10-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1790", "employeeId": "783", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "997", "date": "2021-10-18", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "Director Global Cloud Channel Architecture", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1792", "employeeId": "998", "date": "2021-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Events Specialist", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "999", "date": "2021-11-15", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "262", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "329", "date": "2021-10-15", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "864", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Freelancer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "353", "date": "2021-10-15", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1799", "employeeId": "854", "date": "2021-10-15", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1800", "employeeId": "922", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "757", "date": "2021-10-15", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations DevOps Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1802", "employeeId": "887", "date": "2021-10-15", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "694", "date": "2021-10-15", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "182", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1805", "employeeId": "761", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "205", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Principal Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "192", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1808", "employeeId": "951", "date": "2021-10-15", "location": "Remote - China", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "143", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1810", "employeeId": "1000", "date": "2022-01-05", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Architect", "reportsTo": "James Freeman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "1001", "date": "2021-10-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Operations Analyst Intern", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1812", "employeeId": "1002", "date": "2021-10-18", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "1003", "date": "2021-10-18", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1814", "employeeId": "1004", "date": "2021-10-18", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "EMEA Digital Marketing and Engagement Director", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "1005", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "1006", "date": "2022-01-24", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "413", "date": "2021-10-01", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "1007", "date": "2021-10-18", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "1008", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "977", "date": "2021-10-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1822", "employeeId": "1009", "date": "2022-01-04", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Vice President, IT", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "1010", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1824", "employeeId": "257", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "180", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1826", "employeeId": "198", "date": "2021-10-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "367", "date": "2021-11-01", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "1011", "date": "2021-10-25", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1829", "employeeId": "178", "date": "2021-10-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "843", "date": "2021-10-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1831", "employeeId": "184", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "189", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1833", "employeeId": "1012", "date": "2021-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "1013", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1835", "employeeId": "1014", "date": "2021-11-29", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for GraphQL", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "1015", "date": "2021-11-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1837", "employeeId": "1016", "date": "2021-11-15", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "806", "date": "2021-10-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "1017", "date": "2022-01-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "1018", "date": "2021-11-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "1019", "date": "2021-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1842", "employeeId": "866", "date": "2022-01-01", "location": "London - UK", "department": "Human Resources", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "1020", "date": "2022-04-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1844", "employeeId": "134", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "943", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "942", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "668", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "362", "date": "2021-11-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1849", "employeeId": "310", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "729", "date": "2021-11-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "280", "date": "2021-11-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1852", "employeeId": "916", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "697", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1854", "employeeId": "758", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "813", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "304", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "326", "date": "2021-11-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "1021", "date": "2021-12-13", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "914", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "648", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "947", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "361", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "728", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "875", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1865", "employeeId": "337", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "302", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1867", "employeeId": "802", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "645", "date": "2021-11-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1869", "employeeId": "335", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "365", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "421", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "611", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "268", "date": "2021-11-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "687", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1875", "employeeId": "281", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "297", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1877", "employeeId": "839", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "962", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1879", "employeeId": "317", "date": "2021-11-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "286", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1881", "employeeId": "351", "date": "2021-11-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "838", "date": "2021-11-08", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1883", "employeeId": "605", "date": "2021-11-08", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "369", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "866", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "546", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1887", "employeeId": "628", "date": "2021-11-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1022", "date": "2022-01-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1023", "date": "2021-11-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Competitive Analyst Consultant", "reportsTo": "Thomas Lindsey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1891", "employeeId": "1025", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1026", "date": "2021-11-15", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1893", "employeeId": "1027", "date": "2021-12-13", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1028", "date": "2022-01-10", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - LatAm", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1895", "employeeId": "1024", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Global Corporate Sales", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "1029", "date": "2022-01-03", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive, LatAm", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1898", "employeeId": "1030", "date": "2021-11-15", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "1031", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "1032", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Information Security Officer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "1033", "date": "2021-11-22", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1902", "employeeId": "1034", "date": "2022-01-17", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Director, UK/IE & Benelux", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "1035", "date": "2022-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "919", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1905", "employeeId": "253", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "240", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "231", "date": "2021-11-08", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "822", "date": "2021-11-08", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1909", "employeeId": "1036", "date": "2021-12-09", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1037", "date": "2021-12-13", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Channel and Alliances Director", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1911", "employeeId": "1038", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "1039", "date": "2022-01-15", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1040", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "VP, Global Customer Support", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "1041", "date": "2022-02-07", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1915", "employeeId": "1042", "date": "2021-12-15", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "1043", "date": "2021-12-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1917", "employeeId": "1044", "date": "2022-01-10", "location": "Boston - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "VP, Global Talent Acquisition", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1045", "date": "2022-01-10", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success, Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "1046", "date": "2021-12-09", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "1047", "date": "2021-12-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "1048", "date": "2022-01-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "1049", "date": "2021-12-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "1050", "date": "2021-12-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Joann Neuhaus", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1924", "employeeId": "783", "date": "2021-12-06", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "1051", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "1052", "date": "2022-01-10", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "900", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Global Revenue Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "197", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "642", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "134", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "664", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "144", "date": "2021-12-01", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "821", "date": "2021-12-01", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "725", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "852", "date": "2021-12-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "413", "date": "2021-12-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "1053", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Operations Lead", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "1054", "date": "2022-03-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "374", "date": "2021-12-29", "location": "Remote - Australia", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "1055", "date": "2022-01-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1056", "date": "2022-02-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Data Science Solution Architect", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "1057", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "VP, Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "213", "date": "2021-11-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "1058", "date": "2022-02-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "587", "date": "2021-12-16", "location": "Remote - Canada", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Senior Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "763", "date": "2022-01-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "786", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Specialist, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "359", "date": "2022-01-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Principal Analyst, Global Business Strategy & Planning", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "1059", "date": "2022-09-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "1060", "date": "2022-01-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1061", "date": "2022-01-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1062", "date": "2022-01-24", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager Iberia", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1063", "date": "2022-02-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "280", "date": "2021-12-22", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "678", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "787", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "713", "date": "2021-12-21", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "740", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "647", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "751", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "576", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "850", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Integrations Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "339", "date": "2021-12-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "354", "date": "2021-12-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "1064", "date": "2022-03-01", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager, Professional Services EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "921", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Application Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "386", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "659", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Security Specialist", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "332", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "872", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "894", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "684", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "294", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "396", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "994", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "1065", "date": "2022-01-03", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "1066", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1067", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "1068", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Partner Manager", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "1069", "date": "2022-02-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "846", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "806", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "919", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "253", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "240", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "231", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "965", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "822", "date": "2022-01-05", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "1072", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "1073", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "1074", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director of Customer Success, EMEA", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "1075", "date": "2022-02-15", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager, EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "639", "date": "2022-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "829", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "704", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1076", "date": "2022-01-04", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "1077", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "965", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "686", "date": "2022-01-08", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2005", "employeeId": "858", "date": "2022-01-08", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2006", "employeeId": "582", "date": "2022-01-08", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "995", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Product Led Marketing Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "682", "date": "2022-01-08", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "367", "date": "2022-01-08", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "862", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "336", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - EMEA", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1078", "date": "2022-02-07", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "829", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1033", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "704", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "639", "date": "2022-01-04", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "209", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2025", "employeeId": "1079", "date": "2022-03-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "584", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "981", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "1080", "date": "2022-01-10", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "227", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Manager", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1081", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "365", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "293", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "264", "date": "2022-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "299", "date": "2022-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "972", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2038", "employeeId": "671", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "636", "date": "2022-01-04", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Manager, Neo4j Aura", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "264", "date": "2016-11-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1083", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2043", "employeeId": "309", "date": "2022-01-09", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Sales, DACH & Emerging Regions", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "825", "date": "2022-01-09", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "UK Country Director", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2045", "employeeId": "895", "date": "2022-01-09", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, Nordics", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "265", "date": "2022-01-09", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "980", "date": "2022-01-09", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Benelux", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "588", "date": "2022-01-09", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "584", "date": "2022-01-10", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1010", "date": "2022-01-10", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "312", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Manager - EMEA", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2053", "employeeId": "670", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Manager, EMEA", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "958", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "603", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "986", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "376", "date": "2022-01-09", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative BeNeLux", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1084", "date": "2022-01-24", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "985", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "187", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "792", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "629", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "727", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "888", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "207", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "1085", "date": "2022-01-18", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "901", "date": "2022-01-10", "location": "Remote - India", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "1086", "date": "2022-01-17", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "1088", "date": "2022-03-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "EMEA Channel & Alliances Manager", "reportsTo": "Morten Schlosser", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "1089", "date": "2022-02-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "1090", "date": "2022-01-24", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "1004", "date": "2022-01-19", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Digital Marketing and Engagement EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "1091", "date": "2022-04-19", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Field Operations Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "414", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "739", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Enterprise", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "910", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead PM, Aura Platform", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "159", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "826", "date": "2022-01-09", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Sales Enablement", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "1092", "date": "2022-02-14", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "356", "date": "2022-01-09", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "1093", "date": "2022-09-01", "location": "Remote - Sweden", "department": "Legal", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "194", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "587", "date": "2022-01-01", "location": "Remote - Canada", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "772", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "250", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "348", "date": "2022-01-01", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "1095", "date": "2022-03-28", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "700", "date": "2022-01-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "152", "date": "2022-01-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "1096", "date": "2022-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "1097", "date": "2022-04-04", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "1098", "date": "2022-01-24", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "1099", "date": "2022-01-31", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "707", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "1100", "date": "2022-03-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Renewals", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2104", "employeeId": "1101", "date": "2022-02-07", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "1102", "date": "2022-02-14", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer - Aura", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "1103", "date": "2022-05-10", "location": "Stockholm - Sweden", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Marketing, Nordics (Senior Manager)", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "245", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "669", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "182", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "971", "date": "2022-02-01", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "719", "date": "2022-01-31", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "762", "date": "2022-02-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Partnerships", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "236", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Director, Global Cloud and ISV Partnerships", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "965", "date": "2022-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "582", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "163", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "682", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "200", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "676", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "775", "date": "2022-02-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "858", "date": "2022-02-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "614", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "367", "date": "2022-02-02", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "737", "date": "2022-02-01", "location": "Remote - Canada", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Partner Solutions Architect", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "1104", "date": "2022-04-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director PreSales EMEA South", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "1105", "date": "2022-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Competitive Intelligence Analyst", "reportsTo": "Thomas Lindsey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "1085", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "818", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "719", "date": "2022-02-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "997", "date": "2022-02-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Director Global Cloud Channel Architecture", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "143", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "978", "date": "2022-02-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "APAC Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "1080", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "192", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "205", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "138", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "761", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "951", "date": "2022-02-01", "location": "Remote - China", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "757", "date": "2022-02-01", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "864", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Freelancer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "694", "date": "2022-02-01", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "329", "date": "2022-02-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "887", "date": "2022-02-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "278", "date": "2022-02-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "262", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "353", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "854", "date": "2022-02-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "922", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "992", "date": "2022-02-01", "location": "London - UK", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "EMEA Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "1107", "date": "2022-03-07", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "1108", "date": "2022-02-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Intern", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "165", "date": "2020-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Americas Corporate and Digital Events", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "1060", "date": "2022-02-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "1061", "date": "2022-02-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "1109", "date": "2022-02-15", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "1110", "date": "2022-03-21", "location": "Remote - Singapore", "department": "Recruiting", "division": "G&A", "jobTitle": "People Strategy & Talent Acquisition Lead, APAC", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "1111", "date": "2022-02-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "1112", "date": "2022-05-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "1113", "date": "2022-03-21", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "1114", "date": "2022-02-28", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "1115", "date": "2022-03-07", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "1116", "date": "2022-02-28", "location": "Boston - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "1118", "date": "2022-02-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "1119", "date": "2022-03-21", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "1120", "date": "2022-02-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "1121", "date": "2022-04-01", "location": "Remote - Japan", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "773", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "626", "date": "2022-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, ANZ", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "174", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "186", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "855", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "991", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "816", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "374", "date": "2022-01-01", "location": "Remote - Australia", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "628", "date": "2022-01-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Consultant", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "242", "date": "2022-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "199", "date": "2022-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "176", "date": "2022-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2186", "employeeId": "775", "date": "2022-01-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "206", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM for Neo4j User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "364", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Chief of Staff / Senior Director of Product Operations", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "226", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM for Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "820", "date": "2022-01-01", "location": "Boston - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "149", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "141", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "629", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "599", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "180", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2196", "employeeId": "257", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "177", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "170", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "184", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "189", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "127", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "178", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "A/P Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "499", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "192", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "143", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Staff Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2206", "employeeId": "205", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "324", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "351", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "327", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "329", "date": "2022-01-01", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "304", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "850", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "837", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "648", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "647", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "355", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "668", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "927", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "395", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "604", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "334", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "856", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2223", "employeeId": "383", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "796", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "400", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "747", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "576", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "734", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "751", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2230", "employeeId": "758", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "679", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "578", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "921", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2234", "employeeId": "712", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "883", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "347", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "286", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "332", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "331", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "831", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "662", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "385", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "328", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "389", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "1051", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "994", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "962", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "947", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "1012", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "361", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "802", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "403", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "570", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "891", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "574", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "421", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "398", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "365", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "684", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "602", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2261", "employeeId": "678", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "396", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "293", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "297", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "298", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "848", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "291", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "785", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "314", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "635", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "281", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "310", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "283", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "311", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "335", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "611", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "659", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "337", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "269", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "294", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "410", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "687", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "674", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "613", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "392", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "944", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "307", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "812", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "260", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "575", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "131", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "703", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "368", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "386", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "366", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "301", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "302", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "373", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "372", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "388", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "321", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "116", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "VP, People and Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "268", "date": "2022-02-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "713", "date": "2022-02-01", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "317", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "710", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "316", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "339", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "346", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "411", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "354", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "352", "date": "2022-01-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM, Neo4j Database", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "729", "date": "2022-02-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "362", "date": "2022-02-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "280", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "416", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "909", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "330", "date": "2022-02-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "757", "date": "2022-01-01", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "685", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Regional Manager", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "312", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Manager - EMEA", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "649", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "399", "date": "2022-01-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "845", "date": "2022-01-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "309", "date": "2022-01-01", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Sales, DACH & Emerging Regions", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "653", "date": "2022-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "759", "date": "2022-01-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, China", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "1018", "date": "2022-01-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "745", "date": "2022-01-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "601", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "699", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "232", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "594", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "937", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "770", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "889", "date": "2022-01-01", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "755", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "228", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "824", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "592", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "769", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "851", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "1015", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "401", "date": "2022-03-01", "location": "Stockholm - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, Global Compensation and People", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "1122", "date": "2022-03-14", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "685", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Regional Manager", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "340", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "788", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "870", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "884", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "1017", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "1055", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "1006", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "986", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "603", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "1124", "date": "2022-02-28", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "1117", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "1126", "date": "2022-03-07", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "1127", "date": "2022-03-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "981", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "393", "date": "2022-03-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Customer Post Sales Enablement Manager", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "178", "date": "2022-02-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "A/P Staff Accountant", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "843", "date": "2022-02-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "1084", "date": "2022-02-28", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "1128", "date": "2022-03-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "295", "date": "2022-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Director Sales Engineering", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "1129", "date": "2022-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "182", "date": "2022-03-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "971", "date": "2022-03-01", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "719", "date": "2022-03-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "200", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "775", "date": "2022-03-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "676", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "176", "date": "2022-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "176", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "262", "date": "2022-03-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "1130", "date": "2022-06-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "1131", "date": "2022-05-23", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "583", "date": "2022-03-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Data Engineer", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "738", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "1132", "date": "2022-05-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "858", "date": "2022-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "1133", "date": "2022-05-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "1134", "date": "2022-02-22", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "1136", "date": "2022-04-25", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Benelux", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "221", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Regional Manager", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "1138", "date": "2022-06-06", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "1139", "date": "2022-03-05", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "243", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "210", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "235", "date": "2022-03-01", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "233", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "202", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "1140", "date": "2022-03-21", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Partner Cloud Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "1141", "date": "2022-03-28", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Community Specialist", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "1142", "date": "2022-04-25", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - UK Corporate", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "1143", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "1144", "date": "2022-04-04", "location": "Remote - Mexico", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "1145", "date": "2022-04-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "1146", "date": "2022-04-04", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "621", "date": "2020-10-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "1147", "date": "2022-04-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "1148", "date": "2022-05-16", "location": "London - UK", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "1149", "date": "2022-06-27", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Partner Cloud Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "1150", "date": "2022-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Tara Jana", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "1060", "date": "2022-06-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "1151", "date": "2022-03-28", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "1152", "date": "2022-04-25", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "EMEA Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "1154", "date": "2022-04-11", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "1155", "date": "2022-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "1156", "date": "2022-04-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "1157", "date": "2022-06-20", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "319", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "1158", "date": "2022-04-26", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "907", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "1159", "date": "2022-04-04", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Consultant", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "1160", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2423", "employeeId": "1161", "date": "2022-05-02", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2424", "employeeId": "1162", "date": "2022-05-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, SaaS Growth", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "1163", "date": "2022-03-28", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "1164", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "1165", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "1166", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "1167", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "1168", "date": "2022-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "1169", "date": "2022-04-19", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Executive Assistant", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "1170", "date": "2022-04-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "SEO Specialist Contractor", "reportsTo": "Paul Dessert", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "1171", "date": "2022-04-04", "location": "Remote - Mexico", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "1172", "date": "2022-04-18", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "1173", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "1174", "date": "2022-04-01", "location": "Remote - Australia", "department": "Legal", "division": "G&A", "jobTitle": "Outside Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "865", "date": "2022-04-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Associate Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "1175", "date": "2022-04-25", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "144", "date": "2022-04-01", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sales Compensation Director", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "1176", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "1178", "date": "2022-05-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "1179", "date": "2022-05-02", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2444", "employeeId": "1180", "date": "2022-04-25", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1181", "date": "2022-04-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1182", "date": "2022-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "405", "date": "2022-04-01", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1183", "date": "2022-04-25", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Developer Organic Marketing", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "1184", "date": "2022-04-25", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Query Language Designer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1185", "date": "2022-06-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "1186", "date": "2022-05-02", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1187", "date": "2022-04-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "908", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1188", "date": "2022-05-02", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer - Security Practitioner", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1061", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "298", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2458", "employeeId": "347", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2459", "employeeId": "602", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "679", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "712", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "747", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "856", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "881", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1089", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1155", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Thesis Intern", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "330", "date": "2022-04-19", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "574", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "883", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "953", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1051", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2472", "employeeId": "687", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "297", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "839", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1129", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "281", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "268", "date": "2022-04-19", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2478", "employeeId": "1190", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "546", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "696", "date": "2022-04-11", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "380", "date": "2022-04-11", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "287", "date": "2022-04-11", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "726", "date": "2022-04-11", "location": "Remote - Italy", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "932", "date": "2022-04-11", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "320", "date": "2022-04-11", "location": "Remote - Belgium", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "413", "date": "2022-03-30", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "852", "date": "2022-03-30", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1191", "date": "2022-06-20", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer UK", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1193", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Dave Dunbar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "664", "date": "2022-03-30", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "197", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "783", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "725", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1194", "date": "2022-05-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2496", "employeeId": "1195", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "334", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "1196", "date": "2022-05-02", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1197", "date": "2022-05-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Enterprise Sales Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "135", "date": "2022-04-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Operations Manager", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1198", "date": "2022-06-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1199", "date": "2022-04-25", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1200", "date": "2022-05-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1201", "date": "2022-05-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1203", "date": "2022-05-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1204", "date": "2022-04-25", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "1205", "date": "2022-05-23", "location": "Remote - The Netherlands", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2509", "employeeId": "1206", "date": "2022-07-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1207", "date": "2022-05-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "197", "date": "2022-04-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1208", "date": "2022-05-23", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1209", "date": "2022-08-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1210", "date": "2022-05-09", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Intern", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1211", "date": "2022-06-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1212", "date": "2022-06-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Representative Germany", "reportsTo": "Heiko Sch\u00f6nfelder", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2517", "employeeId": "134", "date": "2022-03-30", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1213", "date": "2022-09-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1214", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Global Sales Enablement", "reportsTo": "Brian Enright", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1215", "date": "2022-06-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Intern", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "1216", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "117", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People - EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "1217", "date": "2022-05-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1053", "date": "2022-05-15", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Operations Lead", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "1219", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Corporate Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "1220", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1222", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2530", "employeeId": "1223", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1224", "date": "2022-09-01", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Marketing (Senior Manager) DACH", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1225", "date": "2022-06-13", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Strategic Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "1228", "date": "2022-06-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "1229", "date": "2022-07-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager - Enterprise Cloud", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1230", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1231", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accounts Payable Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1233", "date": "2022-07-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "G.R.E.T.A. Sales and Marketing Enabler", "reportsTo": "Brian Enright", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1227", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "677", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "706", "date": "2022-05-24", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "753", "date": "2022-06-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Global Cloud Sales", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1232", "date": "2022-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2545", "employeeId": "1234", "date": "2022-06-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Strategic Accounts UK, Country Lead for France, Middle East, Africa and Israel", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "1235", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "686", "date": "2022-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "846", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "199", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "715", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "804", "date": "2022-05-23", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "806", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1019", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "1043", "date": "2022-05-23", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "705", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Analyst Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "163", "date": "2022-05-24", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "682", "date": "2022-05-24", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "903", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Social Media Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "1237", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Marketing Systems and Campaign Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "1238", "date": "2022-07-25", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager for APIs", "reportsTo": "Ian Pollard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "1239", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Director of Talent Acquisition Operations", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "318", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Director Finance, EMEA and APAC", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "1240", "date": "2022-06-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Data Science Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1241", "date": "2022-06-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2566", "employeeId": "1242", "date": "2022-06-06", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1243", "date": "2022-06-13", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1244", "date": "2022-07-18", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2569", "employeeId": "245", "date": "2022-05-02", "location": "San Mateo - USA (HQ)", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "852", "date": "2022-06-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1245", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1246", "date": "2022-07-04", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1247", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Data Science Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1248", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "1250", "date": "2022-08-01", "location": "Remote - Italy", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "1251", "date": "2022-07-11", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative, DACH", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "1252", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "290", "date": "2022-06-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Sales Manager", "reportsTo": "Heiko Sch\u00f6nfelder", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1254", "date": "2022-07-05", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2582", "employeeId": "1255", "date": "2022-07-18", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Strategic Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "1256", "date": "2022-06-27", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Customer Advocate", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1258", "date": "2022-07-18", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Partner Sales Engineer - GSI", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "897", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "989", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "808", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1036", "date": "2022-06-01", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2590", "employeeId": "219", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Nathan Zamecnik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "638", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Nathan Zamecnik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1260", "date": "2022-07-25", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2593", "employeeId": "1261", "date": "2022-06-27", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive - LATAM", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1259", "date": "2022-06-15", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Opportunity Discovery Agent", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2595", "employeeId": "1262", "date": "2023-01-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2598", "employeeId": "1264", "date": "2022-07-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2599", "employeeId": "546", "date": "2022-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1265", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1266", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "1267", "date": "2022-07-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1268", "date": "2022-08-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "832", "date": "2022-06-27", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "187", "date": "2022-08-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Program Manager", "reportsTo": "Sumeet Toprani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "1269", "date": "2022-07-18", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2607", "employeeId": "1270", "date": "2022-08-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1272", "date": "2022-06-28", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "937", "date": "2022-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1274", "date": "2022-09-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Manager Channels and Alliances", "reportsTo": "Morten Schlosser", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1275", "date": "2022-07-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2612", "employeeId": "952", "date": "2022-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1150", "date": "2022-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "1276", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - UK", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1277", "date": "2022-06-30", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1278", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "207", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "888", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "727", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "187", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "1062", "date": "2022-07-01", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "924", "date": "2022-07-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "GDS Sales Specialist", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "382", "date": "2022-07-01", "location": "Remote - Israel", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative, Israel", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "588", "date": "2022-07-01", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "265", "date": "2022-07-01", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "408", "date": "2022-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2628", "employeeId": "1280", "date": "2022-07-05", "location": "Boston - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Dir. of Recruiting, Field Ops & Mkting", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1281", "date": "2022-10-10", "location": "Remote - France", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel EMEA", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2630", "employeeId": "1100", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Renewals", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1283", "date": "2022-08-31", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Manager - EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1284", "date": "2022-10-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - DACH", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "813", "date": "2022-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1285", "date": "2022-10-10", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2635", "employeeId": "1266", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "600", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Specialist", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "630", "date": "2022-07-05", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "996", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "165", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Global Events and Experiences", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2640", "employeeId": "682", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "163", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "199", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2643", "employeeId": "846", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "801", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2645", "employeeId": "1004", "date": "2022-07-05", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Global Digital Marketing and Engagement", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "197", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "725", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "783", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2649", "employeeId": "1286", "date": "2022-07-11", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2650", "employeeId": "1287", "date": "2022-07-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "953", "date": "2022-07-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "912", "date": "2022-07-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "1288", "date": "2022-09-06", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1289", "date": "2022-10-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "CRM Data Steward", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1291", "date": "2022-07-18", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior Manager, IT Operations", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1292", "date": "2022-08-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "384", "date": "2022-07-09", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "222", "date": "2022-07-09", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "863", "date": "2022-07-09", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1099", "date": "2022-06-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1293", "date": "2022-08-08", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1294", "date": "2022-08-22", "location": "Remote - Singapore", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1295", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer Federal", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "798", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, Central", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1296", "date": "2022-08-08", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1297", "date": "2022-08-22", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief of Staff to CEO", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1301", "date": "2022-08-28", "location": "Remote - Israel", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "384", "date": "2022-07-18", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "863", "date": "2022-07-18", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1303", "date": "2022-12-01", "location": "Remote - Germany", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Data Science", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1304", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "629", "date": "2022-07-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "978", "date": "2022-07-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "APAC Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1305", "date": "2022-08-08", "location": "Remote - India", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Tech Community Manager", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "1306", "date": "2022-08-16", "location": "Remote - Spain", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1290", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1298", "date": "2022-09-26", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "1155", "date": "2022-10-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1300", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "1307", "date": "2022-11-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager - Neo4j Database", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "792", "date": "2022-07-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1126", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "736", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director GDS Technology", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "348", "date": "2022-08-01", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1254", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "1308", "date": "2022-09-12", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1309", "date": "2022-05-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jon Bettinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1310", "date": "2022-08-08", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Belgium", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1271", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1311", "date": "2022-08-22", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1312", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2692", "employeeId": "1313", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2693", "employeeId": "664", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2694", "employeeId": "135", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Operations Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2695", "employeeId": "413", "date": "2022-08-08", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2696", "employeeId": "1176", "date": "2022-08-08", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2697", "employeeId": "1154", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2698", "employeeId": "144", "date": "2022-08-08", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sales Compensation Director", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2699", "employeeId": "1314", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2700", "employeeId": "1315", "date": "2022-08-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2701", "employeeId": "1316", "date": "2022-10-03", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2702", "employeeId": "1317", "date": "2022-09-12", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2703", "employeeId": "1320", "date": "2022-09-19", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer - Aura", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2704", "employeeId": "805", "date": "2022-07-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2705", "employeeId": "573", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2706", "employeeId": "845", "date": "2022-07-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2707", "employeeId": "399", "date": "2022-07-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2708", "employeeId": "975", "date": "2022-07-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2709", "employeeId": "1037", "date": "2022-07-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Channel and Alliances Director", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2710", "employeeId": "984", "date": "2022-07-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Partner Manager", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2711", "employeeId": "1323", "date": "2022-08-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Operations Analyst", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2712", "employeeId": "1318", "date": "2022-08-30", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Governance Risk & Compliance Practitioner", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2713", "employeeId": "1324", "date": "2022-08-15", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2714", "employeeId": "1325", "date": "2022-09-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr Product Marketing Manager", "reportsTo": "Megan Tomlin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2715", "employeeId": "1326", "date": "2022-09-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2716", "employeeId": "1327", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2717", "employeeId": "1328", "date": "2022-09-19", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2718", "employeeId": "1329", "date": "2022-09-06", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2719", "employeeId": "1330", "date": "2022-09-07", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2720", "employeeId": "1321", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Operations Analyst", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2721", "employeeId": "1302", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2722", "employeeId": "1299", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2723", "employeeId": "1273", "date": "2022-09-26", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2724", "employeeId": "1322", "date": "2022-10-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2725", "employeeId": "1319", "date": "2022-10-25", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2726", "employeeId": "1331", "date": "2022-09-12", "location": "Remote - Brazil", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2727", "employeeId": "1332", "date": "2022-09-01", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2728", "employeeId": "1140", "date": "2022-09-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2729", "employeeId": "1333", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2730", "employeeId": "403", "date": "2022-09-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2731", "employeeId": "1334", "date": "2022-09-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2732", "employeeId": "663", "date": "2022-09-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2733", "employeeId": "1335", "date": "2022-09-12", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Support Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2734", "employeeId": "158", "date": "2022-09-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2735", "employeeId": "651", "date": "2022-09-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2736", "employeeId": "1083", "date": "2022-09-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2737", "employeeId": "1275", "date": "2022-09-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2738", "employeeId": "1336", "date": "2022-09-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2739", "employeeId": "1120", "date": "2022-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2740", "employeeId": "946", "date": "2022-08-30", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2741", "employeeId": "702", "date": "2022-08-30", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Dirk Aschoff)", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2742", "employeeId": "832", "date": "2022-08-30", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2743", "employeeId": "1093", "date": "2022-09-08", "location": "Remote - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2744", "employeeId": "412", "date": "2022-11-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2745", "employeeId": "1338", "date": "2022-09-19", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2746", "employeeId": "970", "date": "2022-08-30", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2747", "employeeId": "1098", "date": "2022-08-30", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2748", "employeeId": "1134", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2749", "employeeId": "1026", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2750", "employeeId": "1163", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2751", "employeeId": "292", "date": "2022-09-02", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2752", "employeeId": "1339", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2753", "employeeId": "1340", "date": "2022-10-03", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2754", "employeeId": "1342", "date": "2022-09-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2755", "employeeId": "1341", "date": "2022-11-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2756", "employeeId": "1343", "date": "2022-10-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Communications", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2757", "employeeId": "767", "date": "2022-10-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Deal Desk Specialist", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2758", "employeeId": "1344", "date": "2022-10-10", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2759", "employeeId": "1345", "date": "2022-09-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2760", "employeeId": "1346", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2761", "employeeId": "1348", "date": "2022-10-03", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2762", "employeeId": "1349", "date": "2022-12-19", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accounts Payable Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2763", "employeeId": "202", "date": "2022-10-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2764", "employeeId": "1244", "date": "2022-10-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2765", "employeeId": "730", "date": "2022-09-26", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2766", "employeeId": "1350", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2767", "employeeId": "1351", "date": "2021-09-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2768", "employeeId": "1352", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2769", "employeeId": "1353", "date": "2022-10-10", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2770", "employeeId": "1347", "date": "2022-10-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2771", "employeeId": "1080", "date": "2022-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2772", "employeeId": "278", "date": "2022-10-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2773", "employeeId": "353", "date": "2022-10-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2774", "employeeId": "1356", "date": "2022-09-05", "location": "", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2775", "employeeId": "1357", "date": "2022-10-17", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2776", "employeeId": "401", "date": "2022-10-01", "location": "Stockholm - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Manager, Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2777", "employeeId": "1358", "date": "2022-11-07", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Compensation Analyst", "reportsTo": "Daniel Tacchi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2779", "employeeId": "1360", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2781", "employeeId": "606", "date": "2023-01-01", "location": "Remote - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2782", "employeeId": "157", "date": "2022-10-17", "location": "Boston - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2784", "employeeId": "633", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2785", "employeeId": "616", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2786", "employeeId": "615", "date": "2022-10-07", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2787", "employeeId": "633", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2788", "employeeId": "616", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2789", "employeeId": "615", "date": "2022-10-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2790", "employeeId": "1362", "date": "2022-10-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2791", "employeeId": "706", "date": "2022-10-17", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2792", "employeeId": "1098", "date": "2022-10-17", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2793", "employeeId": "1360", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2794", "employeeId": "155", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2795", "employeeId": "968", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2796", "employeeId": "1090", "date": "2022-10-07", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2797", "employeeId": "173", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2798", "employeeId": "652", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2799", "employeeId": "791", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2800", "employeeId": "1223", "date": "2022-10-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2801", "employeeId": "1073", "date": "2022-10-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2802", "employeeId": "1363", "date": "2022-10-31", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2803", "employeeId": "1243", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2804", "employeeId": "1067", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "Facilities", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2805", "employeeId": "149", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "Facilities", "division": "G&A", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2806", "employeeId": "1209", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2807", "employeeId": "778", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2808", "employeeId": "981", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2809", "employeeId": "1353", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2810", "employeeId": "1330", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2811", "employeeId": "1329", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2812", "employeeId": "820", "date": "2022-11-01", "location": "Boston - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2813", "employeeId": "1105", "date": "2022-10-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Competitive Intelligence Analyst", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2814", "employeeId": "930", "date": "2022-11-01", "location": "London - UK", "department": "Facilities", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2815", "employeeId": "319", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2816", "employeeId": "116", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People and Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2817", "employeeId": "786", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Specialist, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2818", "employeeId": "866", "date": "2022-11-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2819", "employeeId": "117", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Director, People - EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2820", "employeeId": "401", "date": "2022-11-01", "location": "Stockholm - Sweden", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2821", "employeeId": "1093", "date": "2022-11-01", "location": "Remote - Sweden", "department": "People", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2822", "employeeId": "1364", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2823", "employeeId": "1366", "date": "2022-11-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2824", "employeeId": "1008", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2825", "employeeId": "1005", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2826", "employeeId": "801", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2827", "employeeId": "1367", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2828", "employeeId": "1368", "date": "2022-11-28", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2830", "employeeId": "1369", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2831", "employeeId": "1035", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2832", "employeeId": "299", "date": "2022-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2833", "employeeId": "972", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2834", "employeeId": "671", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2835", "employeeId": "366", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2836", "employeeId": "1370", "date": "2022-01-31", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2837", "employeeId": "1370", "date": "2022-11-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2838", "employeeId": "1371", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2839", "employeeId": "803", "date": "2022-10-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2840", "employeeId": "1355", "date": "2022-11-14", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2841", "employeeId": "979", "date": "2022-11-14", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2842", "employeeId": "1372", "date": "2022-12-12", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2843", "employeeId": "1365", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2844", "employeeId": "1373", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Brand Strategy and Creative", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2845", "employeeId": "1065", "date": "2022-11-07", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2846", "employeeId": "289", "date": "2022-11-07", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2847", "employeeId": "653", "date": "2022-11-07", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2848", "employeeId": "267", "date": "2022-11-07", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2849", "employeeId": "343", "date": "2022-11-07", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2850", "employeeId": "1375", "date": "2022-11-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Philip Wardell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2851", "employeeId": "795", "date": "2022-11-07", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2852", "employeeId": "580", "date": "2022-11-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2853", "employeeId": "595", "date": "2022-11-07", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2854", "employeeId": "119", "date": "2022-11-07", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2855", "employeeId": "1327", "date": "2022-11-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2856", "employeeId": "1278", "date": "2022-11-07", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2857", "employeeId": "171", "date": "2022-11-07", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2858", "employeeId": "172", "date": "2022-11-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2859", "employeeId": "1376", "date": "2023-01-02", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Self Serve DBaaS", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2861", "employeeId": "1361", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2862", "employeeId": "1354", "date": "2023-01-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2863", "employeeId": "1374", "date": "2023-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2864", "employeeId": "827", "date": "2022-04-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineering Lead, ASEAN & India", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2865", "employeeId": "1378", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2866", "employeeId": "1379", "date": "2023-01-05", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive - Benelux", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2867", "employeeId": "264", "date": "2022-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2868", "employeeId": "1381", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Federal Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2869", "employeeId": "587", "date": "2022-12-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2870", "employeeId": "1382", "date": "2023-01-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, Graph Data Science", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2871", "employeeId": "369", "date": "2022-11-28", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2872", "employeeId": "353", "date": "2022-12-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Platforms & Analytics Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2873", "employeeId": "1383", "date": "2022-12-12", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Dave Dunbar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2874", "employeeId": "812", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2875", "employeeId": "662", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2876", "employeeId": "837", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2877", "employeeId": "1232", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2878", "employeeId": "328", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2879", "employeeId": "392", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2880", "employeeId": "1298", "date": "2022-12-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2881", "employeeId": "1200", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2882", "employeeId": "604", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2883", "employeeId": "1006", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2884", "employeeId": "646", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2885", "employeeId": "909", "date": "2022-12-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2886", "employeeId": "1168", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2887", "employeeId": "796", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2888", "employeeId": "368", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2889", "employeeId": "569", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2890", "employeeId": "1341", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2891", "employeeId": "957", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2892", "employeeId": "831", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2893", "employeeId": "1384", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2894", "employeeId": "1385", "date": "2023-02-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Philip Wardell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2895", "employeeId": "1386", "date": "2023-03-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2896", "employeeId": "1387", "date": "2022-12-19", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "AP Manager", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2897", "employeeId": "1389", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Revenue Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2898", "employeeId": "1388", "date": "2022-12-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineering Consultant", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2899", "employeeId": "1390", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Content & Storytelling", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2900", "employeeId": "1304", "date": "2022-12-10", "location": "Malm\u00f6 - Sweden", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2901", "employeeId": "605", "date": "2022-12-10", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2902", "employeeId": "1315", "date": "2022-12-10", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2903", "employeeId": "1391", "date": "2023-02-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2904", "employeeId": "381", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2905", "employeeId": "1392", "date": "2022-12-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Executive Business Partner", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2906", "employeeId": "1393", "date": "2023-01-03", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Deal Desk Analyst", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2907", "employeeId": "1394", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP of Corporate FP&A", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2908", "employeeId": "343", "date": "2022-12-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2909", "employeeId": "1065", "date": "2022-12-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2910", "employeeId": "653", "date": "2022-12-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2911", "employeeId": "289", "date": "2022-12-05", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2912", "employeeId": "316", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2913", "employeeId": "869", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2914", "employeeId": "373", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2915", "employeeId": "358", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2916", "employeeId": "1128", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2917", "employeeId": "267", "date": "2022-12-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2918", "employeeId": "795", "date": "2022-12-05", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2919", "employeeId": "580", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2920", "employeeId": "595", "date": "2022-12-05", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2921", "employeeId": "119", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2922", "employeeId": "1278", "date": "2022-12-05", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2923", "employeeId": "171", "date": "2022-12-05", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2924", "employeeId": "172", "date": "2022-12-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2925", "employeeId": "1395", "date": "2023-01-11", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2927", "employeeId": "1397", "date": "2023-02-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2928", "employeeId": "593", "date": "2022-12-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2929", "employeeId": "941", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2930", "employeeId": "691", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2931", "employeeId": "1264", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2932", "employeeId": "1025", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2933", "employeeId": "1327", "date": "2022-12-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2934", "employeeId": "1111", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2935", "employeeId": "711", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2936", "employeeId": "708", "date": "2022-12-10", "location": "Remote - Poland", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Rafal Janicki)", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2937", "employeeId": "1145", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2938", "employeeId": "1344", "date": "2022-12-07", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2939", "employeeId": "1139", "date": "2022-12-07", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2940", "employeeId": "867", "date": "2022-12-07", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2941", "employeeId": "832", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2942", "employeeId": "946", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2943", "employeeId": "1120", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2944", "employeeId": "1008", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2945", "employeeId": "1080", "date": "2022-12-10", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2946", "employeeId": "353", "date": "2022-12-10", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Platforms & Analytics Manager, Developer Community", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2947", "employeeId": "278", "date": "2022-12-10", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2948", "employeeId": "911", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "USA Federal Channel & Alliances Director", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2949", "employeeId": "1068", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Partner Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2950", "employeeId": "1066", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2951", "employeeId": "639", "date": "2023-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2952", "employeeId": "1033", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2953", "employeeId": "862", "date": "2023-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2954", "employeeId": "336", "date": "2023-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2955", "employeeId": "206", "date": "2022-09-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM, GDS and User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2956", "employeeId": "912", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2957", "employeeId": "1353", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2958", "employeeId": "1330", "date": "2023-01-03", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2959", "employeeId": "880", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2960", "employeeId": "898", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2961", "employeeId": "877", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2962", "employeeId": "1031", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2963", "employeeId": "406", "date": "2023-01-01", "location": "Remote - Italy", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Italy", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2964", "employeeId": "1062", "date": "2023-01-01", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2965", "employeeId": "879", "date": "2023-01-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager Germany", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2966", "employeeId": "300", "date": "2023-01-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2968", "employeeId": "1398", "date": "2023-01-09", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2970", "employeeId": "135", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Director, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2971", "employeeId": "1239", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People & Talent Operations", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2972", "employeeId": "1400", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2973", "employeeId": "1068", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2974", "employeeId": "1401", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2975", "employeeId": "1402", "date": "2023-01-17", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2976", "employeeId": "1403", "date": "2023-01-23", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2977", "employeeId": "865", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2978", "employeeId": "353", "date": "2023-01-14", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2979", "employeeId": "329", "date": "2023-01-14", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2980", "employeeId": "319", "date": "2023-01-09", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2981", "employeeId": "1399", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP Revenue Operations & Strategy", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2982", "employeeId": "587", "date": "2023-01-14", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2983", "employeeId": "1363", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2984", "employeeId": "854", "date": "2023-01-14", "location": "Remote - Belgium", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2985", "employeeId": "887", "date": "2023-01-14", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2986", "employeeId": "694", "date": "2023-01-14", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2987", "employeeId": "864", "date": "2023-01-14", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Freelancer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2988", "employeeId": "278", "date": "2023-01-14", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2989", "employeeId": "757", "date": "2023-01-14", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2990", "employeeId": "1115", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2991", "employeeId": "143", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2992", "employeeId": "1080", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2993", "employeeId": "192", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2994", "employeeId": "205", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Curriculum Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2995", "employeeId": "1022", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2996", "employeeId": "947", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2997", "employeeId": "421", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2998", "employeeId": "335", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2999", "employeeId": "645", "date": "2023-01-16", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3000", "employeeId": "802", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3001", "employeeId": "1367", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3002", "employeeId": "1369", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3003", "employeeId": "839", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3004", "employeeId": "1213", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3005", "employeeId": "943", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3006", "employeeId": "668", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3007", "employeeId": "310", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3008", "employeeId": "362", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3009", "employeeId": "729", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3010", "employeeId": "942", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3011", "employeeId": "1243", "date": "2023-01-23", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3012", "employeeId": "936", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Marketing", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3013", "employeeId": "846", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3014", "employeeId": "806", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3015", "employeeId": "1019", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3016", "employeeId": "804", "date": "2023-01-03", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3017", "employeeId": "405", "date": "2023-01-20", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3018", "employeeId": "380", "date": "2023-01-20", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3019", "employeeId": "185", "date": "2023-01-02", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3020", "employeeId": "1241", "date": "2023-01-26", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3021", "employeeId": "1230", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3022", "employeeId": "599", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3023", "employeeId": "1404", "date": "2023-02-13", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Regional Manager", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3024", "employeeId": "1405", "date": "2023-01-30", "location": "Remote - Spain", "department": "", "division": "", "jobTitle": "Test Manager", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3025", "employeeId": "1127", "date": "2023-02-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3026", "employeeId": "1150", "date": "2023-02-14", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3027", "employeeId": "952", "date": "2023-02-14", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3028", "employeeId": "190", "date": "2023-02-06", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3029", "employeeId": "1049", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3030", "employeeId": "871", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3031", "employeeId": "150", "date": "2023-02-06", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3032", "employeeId": "177", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3033", "employeeId": "1328", "date": "2023-02-13", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3034", "employeeId": "1176", "date": "2023-02-13", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3035", "employeeId": "413", "date": "2023-02-13", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3036", "employeeId": "1406", "date": "2023-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sales Development - Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3037", "employeeId": "664", "date": "2023-02-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3038", "employeeId": "1154", "date": "2023-02-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3039", "employeeId": "774", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3040", "employeeId": "773", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3041", "employeeId": "859", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3042", "employeeId": "1346", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3043", "employeeId": "1181", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3044", "employeeId": "974", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3045", "employeeId": "968", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3046", "employeeId": "791", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3047", "employeeId": "1223", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3048", "employeeId": "1360", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3049", "employeeId": "1073", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3051", "employeeId": "1090", "date": "2022-12-05", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3052", "employeeId": "1407", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, North America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3053", "employeeId": "741", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3054", "employeeId": "744", "date": "2023-02-01", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3055", "employeeId": "1102", "date": "2023-02-01", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3056", "employeeId": "1053", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3057", "employeeId": "955", "date": "2023-02-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3058", "employeeId": "983", "date": "2023-02-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3059", "employeeId": "1228", "date": "2023-02-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3060", "employeeId": "343", "date": "2023-02-21", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3061", "employeeId": "1176", "date": "2023-02-21", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3062", "employeeId": "1328", "date": "2023-02-21", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3063", "employeeId": "413", "date": "2023-02-21", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3064", "employeeId": "1409", "date": "2023-02-06", "location": "Remote - Brazil", "department": "", "division": "", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3065", "employeeId": "1410", "date": "2023-02-06", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3066", "employeeId": "1411", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3067", "employeeId": "1269", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3068", "employeeId": "191", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3069", "employeeId": "1412", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3070", "employeeId": "1413", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3071", "employeeId": "1414", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3072", "employeeId": "1415", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3073", "employeeId": "1416", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3074", "employeeId": "1408", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3075", "employeeId": "1417", "date": "2023-05-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3076", "employeeId": "1418", "date": "2023-03-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director for Public Relations", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3077", "employeeId": "1419", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3078", "employeeId": "1420", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3079", "employeeId": "1421", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3080", "employeeId": "1422", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3081", "employeeId": "1207", "date": "2023-02-21", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3083", "employeeId": "871", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3084", "employeeId": "190", "date": "2023-02-13", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3085", "employeeId": "150", "date": "2023-02-13", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3086", "employeeId": "1049", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3087", "employeeId": "177", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3088", "employeeId": "716", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3089", "employeeId": "1000", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Architect", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3090", "employeeId": "664", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3091", "employeeId": "1154", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3092", "employeeId": "1424", "date": "2023-03-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3093", "employeeId": "1425", "date": "2023-04-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Chief Product Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3094", "employeeId": "688", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3095", "employeeId": "1254", "date": "2023-02-24", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3096", "employeeId": "985", "date": "2023-02-24", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3097", "employeeId": "907", "date": "2023-06-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3098", "employeeId": "1165", "date": "2023-06-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3099", "employeeId": "1426", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3100", "employeeId": "1427", "date": "2023-06-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3101", "employeeId": "1428", "date": "2023-01-30", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3102", "employeeId": "1429", "date": "2023-02-13", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3103", "employeeId": "1430", "date": "2023-03-20", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3104", "employeeId": "706", "date": "2023-03-07", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Caroline De Souza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3105", "employeeId": "1431", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3106", "employeeId": "1432", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3107", "employeeId": "1433", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3108", "employeeId": "1434", "date": "2023-02-13", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3109", "employeeId": "1435", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3110", "employeeId": "1436", "date": "2022-09-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3111", "employeeId": "1437", "date": "2022-08-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3112", "employeeId": "1438", "date": "2023-02-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3113", "employeeId": "1439", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3114", "employeeId": "1440", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3115", "employeeId": "1441", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3116", "employeeId": "1442", "date": "2022-10-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3117", "employeeId": "1175", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Talent Operations Specialist", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3119", "employeeId": "1005", "date": "2023-03-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Corporate Events Manager", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3120", "employeeId": "1098", "date": "2023-01-01", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Social Media Manager", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3121", "employeeId": "771", "date": "2023-03-16", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Partner Sales Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3122", "employeeId": "1295", "date": "2023-04-03", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales-Engineer Federal", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3123", "employeeId": "1443", "date": "2023-03-27", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Associate", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3124", "employeeId": "803", "date": "2023-03-27", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3125", "employeeId": "1444", "date": "2023-04-11", "location": "Remote - France", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3126", "employeeId": "1445", "date": "2023-03-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Analyst Relations", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3127", "employeeId": "1446", "date": "2023-03-27", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3128", "employeeId": "1149", "date": "2023-01-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3129", "employeeId": "1002", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3130", "employeeId": "1178", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3131", "employeeId": "1397", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3132", "employeeId": "771", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Partner Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3133", "employeeId": "1258", "date": "2023-03-20", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3134", "employeeId": "1007", "date": "2023-03-20", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3135", "employeeId": "1308", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3136", "employeeId": "1160", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3139", "employeeId": "117", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3140", "employeeId": "786", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "People Operations Specialist", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3141", "employeeId": "384", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT Operations", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3142", "employeeId": "1335", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3143", "employeeId": "981", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3144", "employeeId": "1329", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3145", "employeeId": "958", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3146", "employeeId": "1205", "date": "2023-01-01", "location": "Remote - The Netherlands", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3147", "employeeId": "695", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3148", "employeeId": "1048", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3149", "employeeId": "1092", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3150", "employeeId": "1350", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3151", "employeeId": "126", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3152", "employeeId": "195", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3153", "employeeId": "685", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Regional Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3154", "employeeId": "636", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3155", "employeeId": "227", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3156", "employeeId": "1053", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3157", "employeeId": "1255", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3158", "employeeId": "1340", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3159", "employeeId": "727", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3160", "employeeId": "980", "date": "2023-01-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, EMEA South", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3161", "employeeId": "147", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3162", "employeeId": "164", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3163", "employeeId": "983", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3164", "employeeId": "1228", "date": "2023-01-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3165", "employeeId": "714", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3166", "employeeId": "794", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3167", "employeeId": "938", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3168", "employeeId": "955", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3169", "employeeId": "1156", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3170", "employeeId": "252", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3171", "employeeId": "723", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3172", "employeeId": "1063", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3173", "employeeId": "659", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3174", "employeeId": "816", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3175", "employeeId": "141", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3176", "employeeId": "1247", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3177", "employeeId": "755", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3178", "employeeId": "393", "date": "2023-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3179", "employeeId": "977", "date": "2023-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3180", "employeeId": "827", "date": "2023-01-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3181", "employeeId": "611", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3182", "employeeId": "728", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3183", "employeeId": "317", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3184", "employeeId": "648", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3185", "employeeId": "575", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3186", "employeeId": "533", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3187", "employeeId": "735", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3188", "employeeId": "1201", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3189", "employeeId": "1074", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP Customer Success, EMEA/APAC", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3190", "employeeId": "619", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services - Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3191", "employeeId": "716", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3192", "employeeId": "872", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3193", "employeeId": "1095", "date": "2023-01-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3194", "employeeId": "828", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Principal Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3195", "employeeId": "707", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3196", "employeeId": "916", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3197", "employeeId": "1270", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3198", "employeeId": "603", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3199", "employeeId": "625", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Team Lead", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3200", "employeeId": "363", "date": "2023-01-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3201", "employeeId": "830", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3202", "employeeId": "973", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3203", "employeeId": "1185", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3204", "employeeId": "116", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People Strategy and Business Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3205", "employeeId": "866", "date": "2023-01-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Generalist", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3206", "employeeId": "297", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3207", "employeeId": "748", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3208", "employeeId": "847", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3209", "employeeId": "836", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3210", "employeeId": "192", "date": "2023-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3211", "employeeId": "353", "date": "2023-01-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3212", "employeeId": "329", "date": "2023-01-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3213", "employeeId": "698", "date": "2023-01-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Rep - France", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3214", "employeeId": "401", "date": "2023-01-01", "location": "Stockholm - Sweden", "department": "People", "division": "G&A", "jobTitle": "Principal Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3215", "employeeId": "878", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3216", "employeeId": "798", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3217", "employeeId": "939", "date": "2023-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3218", "employeeId": "1041", "date": "2023-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3219", "employeeId": "926", "date": "2023-01-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for DX", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3220", "employeeId": "206", "date": "2023-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, GDS & User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3221", "employeeId": "352", "date": "2023-01-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, Neo4j Database", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3222", "employeeId": "884", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3223", "employeeId": "340", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3224", "employeeId": "870", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3225", "employeeId": "1122", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3226", "employeeId": "1320", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3227", "employeeId": "744", "date": "2023-01-01", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3228", "employeeId": "929", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3229", "employeeId": "1102", "date": "2023-01-01", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3230", "employeeId": "1076", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3231", "employeeId": "1124", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3232", "employeeId": "739", "date": "2023-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3233", "employeeId": "622", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Data Science Director", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3234", "employeeId": "940", "date": "2023-01-01", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3235", "employeeId": "357", "date": "2023-01-01", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3236", "employeeId": "295", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Engineering", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3237", "employeeId": "184", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3238", "employeeId": "792", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3239", "employeeId": "1222", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3240", "employeeId": "629", "date": "2023-01-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success Architects", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3241", "employeeId": "985", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3242", "employeeId": "637", "date": "2023-01-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Manager, Corporate Renewals", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3243", "employeeId": "322", "date": "2023-01-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Senior Manager, EMEA Renewals", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3244", "employeeId": "1448", "date": "2023-04-17", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3245", "employeeId": "1449", "date": "2023-04-10", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3247", "employeeId": "302", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3248", "employeeId": "361", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3249", "employeeId": "408", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3250", "employeeId": "648", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3251", "employeeId": "875", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3252", "employeeId": "1012", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3253", "employeeId": "337", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3254", "employeeId": "728", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3255", "employeeId": "1133", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3256", "employeeId": "914", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3257", "employeeId": "280", "date": "2023-04-03", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3258", "employeeId": "293", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3259", "employeeId": "365", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3260", "employeeId": "347", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3261", "employeeId": "366", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3262", "employeeId": "383", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3263", "employeeId": "395", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3264", "employeeId": "412", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3265", "employeeId": "575", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3266", "employeeId": "961", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3267", "employeeId": "1201", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3268", "employeeId": "1203", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3269", "employeeId": "927", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3270", "employeeId": "316", "date": "2023-04-03", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3271", "employeeId": "358", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3272", "employeeId": "869", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3273", "employeeId": "1333", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3274", "employeeId": "1352", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3275", "employeeId": "1128", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3276", "employeeId": "373", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3277", "employeeId": "972", "date": "2023-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3278", "employeeId": "1035", "date": "2023-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3279", "employeeId": "299", "date": "2023-04-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3280", "employeeId": "1079", "date": "2023-04-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3281", "employeeId": "1054", "date": "2023-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3282", "employeeId": "311", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3283", "employeeId": "385", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3284", "employeeId": "398", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3285", "employeeId": "533", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3286", "employeeId": "570", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3287", "employeeId": "710", "date": "2023-04-03", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3288", "employeeId": "735", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3289", "employeeId": "893", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3290", "employeeId": "944", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3291", "employeeId": "1355", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3292", "employeeId": "410", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3293", "employeeId": "848", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3294", "employeeId": "891", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3295", "employeeId": "298", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3296", "employeeId": "602", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3297", "employeeId": "677", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3298", "employeeId": "679", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3299", "employeeId": "712", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3300", "employeeId": "747", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3301", "employeeId": "856", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3302", "employeeId": "881", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3303", "employeeId": "912", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3304", "employeeId": "1155", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3305", "employeeId": "1089", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3306", "employeeId": "1451", "date": "2023-04-17", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3307", "employeeId": "669", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3308", "employeeId": "926", "date": "2023-04-03", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for DX", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3309", "employeeId": "371", "date": "2023-04-03", "location": "Remote - The Netherlands", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3310", "employeeId": "1086", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3311", "employeeId": "206", "date": "2023-04-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, GDS & User Tools", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3312", "employeeId": "352", "date": "2023-04-03", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, Neo4j Database", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3313", "employeeId": "121", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3314", "employeeId": "786", "date": "2023-05-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Manager, People Operations", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3315", "employeeId": "866", "date": "2023-05-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Strategy Partner", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3316", "employeeId": "872", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3317", "employeeId": "1299", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3318", "employeeId": "396", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3319", "employeeId": "1243", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3320", "employeeId": "1132", "date": "2023-05-30", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3321", "employeeId": "755", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3322", "employeeId": "1338", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3323", "employeeId": "889", "date": "2023-04-20", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3324", "employeeId": "599", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3325", "employeeId": "1452", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Designer Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3326", "employeeId": "1453", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Independent Contractor, Corporate Storytelling & Content", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3327", "employeeId": "1454", "date": "2023-04-04", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3328", "employeeId": "1455", "date": "2023-04-04", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3329", "employeeId": "700", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3330", "employeeId": "152", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3331", "employeeId": "372", "date": "2023-04-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3332", "employeeId": "1456", "date": "2023-04-24", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3333", "employeeId": "725", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3334", "employeeId": "1457", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3335", "employeeId": "986", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3336", "employeeId": "312", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Director - EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3337", "employeeId": "1306", "date": "2023-05-01", "location": "Remote - Spain", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3338", "employeeId": "1277", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3339", "employeeId": "1328", "date": "2023-05-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Sales Operations EMEA & APAC", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3340", "employeeId": "992", "date": "2023-05-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3341", "employeeId": "1358", "date": "2023-04-24", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Compensation Analyst", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3342", "employeeId": "1458", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3343", "employeeId": "1074", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP Customer Success, EMEA/APAC", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3344", "employeeId": "1303", "date": "2023-05-01", "location": "Remote - Germany", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Data Science", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3345", "employeeId": "580", "date": "2023-05-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals, Customer Success, & Education", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3346", "employeeId": "172", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3347", "employeeId": "1408", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3348", "employeeId": "1040", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "VP, Global Customer Support", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3349", "employeeId": "1230", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3350", "employeeId": "1045", "date": "2023-05-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success, Americas", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3351", "employeeId": "889", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3352", "employeeId": "599", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3353", "employeeId": "619", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services - Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3354", "employeeId": "963", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3355", "employeeId": "146", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3356", "employeeId": "819", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3357", "employeeId": "1114", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3358", "employeeId": "629", "date": "2023-05-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success Architects", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3359", "employeeId": "1448", "date": "2023-05-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3360", "employeeId": "1211", "date": "2023-05-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3361", "employeeId": "1459", "date": "2023-05-03", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3362", "employeeId": "1460", "date": "2023-06-05", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Samuel Chaplin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3363", "employeeId": "1461", "date": "2023-06-05", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Thao Duong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3364", "employeeId": "1358", "date": "2023-05-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Compensation", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3365", "employeeId": "1462", "date": "2023-07-17", "location": "London - UK", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "EMEA Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3366", "employeeId": "1000", "date": "2023-05-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3367", "employeeId": "663", "date": "2023-05-10", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3368", "employeeId": "1463", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "VP, Developer Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3369", "employeeId": "1366", "date": "2023-05-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3370", "employeeId": "1384", "date": "2023-05-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3371", "employeeId": "1083", "date": "2023-05-10", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3372", "employeeId": "1464", "date": "2023-08-21", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3373", "employeeId": "1465", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3374", "employeeId": "1222", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3375", "employeeId": "792", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3376", "employeeId": "1210", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Intern", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3377", "employeeId": "1288", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3378", "employeeId": "1220", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3379", "employeeId": "1147", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3380", "employeeId": "1466", "date": "2023-05-29", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer", "reportsTo": "Vallyn Murphy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3381", "employeeId": "1467", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, SDR", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3382", "employeeId": "1468", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3383", "employeeId": "1469", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3384", "employeeId": "1470", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3386", "employeeId": "718", "date": "2023-06-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Global Client Services Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3387", "employeeId": "359", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director of Analytics", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3388", "employeeId": "1472", "date": "2023-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3389", "employeeId": "1248", "date": "2023-06-27", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3390", "employeeId": "1473", "date": "2023-06-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3391", "employeeId": "1474", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3392", "employeeId": "814", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Analyst", "reportsTo": "Arvid \u00c5sbrink", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3393", "employeeId": "806", "date": "2023-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3394", "employeeId": "1475", "date": "2023-06-05", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Revenue Enablement", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3395", "employeeId": "663", "date": "2023-06-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3396", "employeeId": "1476", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3397", "employeeId": "1477", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3398", "employeeId": "1478", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3399", "employeeId": "757", "date": "2023-05-29", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3402", "employeeId": "329", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3403", "employeeId": "887", "date": "2023-05-29", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3404", "employeeId": "278", "date": "2023-05-29", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3405", "employeeId": "353", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3407", "employeeId": "293", "date": "2023-08-15", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3408", "employeeId": "1479", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "People Operations Administrator", "reportsTo": "Nicole Fridvall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3409", "employeeId": "1471", "date": "2023-06-26", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, Neo4j Workspace", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3410", "employeeId": "1480", "date": "2023-07-03", "location": "London - UK", "department": "Legal", "division": "G&A", "jobTitle": "Senior Manager, License Compliance Services", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3411", "employeeId": "1481", "date": "2023-05-19", "location": "London - UK", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3412", "employeeId": "1482", "date": "2021-08-02", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3413", "employeeId": "1483", "date": "2023-04-06", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3414", "employeeId": "1484", "date": "2023-03-13", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3415", "employeeId": "1485", "date": "2021-08-02", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3416", "employeeId": "1486", "date": "2023-05-26", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3417", "employeeId": "266", "date": "2022-03-01", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3418", "employeeId": "1487", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3419", "employeeId": "1488", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3420", "employeeId": "1489", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3421", "employeeId": "1490", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3422", "employeeId": "1491", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3423", "employeeId": "1492", "date": "2022-05-31", "location": "", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3424", "employeeId": "1493", "date": "2022-03-21", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3425", "employeeId": "1494", "date": "2022-02-01", "location": "Remote - France", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3426", "employeeId": "1495", "date": "2022-09-28", "location": "London - UK", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3427", "employeeId": "413", "date": "2023-06-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Resource Manager, Professional Services", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3428", "employeeId": "1496", "date": "2023-05-26", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3429", "employeeId": "1363", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3430", "employeeId": "1115", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3431", "employeeId": "1080", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3432", "employeeId": "192", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3433", "employeeId": "143", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3435", "employeeId": "1497", "date": "2023-06-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Sales Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3436", "employeeId": "1093", "date": "2023-06-01", "location": "Remote - Sweden", "department": "People", "division": "G&A", "jobTitle": "Principal Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3437", "employeeId": "1210", "date": "2023-06-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Program Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3438", "employeeId": "1498", "date": "2023-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3439", "employeeId": "1499", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3440", "employeeId": "1500", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3441", "employeeId": "1501", "date": "2023-05-17", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3442", "employeeId": "1502", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3443", "employeeId": "1503", "date": "2023-06-19", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Technical Curriculum Developer", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3444", "employeeId": "587", "date": "2023-05-29", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3445", "employeeId": "645", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3446", "employeeId": "740", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3447", "employeeId": "1504", "date": "2023-07-10", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Commissions Analyst", "reportsTo": "Sofiya Zaleeva", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3448", "employeeId": "1366", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3449", "employeeId": "1384", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3450", "employeeId": "1083", "date": "2023-06-05", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3451", "employeeId": "1505", "date": "2023-04-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Shay Egan-Malagisi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3452", "employeeId": "1004", "date": "2023-07-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Principal, Digital Marketing", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3453", "employeeId": "1506", "date": "2023-06-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Production Support Admin", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3454", "employeeId": "1507", "date": "2023-07-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3455", "employeeId": "1508", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3457", "employeeId": "1510", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3458", "employeeId": "1511", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3459", "employeeId": "1512", "date": "2023-06-21", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3460", "employeeId": "1513", "date": "2023-06-07", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3461", "employeeId": "1514", "date": "2023-10-02", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager - France", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3462", "employeeId": "796", "date": "2023-06-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3463", "employeeId": "893", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3464", "employeeId": "1515", "date": "2023-07-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Benefits Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3465", "employeeId": "1516", "date": "2023-06-27", "location": "", "department": "", "division": "", "jobTitle": "", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3467", "employeeId": "1258", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3468", "employeeId": "580", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3469", "employeeId": "150", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3470", "employeeId": "1102", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3471", "employeeId": "639", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3472", "employeeId": "595", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3473", "employeeId": "820", "date": "2023-05-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3474", "employeeId": "157", "date": "2023-05-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3475", "employeeId": "1280", "date": "2023-10-01", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Director, Talent Acquisition - Global GTM & G&A", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3476", "employeeId": "1107", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3477", "employeeId": "235", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3478", "employeeId": "1116", "date": "2023-05-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3479", "employeeId": "1044", "date": "2023-05-01", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "VP, Global Talent", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3480", "employeeId": "1016", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3481", "employeeId": "212", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Cloud Programs", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3482", "employeeId": "669", "date": "2023-04-17", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3483", "employeeId": "1086", "date": "2023-04-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3484", "employeeId": "121", "date": "2023-04-17", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3485", "employeeId": "1150", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3486", "employeeId": "952", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3487", "employeeId": "190", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3488", "employeeId": "981", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3489", "employeeId": "164", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3490", "employeeId": "1350", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3491", "employeeId": "1335", "date": "2023-04-17", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3492", "employeeId": "688", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3493", "employeeId": "184", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3494", "employeeId": "195", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3495", "employeeId": "816", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3496", "employeeId": "968", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3497", "employeeId": "791", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3498", "employeeId": "946", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3499", "employeeId": "832", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3500", "employeeId": "1209", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3501", "employeeId": "616", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3502", "employeeId": "633", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3503", "employeeId": "1291", "date": "2023-04-17", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior Manager, IT Operations", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3504", "employeeId": "1099", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3505", "employeeId": "1158", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3506", "employeeId": "1119", "date": "2023-04-17", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3507", "employeeId": "1117", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3508", "employeeId": "738", "date": "2023-04-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3509", "employeeId": "843", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3510", "employeeId": "1085", "date": "2023-04-17", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3511", "employeeId": "818", "date": "2023-04-17", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3512", "employeeId": "499", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3513", "employeeId": "159", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3514", "employeeId": "127", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3515", "employeeId": "969", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3516", "employeeId": "590", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3517", "employeeId": "136", "date": "2023-04-17", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Architect", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3518", "employeeId": "124", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3519", "employeeId": "114", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP, Finance & Administration", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3520", "employeeId": "208", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3521", "employeeId": "1518", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3522", "employeeId": "939", "date": "2023-07-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3523", "employeeId": "590", "date": "2023-07-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3524", "employeeId": "669", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3526", "employeeId": "1520", "date": "2023-07-06", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3527", "employeeId": "116", "date": "2023-07-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People Strategy & Business Operations - Product and Engineering Worldwide", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3528", "employeeId": "1521", "date": "2023-08-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3529", "employeeId": "820", "date": "2023-07-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy - GTM and G&A Worldwide", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3530", "employeeId": "914", "date": "2023-07-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3531", "employeeId": "1522", "date": "2023-08-07", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. Director, Global Total Rewards", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3532", "employeeId": "1523", "date": "2023-07-13", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3533", "employeeId": "1150", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3534", "employeeId": "952", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3535", "employeeId": "1025", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3536", "employeeId": "1264", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3537", "employeeId": "941", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3538", "employeeId": "691", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3539", "employeeId": "1036", "date": "2023-06-30", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3540", "employeeId": "1317", "date": "2023-06-30", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3541", "employeeId": "1293", "date": "2023-06-30", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3542", "employeeId": "801", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Corporate Events", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3543", "employeeId": "1245", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Marketing Strategy and Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3544", "employeeId": "711", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Web Operations and Development", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3545", "employeeId": "1460", "date": "2023-07-15", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3546", "employeeId": "1524", "date": "2023-07-31", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3547", "employeeId": "1525", "date": "2023-07-31", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3548", "employeeId": "1216", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3549", "employeeId": "1406", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sales Development - Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3550", "employeeId": "1005", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Corporate Events Manager", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3551", "employeeId": "1385", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3552", "employeeId": "1375", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3553", "employeeId": "1111", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3554", "employeeId": "1145", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3555", "employeeId": "1389", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "Sales & Marketing", "jobTitle": "Chief Revenue Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3556", "employeeId": "261", "date": "2023-07-18", "location": "London - UK", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3557", "employeeId": "273", "date": "2023-07-18", "location": "Malm\u00f6 - Sweden", "department": "E-Staff", "division": "R&D", "jobTitle": "SVP Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3558", "employeeId": "778", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3559", "employeeId": "121", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3560", "employeeId": "1117", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3561", "employeeId": "1425", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Product Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3562", "employeeId": "208", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3563", "employeeId": "1526", "date": "2023-07-24", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3564", "employeeId": "263", "date": "2023-07-18", "location": "Malm\u00f6 - Sweden", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3565", "employeeId": "202", "date": "2023-08-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Field Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3566", "employeeId": "1527", "date": "2023-07-31", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3567", "employeeId": "1528", "date": "2023-08-28", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3568", "employeeId": "1529", "date": "2023-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3569", "employeeId": "1530", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3570", "employeeId": "1531", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3571", "employeeId": "1532", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3572", "employeeId": "1533", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3573", "employeeId": "1534", "date": "2023-08-28", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3574", "employeeId": "1535", "date": "2023-08-28", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3575", "employeeId": "1536", "date": "2023-08-21", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Federal Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3577", "employeeId": "1315", "date": "2023-08-07", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Systems + Analytics Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3578", "employeeId": "1538", "date": "2023-08-07", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3579", "employeeId": "1484", "date": "2023-08-02", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3580", "employeeId": "1486", "date": "2023-08-02", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3581", "employeeId": "1382", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3582", "employeeId": "760", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3583", "employeeId": "1014", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3584", "employeeId": "876", "date": "2023-08-01", "location": "Remote - Canada", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3585", "employeeId": "1471", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3586", "employeeId": "658", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3587", "employeeId": "1307", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3588", "employeeId": "650", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3589", "employeeId": "834", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3590", "employeeId": "409", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3591", "employeeId": "1079", "date": "2023-08-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3592", "employeeId": "738", "date": "2023-08-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3593", "employeeId": "1376", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3594", "employeeId": "1229", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3595", "employeeId": "926", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3596", "employeeId": "1238", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ian Pollard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3597", "employeeId": "1539", "date": "2023-08-14", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Business Intelligence Data Engineer", "reportsTo": "Arvid \u00c5sbrink", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3598", "employeeId": "583", "date": "2023-08-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Data Engineer", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3599", "employeeId": "1540", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3600", "employeeId": "1541", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3601", "employeeId": "1542", "date": "2023-08-14", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Channels and Alliances Lead", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3602", "employeeId": "1543", "date": "2023-08-14", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Program Manager, Global Enablement", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3603", "employeeId": "1544", "date": "2023-08-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3604", "employeeId": "959", "date": "2023-08-14", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3605", "employeeId": "1545", "date": "2023-09-04", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3606", "employeeId": "1546", "date": "2023-08-28", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Enterprise Sales Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3607", "employeeId": "1457", "date": "2023-08-21", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3608", "employeeId": "1515", "date": "2023-08-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Benefits Coordinator", "reportsTo": "Casey Bananzadeh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3609", "employeeId": "347", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3610", "employeeId": "974", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3611", "employeeId": "773", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3612", "employeeId": "774", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3613", "employeeId": "1346", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3614", "employeeId": "859", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3615", "employeeId": "1507", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3616", "employeeId": "1115", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocacy Manager", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3617", "employeeId": "192", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3618", "employeeId": "1363", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Data Science Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3619", "employeeId": "353", "date": "2023-08-21", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3620", "employeeId": "143", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3621", "employeeId": "587", "date": "2023-08-21", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3622", "employeeId": "757", "date": "2023-08-21", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3623", "employeeId": "1054", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3624", "employeeId": "1547", "date": "2023-08-29", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3625", "employeeId": "1548", "date": "2023-08-28", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3626", "employeeId": "990", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Director, Strategy and Innovation", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3627", "employeeId": "1549", "date": "2023-08-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3628", "employeeId": "1287", "date": "2023-08-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3629", "employeeId": "1550", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3630", "employeeId": "400", "date": "2023-08-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3631", "employeeId": "706", "date": "2023-08-26", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Communications Associate", "reportsTo": "Caroline De Souza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3632", "employeeId": "1551", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web Strategy & Digital Marketing", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3633", "employeeId": "1552", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director of Sales Development", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3634", "employeeId": "328", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3635", "employeeId": "355", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3636", "employeeId": "403", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3637", "employeeId": "847", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3638", "employeeId": "1285", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3639", "employeeId": "331", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3640", "employeeId": "752", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3641", "employeeId": "1061", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3642", "employeeId": "1287", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3643", "employeeId": "674", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3644", "employeeId": "1374", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3645", "employeeId": "836", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3646", "employeeId": "392", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3647", "employeeId": "662", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3648", "employeeId": "1298", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3649", "employeeId": "604", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3650", "employeeId": "1232", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3651", "employeeId": "1006", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3653", "employeeId": "837", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3654", "employeeId": "1200", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3655", "employeeId": "1553", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3656", "employeeId": "926", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3657", "employeeId": "834", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3658", "employeeId": "1054", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3659", "employeeId": "1229", "date": "2023-09-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3660", "employeeId": "1554", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3661", "employeeId": "262", "date": "2023-09-01", "location": "Remote - Germany", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Head of Product Innovation & Developer Strategy", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3662", "employeeId": "1139", "date": "2023-10-01", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3663", "employeeId": "867", "date": "2023-10-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3664", "employeeId": "1449", "date": "2023-10-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3665", "employeeId": "812", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3666", "employeeId": "159", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3667", "employeeId": "1555", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Technical Support Regional Manager APAC", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3668", "employeeId": "1556", "date": "2023-09-18", "location": "Remote - Brazil", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3669", "employeeId": "364", "date": "2023-09-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Contractor", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3670", "employeeId": "1385", "date": "2023-10-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3671", "employeeId": "1557", "date": "2023-11-13", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3672", "employeeId": "1558", "date": "2023-10-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3674", "employeeId": "1559", "date": "2023-11-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3675", "employeeId": "830", "date": "2023-09-11", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3677", "employeeId": "1560", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3678", "employeeId": "1561", "date": "2023-11-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3679", "employeeId": "942", "date": "2023-10-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3680", "employeeId": "1562", "date": "2023-10-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3681", "employeeId": "152", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3682", "employeeId": "153", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3683", "employeeId": "160", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3684", "employeeId": "169", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3685", "employeeId": "179", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3686", "employeeId": "214", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3687", "employeeId": "618", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3688", "employeeId": "700", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3689", "employeeId": "860", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Director", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3690", "employeeId": "904", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3691", "employeeId": "774", "date": "2023-09-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Associate Cloud & Alliances Sales Manager", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3692", "employeeId": "711", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Web Operations and Development", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3693", "employeeId": "1111", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3694", "employeeId": "1145", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3695", "employeeId": "1385", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3696", "employeeId": "1375", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3697", "employeeId": "1004", "date": "2023-09-11", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Principal, Digital Marketing", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3698", "employeeId": "343", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, GTM Strategy & Execution", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3699", "employeeId": "1408", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3700", "employeeId": "1457", "date": "2023-09-15", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3701", "employeeId": "1563", "date": "2024-01-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3702", "employeeId": "1080", "date": "2023-09-22", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3703", "employeeId": "1115", "date": "2023-09-22", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocacy Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3704", "employeeId": "147", "date": "2023-10-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3705", "employeeId": "872", "date": "2023-09-27", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3706", "employeeId": "1564", "date": "2023-10-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Visual Designer", "reportsTo": "Vallyn Murphy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3707", "employeeId": "818", "date": "2023-10-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3708", "employeeId": "265", "date": "2023-10-02", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3709", "employeeId": "653", "date": "2023-09-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Field Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3710", "employeeId": "1565", "date": "2023-11-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3711", "employeeId": "1566", "date": "2023-10-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3712", "employeeId": "1567", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3713", "employeeId": "1568", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3714", "employeeId": "1569", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3715", "employeeId": "1570", "date": "2023-10-01", "location": "Remote - Israel", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3716", "employeeId": "1571", "date": "2023-10-02", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3717", "employeeId": "329", "date": "2023-09-22", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3718", "employeeId": "887", "date": "2023-09-22", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3719", "employeeId": "278", "date": "2023-09-22", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3720", "employeeId": "1503", "date": "2023-09-22", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Technical Curriculum Developer", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3721", "employeeId": "983", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3722", "employeeId": "1076", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3723", "employeeId": "955", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3724", "employeeId": "1124", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3725", "employeeId": "1228", "date": "2023-10-09", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3726", "employeeId": "656", "date": "2023-10-02", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre Sales Engineer, OEM", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3727", "employeeId": "687", "date": "2023-10-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3728", "employeeId": "1572", "date": "2021-07-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3729", "employeeId": "1573", "date": "2021-07-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3730", "employeeId": "1574", "date": "2023-06-08", "location": "", "department": "Legal", "division": "G&A", "jobTitle": "", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3731", "employeeId": "1575", "date": "2023-10-16", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise/DN Sales Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3732", "employeeId": "773", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3733", "employeeId": "859", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3734", "employeeId": "1346", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3735", "employeeId": "1507", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3736", "employeeId": "974", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3737", "employeeId": "1576", "date": "2023-10-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3738", "employeeId": "1577", "date": "2023-10-23", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3740", "employeeId": "667", "date": "2023-10-02", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3741", "employeeId": "1397", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3742", "employeeId": "1011", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3743", "employeeId": "977", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3744", "employeeId": "393", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3745", "employeeId": "1308", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3746", "employeeId": "1211", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3747", "employeeId": "827", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3748", "employeeId": "1448", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3749", "employeeId": "627", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Architect Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3750", "employeeId": "1578", "date": "2023-11-06", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3751", "employeeId": "1579", "date": "2024-01-02", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3752", "employeeId": "1580", "date": "2023-10-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3753", "employeeId": "1581", "date": "2023-10-23", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3754", "employeeId": "1582", "date": "2024-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3755", "employeeId": "1583", "date": "2023-10-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3756", "employeeId": "369", "date": "2023-10-25", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3757", "employeeId": "1584", "date": "2023-11-27", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3758", "employeeId": "1585", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Americas Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3759", "employeeId": "728", "date": "2023-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3760", "employeeId": "1586", "date": "2023-10-30", "location": "Remote - APAC", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3761", "employeeId": "1587", "date": "2023-12-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3762", "employeeId": "1588", "date": "2023-11-06", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3763", "employeeId": "1372", "date": "2023-10-09", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3764", "employeeId": "954", "date": "2023-10-09", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3765", "employeeId": "1525", "date": "2023-11-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3766", "employeeId": "889", "date": "2023-11-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3767", "employeeId": "1589", "date": "2023-12-04", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales - France", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3768", "employeeId": "1590", "date": "2023-11-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3769", "employeeId": "1591", "date": "2023-11-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3770", "employeeId": "1592", "date": "2023-11-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3771", "employeeId": "126", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3772", "employeeId": "195", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3773", "employeeId": "688", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3774", "employeeId": "1033", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3775", "employeeId": "1048", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3776", "employeeId": "1092", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3777", "employeeId": "1350", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3778", "employeeId": "1566", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3779", "employeeId": "1593", "date": "2023-10-30", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3780", "employeeId": "1406", "date": "2023-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3781", "employeeId": "177", "date": "2023-11-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Central Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3783", "employeeId": "1356", "date": "2023-10-23", "location": "", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3784", "employeeId": "1352", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3785", "employeeId": "1333", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3786", "employeeId": "373", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3787", "employeeId": "316", "date": "2023-11-06", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3788", "employeeId": "869", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3789", "employeeId": "358", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3790", "employeeId": "1128", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3791", "employeeId": "1595", "date": "2023-11-20", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3793", "employeeId": "1109", "date": "2024-01-01", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Field Marketing (Senior Manager) LATAM", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3794", "employeeId": "1008", "date": "2024-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Video Production Manager", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3795", "employeeId": "1295", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3796", "employeeId": "1421", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3797", "employeeId": "716", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3798", "employeeId": "1422", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3799", "employeeId": "1000", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3800", "employeeId": "1419", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3801", "employeeId": "1414", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3802", "employeeId": "1420", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3803", "employeeId": "1416", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3804", "employeeId": "1413", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3805", "employeeId": "1411", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3806", "employeeId": "1412", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3808", "employeeId": "1597", "date": "2024-01-15", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer - Benelux and DACH", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3809", "employeeId": "1598", "date": "2023-11-20", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3810", "employeeId": "1599", "date": "2023-11-24", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3811", "employeeId": "1600", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Partner Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3814", "employeeId": "791", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3815", "employeeId": "1223", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3816", "employeeId": "1073", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3817", "employeeId": "1577", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3818", "employeeId": "1601", "date": "2024-01-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3819", "employeeId": "1602", "date": "2023-11-20", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3820", "employeeId": "1604", "date": "2023-11-13", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3821", "employeeId": "1603", "date": "2023-11-13", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3822", "employeeId": "1605", "date": "2024-01-15", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3823", "employeeId": "1606", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3824", "employeeId": "1607", "date": "2024-01-08", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director Product Operations", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3825", "employeeId": "1608", "date": "2024-01-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Strategic Account Executive, West", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3826", "employeeId": "1609", "date": "2024-01-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3827", "employeeId": "1610", "date": "2023-11-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3828", "employeeId": "1611", "date": "2023-11-16", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior SaaS Procurement Manager", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3829", "employeeId": "1612", "date": "2023-12-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3830", "employeeId": "636", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3831", "employeeId": "1076", "date": "2023-11-16", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3832", "employeeId": "1124", "date": "2023-11-16", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3833", "employeeId": "741", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3834", "employeeId": "1102", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3835", "employeeId": "744", "date": "2023-11-16", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3836", "employeeId": "1053", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3837", "employeeId": "929", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3838", "employeeId": "1122", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3839", "employeeId": "1320", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3841", "employeeId": "685", "date": "2023-11-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3842", "employeeId": "1613", "date": "2024-01-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3843", "employeeId": "1565", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management, GDS and GenAI", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3844", "employeeId": "352", "date": "2023-11-17", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management, Neo4j Database", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3845", "employeeId": "206", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management, User Tools and Developer Experience", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3846", "employeeId": "1086", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3847", "employeeId": "1614", "date": "2023-12-13", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3849", "employeeId": "1615", "date": "2023-12-04", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3850", "employeeId": "1100", "date": "2023-11-13", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3851", "employeeId": "1555", "date": "2023-11-15", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3852", "employeeId": "1578", "date": "2023-11-16", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3853", "employeeId": "1616", "date": "2023-12-04", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Coordinator", "reportsTo": "Alexandra Holmes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3854", "employeeId": "1617", "date": "2023-12-11", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Customer Success - APAC", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3855", "employeeId": "1618", "date": "2023-12-04", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Pietro Mattei", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3856", "employeeId": "1382", "date": "2023-11-22", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Christopher Crosbie", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3857", "employeeId": "1619", "date": "2023-11-29", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3858", "employeeId": "1620", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3859", "employeeId": "1621", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3860", "employeeId": "1622", "date": "2024-03-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3862", "employeeId": "669", "date": "2023-11-22", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3863", "employeeId": "968", "date": "2023-10-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3864", "employeeId": "1090", "date": "2023-10-01", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3865", "employeeId": "1163", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3866", "employeeId": "1026", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3867", "employeeId": "970", "date": "2023-11-16", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3868", "employeeId": "1134", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3869", "employeeId": "1623", "date": "2023-12-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3870", "employeeId": "1624", "date": "2023-12-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Advocacy", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3871", "employeeId": "620", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West/Central Region", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3872", "employeeId": "878", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3873", "employeeId": "242", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3874", "employeeId": "798", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3875", "employeeId": "1109", "date": "2023-11-27", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3876", "employeeId": "1625", "date": "2023-12-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Integrated Marketing Campaigns", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3877", "employeeId": "1626", "date": "2024-01-02", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Enablement Program Manager", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3878", "employeeId": "1627", "date": "2024-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3879", "employeeId": "1628", "date": "2024-01-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3880", "employeeId": "1629", "date": "2023-12-18", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3881", "employeeId": "126", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3882", "employeeId": "1350", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3883", "employeeId": "1566", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3884", "employeeId": "195", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3885", "employeeId": "688", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3886", "employeeId": "1033", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3887", "employeeId": "1048", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3888", "employeeId": "1092", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3889", "employeeId": "1630", "date": "2024-01-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3890", "employeeId": "1385", "date": "2023-11-24", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Marketing, APAC", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3891", "employeeId": "1372", "date": "2023-11-24", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3892", "employeeId": "954", "date": "2023-11-24", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3893", "employeeId": "1631", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3894", "employeeId": "1632", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3895", "employeeId": "1633", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3896", "employeeId": "1634", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3897", "employeeId": "1635", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Master Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3898", "employeeId": "1636", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Master Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3899", "employeeId": "1637", "date": "2023-12-18", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3900", "employeeId": "1638", "date": "2024-01-15", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, APAC Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3901", "employeeId": "1639", "date": "2024-01-15", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3902", "employeeId": "1640", "date": "2024-01-02", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager - Singapore", "reportsTo": "Sarah Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3903", "employeeId": "1641", "date": "2024-01-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Brand Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3904", "employeeId": "1050", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3905", "employeeId": "1642", "date": "2023-12-14", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3906", "employeeId": "1643", "date": "2024-01-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Global Vice President, Technology Solutions", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3907", "employeeId": "1325", "date": "2024-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3908", "employeeId": "1234", "date": "2023-12-14", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, EMEA North", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3909", "employeeId": "1644", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3910", "employeeId": "1645", "date": "2024-01-22", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3911", "employeeId": "1646", "date": "2024-01-29", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3912", "employeeId": "1647", "date": "2024-02-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3913", "employeeId": "1648", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3914", "employeeId": "1649", "date": "2024-01-22", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Coordinator", "reportsTo": "Alexandra Holmes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3915", "employeeId": "1650", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Federal Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3916", "employeeId": "1247", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3917", "employeeId": "1651", "date": "2024-06-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3918", "employeeId": "1652", "date": "2024-06-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3919", "employeeId": "1426", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3920", "employeeId": "152", "date": "2024-01-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3921", "employeeId": "1564", "date": "2024-01-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Visual Designer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3922", "employeeId": "1033", "date": "2024-01-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3923", "employeeId": "319", "date": "2024-01-01", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3924", "employeeId": "1477", "date": "2024-03-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3925", "employeeId": "1653", "date": "2024-03-11", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3926", "employeeId": "739", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director of Product", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3927", "employeeId": "821", "date": "2024-01-11", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3928", "employeeId": "1046", "date": "2024-01-11", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3929", "employeeId": "1289", "date": "2024-01-11", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "CRM Data Steward", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3930", "employeeId": "1332", "date": "2024-01-11", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3931", "employeeId": "1512", "date": "2024-01-11", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3932", "employeeId": "1074", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success - EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3933", "employeeId": "748", "date": "2024-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3934", "employeeId": "289", "date": "2024-01-08", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3935", "employeeId": "1540", "date": "2024-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3936", "employeeId": "792", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Global Core Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3938", "employeeId": "1528", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3939", "employeeId": "1527", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3940", "employeeId": "172", "date": "2024-01-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3941", "employeeId": "977", "date": "2024-01-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3942", "employeeId": "827", "date": "2024-01-08", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3943", "employeeId": "1293", "date": "2024-01-02", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3944", "employeeId": "1654", "date": "2024-01-29", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Global Cloud Partnership Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3945", "employeeId": "1655", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Professional Services and Solutions Engineering", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3946", "employeeId": "1656", "date": "2024-02-26", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Compensation & Benefits Manager", "reportsTo": "Casey Bananzadeh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3947", "employeeId": "159", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3948", "employeeId": "1069", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3949", "employeeId": "194", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3950", "employeeId": "772", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3951", "employeeId": "818", "date": "2024-01-16", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3952", "employeeId": "773", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3953", "employeeId": "1507", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3954", "employeeId": "1223", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3955", "employeeId": "1615", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3956", "employeeId": "1591", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3957", "employeeId": "1592", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3958", "employeeId": "1577", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3959", "employeeId": "791", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3960", "employeeId": "1344", "date": "2024-01-15", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Kristen Pimpini", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3961", "employeeId": "626", "date": "2024-01-15", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, ANZ", "reportsTo": "Kristen Pimpini", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3962", "employeeId": "389", "date": "2024-01-23", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3963", "employeeId": "1051", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3964", "employeeId": "1657", "date": "2024-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3965", "employeeId": "1658", "date": "2024-02-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3966", "employeeId": "1079", "date": "2024-02-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3967", "employeeId": "1659", "date": "2024-02-12", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Administrator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3969", "employeeId": "1660", "date": "2024-02-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "SEO/Digital Strategy Marketing Manager", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3970", "employeeId": "1661", "date": "2024-04-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3971", "employeeId": "1662", "date": "2024-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3972", "employeeId": "1508", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3973", "employeeId": "1511", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3974", "employeeId": "1523", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3975", "employeeId": "1510", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3976", "employeeId": "627", "date": "2024-01-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Architect Engineer", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3977", "employeeId": "1193", "date": "2024-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3978", "employeeId": "1383", "date": "2024-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3979", "employeeId": "1663", "date": "2024-01-22", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3980", "employeeId": "1664", "date": "2024-02-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Google Cloud Global Partnership Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3981", "employeeId": "1211", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3982", "employeeId": "1448", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3983", "employeeId": "1308", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3984", "employeeId": "1397", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3985", "employeeId": "1579", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3986", "employeeId": "1578", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3987", "employeeId": "1011", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3988", "employeeId": "667", "date": "2024-02-01", "location": "Remote - China", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3989", "employeeId": "977", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3990", "employeeId": "827", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3991", "employeeId": "393", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3993", "employeeId": "1459", "date": "2024-02-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3994", "employeeId": "1454", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3997", "employeeId": "1496", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3998", "employeeId": "1586", "date": "2024-02-01", "location": "Remote - APAC", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4000", "employeeId": "1665", "date": "2024-03-18", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4001", "employeeId": "1666", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4002", "employeeId": "1667", "date": "2024-03-04", "location": "Remote - Singapore", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Recruiter - APAC", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4003", "employeeId": "1668", "date": "2024-03-18", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4004", "employeeId": "1274", "date": "2024-02-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Manager Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4005", "employeeId": "1669", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4006", "employeeId": "1670", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4007", "employeeId": "1671", "date": "2024-03-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4008", "employeeId": "583", "date": "2024-02-05", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Data Engineer", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4009", "employeeId": "738", "date": "2024-02-05", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4010", "employeeId": "1054", "date": "2024-02-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4012", "employeeId": "1376", "date": "2024-02-15", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4013", "employeeId": "1629", "date": "2024-02-19", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4015", "employeeId": "1672", "date": "2024-03-05", "location": "Remote - Australia", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4016", "employeeId": "1673", "date": "2024-03-11", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Director of FP&A, Cloud Finance", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4017", "employeeId": "1674", "date": "2024-03-04", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4018", "employeeId": "1675", "date": "2024-03-18", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4019", "employeeId": "1614", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4020", "employeeId": "1302", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4021", "employeeId": "1630", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4022", "employeeId": "1252", "date": "2024-02-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4023", "employeeId": "574", "date": "2024-02-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4024", "employeeId": "1676", "date": "2024-05-06", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4025", "employeeId": "1677", "date": "2024-04-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4026", "employeeId": "818", "date": "2024-02-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4027", "employeeId": "1646", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4028", "employeeId": "1229", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4029", "employeeId": "1168", "date": "2024-02-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4031", "employeeId": "575", "date": "2024-04-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4032", "employeeId": "1680", "date": "2024-04-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4033", "employeeId": "1681", "date": "2024-04-08", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4034", "employeeId": "1682", "date": "2024-02-26", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4036", "employeeId": "1683", "date": "2024-04-01", "location": "Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4037", "employeeId": "1684", "date": "2024-02-26", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4038", "employeeId": "1685", "date": "2024-03-04", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4039", "employeeId": "1686", "date": "2024-04-08", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4040", "employeeId": "1687", "date": "2024-06-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4042", "employeeId": "1689", "date": "2024-04-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4043", "employeeId": "1690", "date": "2024-02-22", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4044", "employeeId": "1691", "date": "2024-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4045", "employeeId": "1692", "date": "2024-03-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Federal Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4046", "employeeId": "671", "date": "2024-05-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4047", "employeeId": "1693", "date": "2024-02-29", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4048", "employeeId": "1694", "date": "2024-05-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4049", "employeeId": "1695", "date": "2024-02-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4050", "employeeId": "1619", "date": "2024-02-12", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4051", "employeeId": "1641", "date": "2024-02-12", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Brand Designer", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4053", "employeeId": "1696", "date": "2024-04-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4054", "employeeId": "1102", "date": "2024-03-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4055", "employeeId": "879", "date": "2024-03-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales DACH", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4056", "employeeId": "1212", "date": "2024-03-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Representative Germany", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4057", "employeeId": "1697", "date": "2024-03-01", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4058", "employeeId": "398", "date": "2024-02-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4059", "employeeId": "1099", "date": "2024-03-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4060", "employeeId": "972", "date": "2024-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4061", "employeeId": "1698", "date": "2024-03-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Inside Sales Representative", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4062", "employeeId": "739", "date": "2024-03-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4063", "employeeId": "1699", "date": "2024-04-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "VP, Developer Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4064", "employeeId": "1700", "date": "2024-03-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4065", "employeeId": "1701", "date": "2024-04-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4066", "employeeId": "1702", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4067", "employeeId": "1474", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4068", "employeeId": "1703", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4069", "employeeId": "1704", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4070", "employeeId": "1705", "date": "2024-05-20", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4071", "employeeId": "1706", "date": "2024-05-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4072", "employeeId": "1707", "date": "2024-03-25", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Enablement Specialist", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4073", "employeeId": "1708", "date": "2024-04-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Defense Account Executive", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4074", "employeeId": "1709", "date": "2024-04-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Strategic Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4075", "employeeId": "771", "date": "2024-01-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4076", "employeeId": "1710", "date": "2024-04-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Executive Business Partner", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4077", "employeeId": "1711", "date": "2024-04-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4078", "employeeId": "1361", "date": "2024-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4080", "employeeId": "1712", "date": "2024-06-24", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4081", "employeeId": "1713", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4082", "employeeId": "1714", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4083", "employeeId": "1715", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4084", "employeeId": "1716", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4085", "employeeId": "1717", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4086", "employeeId": "1718", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4087", "employeeId": "1719", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4088", "employeeId": "1720", "date": "2024-06-17", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4089", "employeeId": "1721", "date": "2024-04-02", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4090", "employeeId": "296", "date": "2024-03-15", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Susann Brunner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4091", "employeeId": "1722", "date": "2024-05-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Manager", "reportsTo": "Susann Brunner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4092", "employeeId": "1376", "date": "2024-03-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4093", "employeeId": "1629", "date": "2024-03-18", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4094", "employeeId": "739", "date": "2024-03-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4095", "employeeId": "570", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4096", "employeeId": "1723", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1", "employeeId": "118", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "187", "date": "2018-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "154", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4", "employeeId": "181", "date": "2017-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "140", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "174", "date": "2017-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "7", "employeeId": "226", "date": "2019-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "8", "employeeId": "244", "date": "2019-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "9", "employeeId": "246", "date": "2019-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "162", "date": "2017-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "164", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "12", "employeeId": "1", "date": "2019-09-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "206", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "165", "date": "2017-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "15", "employeeId": "142", "date": "2015-08-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "219", "date": "2019-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "190", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "139", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "157", "date": "2017-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "193", "date": "2018-02-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "119", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "22", "employeeId": "156", "date": "2017-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "146", "date": "2015-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "249", "date": "2019-07-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "234", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "26", "employeeId": "147", "date": "2015-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "163", "date": "2017-04-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "189", "date": "2018-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "29", "employeeId": "213", "date": "2018-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "194", "date": "2018-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "31", "employeeId": "227", "date": "2019-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "153", "date": "2016-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "130", "date": "2014-08-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "135", "date": "2015-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "35", "employeeId": "150", "date": "2016-05-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "36", "employeeId": "179", "date": "2017-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "180", "date": "2017-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "215", "date": "2018-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "257", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "254", "date": "2019-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "191", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "170", "date": "2017-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "43", "employeeId": "205", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "166", "date": "2017-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "198", "date": "2018-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "46", "employeeId": "243", "date": "2019-06-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "148", "date": "2015-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "171", "date": "2017-07-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "129", "date": "2014-06-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "241", "date": "2019-05-30", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "235", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "203", "date": "2018-07-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "133", "date": "2014-12-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "54", "employeeId": "152", "date": "2016-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "232", "date": "2019-04-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "192", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "251", "date": "2019-08-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "151", "date": "2016-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "242", "date": "2019-06-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "60", "employeeId": "199", "date": "2018-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "61", "employeeId": "131", "date": "2014-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "145", "date": "2015-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "160", "date": "2017-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "255", "date": "2019-09-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "209", "date": "2018-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "195", "date": "2018-04-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "225", "date": "2019-02-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "68", "employeeId": "196", "date": "2019-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "69", "employeeId": "155", "date": "2016-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "216", "date": "2018-12-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "71", "employeeId": "258", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "72", "employeeId": "183", "date": "2017-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "73", "employeeId": "114", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "144", "date": "2015-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "158", "date": "2017-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "175", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "211", "date": "2018-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "125", "date": "2013-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "188", "date": "2018-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "120", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "256", "date": "2019-09-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "200", "date": "2018-05-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "83", "employeeId": "173", "date": "2017-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "237", "date": "2019-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "85", "employeeId": "236", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "217", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "185", "date": "2017-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "253", "date": "2019-08-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "126", "date": "2013-11-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "182", "date": "2017-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "247", "date": "2019-07-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "92", "employeeId": "204", "date": "2018-07-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "93", "employeeId": "132", "date": "2014-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "138", "date": "2015-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "123", "date": "2012-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "240", "date": "2019-05-20", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "208", "date": "2018-07-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "98", "employeeId": "214", "date": "2018-11-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "99", "employeeId": "223", "date": "2019-01-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "100", "employeeId": "210", "date": "2018-09-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "239", "date": "2019-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "167", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "233", "date": "2019-04-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "104", "employeeId": "159", "date": "2017-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "220", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "168", "date": "2017-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "176", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "178", "date": "2017-10-02", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "124", "date": "2013-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "248", "date": "2019-07-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "121", "date": "2012-05-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "224", "date": "2019-01-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "218", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "114", "employeeId": "172", "date": "2017-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "202", "date": "2018-06-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "149", "date": "2016-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "122", "date": "2012-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "228", "date": "2019-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "119", "employeeId": "169", "date": "2017-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "230", "date": "2019-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "121", "employeeId": "128", "date": "2014-03-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "197", "date": "2018-04-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "186", "date": "2018-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "141", "date": "2015-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "161", "date": "2017-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "222", "date": "2019-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "137", "date": "2015-04-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "136", "date": "2015-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "245", "date": "2019-06-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "130", "employeeId": "177", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "131", "employeeId": "184", "date": "2017-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "212", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "250", "date": "2019-08-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "207", "date": "2018-07-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "238", "date": "2019-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "201", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "137", "employeeId": "115", "date": "2019-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "231", "date": "2019-04-08", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "127", "date": "2014-02-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "252", "date": "2019-08-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "221", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "134", "date": "2014-12-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "143", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "229", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "350", "date": "2018-05-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "364", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "357", "date": "2018-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "148", "employeeId": "316", "date": "2017-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "117", "date": "2015-09-10", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "392", "date": "2019-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "338", "date": "2017-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "374", "date": "2019-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "266", "date": "2012-07-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "359", "date": "2018-09-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "268", "date": "2013-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "295", "date": "2015-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "380", "date": "2019-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "403", "date": "2019-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "384", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "343", "date": "2017-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "395", "date": "2019-06-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "412", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "397", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "304", "date": "2016-02-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "288", "date": "2015-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "393", "date": "2019-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "271", "date": "2013-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "371", "date": "2019-01-14", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "323", "date": "2017-05-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "348", "date": "2018-04-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "276", "date": "2014-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "406", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "329", "date": "2017-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "391", "date": "2019-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "404", "date": "2019-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "407", "date": "2019-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "296", "date": "2015-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "293", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "341", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "381", "date": "2019-03-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "385", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "263", "date": "2011-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "278", "date": "2014-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "265", "date": "2012-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "415", "date": "2019-11-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "396", "date": "2019-06-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "260", "date": "2010-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "347", "date": "2018-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "189", "employeeId": "277", "date": "2014-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "387", "date": "2019-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "284", "date": "2014-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "325", "date": "2017-05-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "418", "date": "2020-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "292", "date": "2015-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "320", "date": "2017-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "342", "date": "2012-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "306", "date": "2016-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "330", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "280", "date": "2014-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "200", "employeeId": "408", "date": "2019-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "335", "date": "2017-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "411", "date": "2019-10-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "383", "date": "2019-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "262", "date": "2011-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "205", "employeeId": "370", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "398", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "301", "date": "2015-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "208", "employeeId": "305", "date": "2016-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "372", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "344", "date": "2017-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "116", "date": "2010-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "300", "date": "2015-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "365", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "214", "employeeId": "264", "date": "2011-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "324", "date": "2017-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "216", "employeeId": "355", "date": "2018-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "414", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "334", "date": "2017-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "327", "date": "2017-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "313", "date": "2017-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "321", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "353", "date": "2018-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "289", "date": "2015-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "389", "date": "2019-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "382", "date": "2019-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "377", "date": "2019-02-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "386", "date": "2019-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "333", "date": "2017-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "229", "employeeId": "285", "date": "2014-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "259", "date": "2009-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "294", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "279", "date": "2014-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "349", "date": "2018-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "368", "date": "2019-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "361", "date": "2018-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "409", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "331", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "238", "employeeId": "360", "date": "2018-09-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "339", "date": "2017-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "281", "date": "2014-08-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "311", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "243", "employeeId": "309", "date": "2016-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "340", "date": "2017-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "270", "date": "2013-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "394", "date": "2019-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "275", "date": "2014-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "390", "date": "2019-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "297", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "410", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "314", "date": "2017-02-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "328", "date": "2017-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "318", "date": "2017-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "332", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "362", "date": "2018-10-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "299", "date": "2015-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "312", "date": "2016-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "401", "date": "2019-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "366", "date": "2018-11-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "260", "employeeId": "307", "date": "2016-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "326", "date": "2017-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "379", "date": "2019-02-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "317", "date": "2017-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "399", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "363", "date": "2018-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "274", "date": "2014-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "376", "date": "2019-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "402", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "388", "date": "2019-04-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "291", "date": "2015-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "405", "date": "2019-09-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "322", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "378", "date": "2019-02-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "303", "date": "2016-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "375", "date": "2019-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "276", "employeeId": "367", "date": "2018-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "286", "date": "2014-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "336", "date": "2017-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "373", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "354", "date": "2018-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "315", "date": "2017-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "282", "date": "2014-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "337", "date": "2017-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "369", "date": "2019-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "400", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "310", "date": "2016-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "416", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "283", "date": "2014-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "308", "date": "2016-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "319", "date": "2019-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "413", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "290", "date": "2015-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "346", "date": "2018-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "267", "date": "2012-08-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "287", "date": "2014-11-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "273", "date": "2013-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "272", "date": "2013-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "345", "date": "2017-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "351", "date": "2018-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "261", "date": "2010-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "356", "date": "2018-08-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "298", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "269", "date": "2012-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "358", "date": "2018-09-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "302", "date": "2016-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "352", "date": "2018-06-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "307", "employeeId": "419", "date": "2019-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "309", "employeeId": "421", "date": "2019-11-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "312", "employeeId": "377", "date": "2019-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "279", "date": "2019-11-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "360", "date": "2019-11-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "417", "date": "2019-11-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "533", "date": "2016-10-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "561", "date": "2018-07-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "539", "date": "2017-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "527", "date": "2017-11-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "506", "date": "2012-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "549", "date": "2018-02-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "523", "date": "2017-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "553", "date": "2018-07-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "535", "date": "2018-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "544", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "531", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "510", "date": "2013-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "516", "date": "2018-01-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "330", "employeeId": "536", "date": "2017-09-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "331", "employeeId": "554", "date": "2018-11-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "560", "date": "2018-07-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "333", "employeeId": "515", "date": "2013-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "334", "employeeId": "515", "date": "2014-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "545", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "565", "date": "2018-08-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "541", "date": "2018-12-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "568", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "528", "date": "2018-03-23", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "547", "date": "2018-12-18", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "534", "date": "2016-06-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "555", "date": "2019-07-05", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "520", "date": "2015-02-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "530", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "562", "date": "2018-06-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "557", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "550", "date": "2018-02-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "512", "date": "2014-12-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "524", "date": "2017-01-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "566", "date": "2019-06-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "564", "date": "2018-08-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "504", "date": "2018-01-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "537", "date": "2018-07-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "502", "date": "2016-03-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "503", "date": "2014-03-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "559", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "509", "date": "2015-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "558", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "556", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "552", "date": "2019-09-24", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "363", "employeeId": "507", "date": "2016-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "364", "employeeId": "514", "date": "2015-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "538", "date": "2019-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "511", "date": "2012-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "511", "date": "2018-08-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "372", "employeeId": "551", "date": "2017-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "548", "date": "2019-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "522", "date": "2015-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "522", "date": "2017-02-24", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "501", "date": "2019-10-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "505", "date": "2018-07-23", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "519", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "525", "date": "2017-07-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "563", "date": "2019-07-08", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "567", "date": "2019-07-06", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "513", "date": "2013-11-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "521", "date": "2016-11-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "542", "date": "2017-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "540", "date": "2017-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "517", "date": "2015-03-18", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "532", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "526", "date": "2015-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "569", "date": "2019-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "570", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "571", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "572", "date": "2019-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "142", "date": "2016-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "142", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "241", "date": "2019-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "193", "date": "2019-02-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "573", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "574", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "400", "employeeId": "575", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "576", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "577", "date": "2019-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "578", "date": "2019-12-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "579", "date": "2019-12-10", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "118", "date": "2019-12-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "580", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "407", "employeeId": "148", "date": "2020-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "581", "date": "2019-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "582", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "140", "date": "2020-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "412", "employeeId": "268", "date": "2012-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "413", "employeeId": "384", "date": "2017-09-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "325", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract Cancelled", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "417", "employeeId": "277", "date": "2017-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "583", "date": "2019-11-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "584", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "422", "employeeId": "342", "date": "2015-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "423", "employeeId": "342", "date": "2017-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "572", "date": "2018-04-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "572", "date": "2018-07-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "431", "employeeId": "572", "date": "2018-09-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "572", "date": "2019-03-01", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "277", "date": "2017-10-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "168", "date": "2020-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "325", "date": "2018-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "325", "date": "2019-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "587", "date": "2020-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "588", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "589", "date": "2019-11-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "590", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "591", "date": "2020-01-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "592", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "593", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "594", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "595", "date": "2020-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "457", "employeeId": "599", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "600", "date": "2019-12-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "459", "employeeId": "601", "date": "2019-12-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "245", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "245", "date": "2020-01-15", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "137", "date": "2019-10-16", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "602", "date": "2020-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "603", "date": "2019-12-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "604", "date": "2020-01-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "605", "date": "2020-01-06", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "606", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "607", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "470", "employeeId": "608", "date": "2020-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "471", "employeeId": "609", "date": "2020-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "610", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "611", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "613", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "614", "date": "2020-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "313", "date": "2016-03-21", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "355", "date": "2017-03-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "355", "date": "2017-12-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "355", "date": "2018-06-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "615", "date": "2020-01-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "483", "employeeId": "250", "date": "2020-01-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "484", "employeeId": "589", "date": "2020-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "485", "employeeId": "616", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "486", "employeeId": "617", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "487", "employeeId": "618", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "488", "employeeId": "591", "date": "2020-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "489", "employeeId": "619", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "490", "employeeId": "361", "date": "2018-02-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "361", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "311", "date": "2016-05-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "311", "date": "2016-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "620", "date": "2020-02-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "621", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "496", "employeeId": "499", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "622", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "387", "date": "2020-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "467", "date": "2018-08-27", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "471", "date": "2016-12-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "468", "date": "2016-12-19", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "505", "employeeId": "451", "date": "2018-04-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "506", "employeeId": "437", "date": "2014-11-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "507", "employeeId": "476", "date": "2017-09-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "508", "employeeId": "440", "date": "2019-06-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "442", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "458", "date": "2017-11-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "433", "date": "2014-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "452", "date": "2019-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "482", "date": "2017-11-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "463", "date": "2018-04-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "461", "date": "2017-09-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "516", "employeeId": "428", "date": "2013-11-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "517", "employeeId": "456", "date": "2016-09-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "472", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "483", "date": "2017-08-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "448", "date": "2014-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "521", "employeeId": "499", "date": "2019-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "499", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "352", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "623", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "624", "date": "2020-01-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "625", "date": "2020-01-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "527", "employeeId": "626", "date": "2020-01-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "627", "date": "2017-12-01", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "629", "date": "2017-01-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "630", "date": "2020-02-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "631", "date": "2017-08-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "303", "date": "2020-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "408", "date": "2020-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "535", "employeeId": "407", "date": "2020-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "263", "date": "2018-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "306", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "633", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "369", "date": "2018-04-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "634", "date": "2020-04-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "635", "date": "2020-04-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "636", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "637", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "327", "date": "2016-10-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "327", "date": "2017-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "377", "date": "2018-08-20", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "377", "date": "2018-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "319", "date": "2017-04-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "358", "date": "2017-07-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "358", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "358", "date": "2017-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "358", "date": "2018-01-07", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "358", "date": "2018-01-08", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "358", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "358", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "563", "employeeId": "638", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "639", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "246", "date": "2020-02-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "566", "employeeId": "151", "date": "2017-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "363", "date": "2018-01-15", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "363", "date": "2018-09-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "572", "employeeId": "317", "date": "2013-01-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "311", "date": "2015-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "311", "date": "2015-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "131", "date": "2016-04-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "432", "date": "2015-08-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "496", "date": "2019-06-07", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "430", "date": "2013-07-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "488", "date": "2017-10-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "455", "date": "2015-10-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "447", "date": "2015-10-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "583", "employeeId": "423", "date": "2014-08-25", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "495", "date": "2019-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "585", "employeeId": "487", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "449", "date": "2016-02-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "429", "date": "2015-04-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "469", "date": "2017-04-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "484", "date": "2017-08-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "454", "date": "2016-03-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "591", "employeeId": "485", "date": "2017-08-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "592", "employeeId": "424", "date": "2016-04-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "593", "employeeId": "493", "date": "2018-12-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "431", "date": "2014-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "425", "date": "2014-11-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "477", "date": "2017-10-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "489", "date": "2019-09-11", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "598", "employeeId": "475", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "459", "date": "2016-12-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "600", "employeeId": "446", "date": "2016-07-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "601", "employeeId": "307", "date": "2015-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "307", "date": "2016-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "285", "date": "2020-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "166", "date": "2020-02-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "640", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "131", "date": "2011-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "611", "employeeId": "154", "date": "2015-09-14", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "154", "date": "2015-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "154", "date": "2016-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "151", "date": "2020-03-06", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "628", "date": "2020-01-13", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "480", "date": "2017-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "486", "date": "2017-09-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "434", "date": "2014-01-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "619", "employeeId": "492", "date": "2018-12-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "620", "employeeId": "435", "date": "2014-02-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "621", "employeeId": "426", "date": "2013-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "479", "date": "2019-06-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "623", "employeeId": "494", "date": "2018-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "457", "date": "2015-09-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "497", "date": "2019-01-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "450", "date": "2015-12-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "481", "date": "2018-09-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "464", "date": "2016-11-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "629", "employeeId": "490", "date": "2018-09-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "462", "date": "2018-06-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "443", "date": "2014-09-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "441", "date": "2018-10-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "473", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "491", "date": "2018-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "460", "date": "2019-06-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "427", "date": "2014-01-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "438", "date": "2017-05-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "498", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "439", "date": "2015-11-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "474", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "465", "date": "2017-09-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "444", "date": "2018-05-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "453", "date": "2016-04-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "445", "date": "2014-09-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "498", "date": "2019-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "478", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "470", "date": "2017-03-06", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "436", "date": "2014-10-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "471", "date": "2016-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "468", "date": "2016-02-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "451", "date": "2014-12-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "476", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "440", "date": "2014-03-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "442", "date": "2014-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "458", "date": "2015-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "433", "date": "2013-01-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "452", "date": "2015-01-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "463", "date": "2015-12-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "461", "date": "2015-12-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "428", "date": "2012-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "456", "date": "2015-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "472", "date": "2016-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "663", "employeeId": "483", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "419", "date": "2017-12-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "448", "date": "2014-09-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "432", "date": "2012-12-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "496", "date": "2018-09-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "430", "date": "2012-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "641", "date": "2020-03-06", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "488", "date": "2017-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "455", "date": "2015-05-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "447", "date": "2014-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "423", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "674", "employeeId": "495", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "487", "date": "2017-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "429", "date": "2012-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "677", "employeeId": "469", "date": "2016-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "678", "employeeId": "541", "date": "2016-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "484", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "680", "employeeId": "424", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "681", "employeeId": "642", "date": "2020-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "131", "date": "2017-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "643", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "644", "date": "2020-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "685", "employeeId": "533", "date": "2016-05-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "533", "date": "2020-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "645", "date": "2020-06-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "646", "date": "2020-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "647", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "648", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "649", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "692", "employeeId": "650", "date": "2020-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "581", "date": "2020-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "254", "date": "2020-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "651", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "652", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "223", "date": "2020-03-20", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "653", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "231", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "275", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "654", "date": "2019-03-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "117", "date": "2017-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "655", "date": "2020-04-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "631", "date": "2020-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "705", "employeeId": "245", "date": "2020-03-27", "employmentStatus": "Terminated", "terminationReasonId": "Other - work authorization", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "161", "date": "2020-04-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "656", "date": "2020-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "245", "date": "2020-04-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "203", "date": "2020-04-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "493", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "431", "date": "2012-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "425", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "467", "date": "2016-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "477", "date": "2017-01-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "480", "date": "2017-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "486", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "434", "date": "2013-06-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "492", "date": "2018-06-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "435", "date": "2013-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "426", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "479", "date": "2017-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "494", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "457", "date": "2015-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "497", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "658", "date": "2020-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "659", "date": "2020-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "662", "date": "2020-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "663", "date": "2020-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "664", "date": "2020-05-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "665", "date": "2020-04-20", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "654", "date": "2020-04-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "667", "date": "2020-04-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "183", "date": "2017-04-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "245", "date": "2020-06-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "668", "date": "2020-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "224", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "238", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "745", "employeeId": "520", "date": "2014-10-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "485", "date": "2017-07-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "454", "date": "2015-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "460", "date": "2015-11-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "196", "date": "2018-04-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "444", "date": "2014-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "124", "date": "2019-09-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "669", "date": "2020-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "754", "employeeId": "670", "date": "2020-06-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "350", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "308", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "240", "date": "2020-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "240", "date": "2019-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "671", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "272", "date": "2020-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "293", "date": "2020-08-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "672", "date": "2020-06-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "763", "employeeId": "349", "date": "2020-06-09", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "674", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "767", "employeeId": "676", "date": "2020-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "768", "employeeId": "677", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "769", "employeeId": "678", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "770", "employeeId": "679", "date": "2020-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "771", "employeeId": "546", "date": "2020-06-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "546", "date": "2017-07-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "773", "employeeId": "546", "date": "2018-06-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "774", "employeeId": "546", "date": "2019-06-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "775", "employeeId": "640", "date": "2020-06-22", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "777", "employeeId": "546", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "778", "employeeId": "546", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "779", "employeeId": "546", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "780", "employeeId": "546", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "782", "employeeId": "681", "date": "2020-06-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "682", "date": "2020-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "785", "employeeId": "120", "date": "2020-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "345", "date": "2020-08-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "684", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "685", "date": "2020-08-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "122", "date": "2020-07-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "390", "date": "2020-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "230", "date": "2020-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "617", "date": "2020-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "624", "date": "2020-07-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "686", "date": "2020-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "795", "employeeId": "687", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "412", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "688", "date": "2020-07-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "689", "date": "2020-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "690", "date": "2020-06-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "691", "date": "2020-07-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "192", "date": "2020-07-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "693", "date": "2020-09-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "394", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "694", "date": "2020-07-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "695", "date": "2020-08-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "137", "date": "2020-08-07", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "696", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "122", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "811", "employeeId": "697", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "698", "date": "2020-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "814", "employeeId": "700", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "701", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "699", "date": "2020-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "817", "employeeId": "702", "date": "2020-08-14", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "818", "employeeId": "703", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "704", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "546", "date": "2020-08-31", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "546", "date": "2020-09-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "705", "date": "2020-08-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "706", "date": "2020-08-24", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "824", "employeeId": "707", "date": "2020-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "708", "date": "2020-09-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "709", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "710", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "711", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "712", "date": "2020-10-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "713", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "714", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "715", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "225", "date": "2020-09-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "716", "date": "2020-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "717", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "718", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "719", "date": "2020-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "838", "employeeId": "123", "date": "2020-09-18", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "720", "date": "2020-09-07", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "721", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "722", "date": "2020-10-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "723", "date": "2020-10-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "843", "employeeId": "724", "date": "2020-09-09", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "844", "employeeId": "725", "date": "2019-12-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "726", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "727", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "728", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "729", "date": "2020-11-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "730", "date": "2020-05-01", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "730", "date": "2020-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "731", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "732", "date": "2020-09-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "734", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "735", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "323", "date": "2020-10-09", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "736", "date": "2020-10-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "737", "date": "2020-10-12", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "738", "date": "2020-11-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "739", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "861", "employeeId": "740", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "741", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "742", "date": "2020-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "192", "date": "2020-09-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "689", "date": "2020-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "743", "date": "2020-11-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "744", "date": "2020-11-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "745", "date": "2020-11-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "870", "employeeId": "746", "date": "2021-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "747", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "183", "date": "2020-10-30", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "748", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "749", "date": "2020-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "752", "date": "2020-12-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "753", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "751", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "248", "date": "2020-11-13", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "754", "date": "2020-11-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "755", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "338", "date": "2020-11-13", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "756", "date": "2020-01-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "757", "date": "2020-11-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "758", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "759", "date": "2020-11-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "204", "date": "2020-11-20", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "760", "date": "2021-02-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "761", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "763", "date": "2021-01-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "764", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "765", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "579", "date": "2020-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "766", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "767", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "768", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "769", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "770", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "901", "employeeId": "771", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "772", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "773", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "774", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "775", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "717", "date": "2020-12-10", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "907", "employeeId": "776", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "725", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "777", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "778", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "605", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "912", "employeeId": "381", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "381", "date": "2021-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "780", "date": "2020-12-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "262", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "918", "employeeId": "749", "date": "2020-12-18", "employmentStatus": "Terminated", "terminationReasonId": "Attendance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "762", "date": "2020-12-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "743", "date": "2020-12-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "782", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "922", "employeeId": "783", "date": "2021-01-19", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "785", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "786", "date": "2021-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "787", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "788", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "690", "date": "2020-07-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "790", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "791", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "792", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "284", "date": "2021-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "379", "date": "2021-03-07", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "793", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "937", "employeeId": "794", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "795", "date": "2021-01-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "796", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "797", "date": "2021-01-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "941", "employeeId": "571", "date": "2021-03-12", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "798", "date": "2019-10-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "799", "date": "2021-04-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "800", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "801", "date": "2019-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "802", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "270", "date": "2021-03-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "803", "date": "2021-03-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "804", "date": "2020-03-23", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "239", "date": "2021-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "805", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "806", "date": "2021-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "807", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "225", "date": "2021-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "211", "date": "2021-02-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "139", "date": "2021-01-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "808", "date": "2021-02-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "809", "date": "2021-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "810", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "293", "date": "2021-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "801", "date": "2021-02-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "798", "date": "2021-02-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "965", "employeeId": "812", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "966", "employeeId": "720", "date": "2021-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "813", "date": "2021-02-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "133", "date": "2021-02-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "115", "date": "2021-02-12", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "971", "employeeId": "814", "date": "2021-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "815", "date": "2021-04-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "397", "date": "2021-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "816", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "817", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "818", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "819", "date": "2021-03-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "820", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "821", "date": "2021-02-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "822", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "823", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "824", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "825", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "744", "date": "2021-02-26", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "826", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "131", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "276", "date": "2021-03-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "827", "date": "2021-03-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "828", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "829", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "830", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "831", "date": "2021-05-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "832", "date": "2021-03-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "833", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "834", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "835", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "836", "date": "2021-06-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "686", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "271", "date": "2021-05-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "764", "date": "2021-03-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "263", "date": "2009-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "837", "date": "2021-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "838", "date": "2021-03-22", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "249", "date": "2021-04-02", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "720", "date": "2021-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "839", "date": "2021-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "732", "date": "2021-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "842", "date": "2021-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "843", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1014", "employeeId": "844", "date": "2021-04-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "845", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "846", "date": "2021-04-26", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "847", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "848", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1019", "employeeId": "849", "date": "2021-04-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "744", "date": "2021-04-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "215", "date": "2021-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "850", "date": "2021-04-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "850", "date": "2019-10-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "220", "date": "2021-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "851", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1026", "employeeId": "850", "date": "2017-06-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "852", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1028", "employeeId": "853", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "854", "date": "2021-04-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "855", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "266", "date": "2021-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "856", "date": "2021-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1033", "employeeId": "857", "date": "2021-04-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "655", "date": "2021-04-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "858", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "859", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "860", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "218", "date": "2021-04-16", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "307", "date": "2021-06-14", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "861", "date": "2021-06-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "862", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "724", "date": "2021-03-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "863", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "864", "date": "2020-06-26", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "404", "date": "2021-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1047", "employeeId": "125", "date": "2021-04-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1048", "employeeId": "865", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "866", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "705", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "867", "date": "2021-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "869", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1054", "employeeId": "870", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "871", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "129", "date": "2021-05-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1057", "employeeId": "872", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "873", "date": "2021-05-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "772", "date": "2021-05-06", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1060", "employeeId": "256", "date": "2021-05-21", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "874", "date": "2021-05-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "875", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "876", "date": "2021-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1064", "employeeId": "767", "date": "2021-08-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "877", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "756", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "878", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "879", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "277", "date": "2021-07-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "880", "date": "2021-06-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "258", "date": "2021-05-21", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "881", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "882", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1074", "employeeId": "883", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "884", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "736", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "885", "date": "2021-06-14", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "886", "date": "2021-06-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "887", "date": "2021-05-24", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "888", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "889", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "890", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "891", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "892", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "669", "date": "2021-05-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "854", "date": "2021-05-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "893", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "894", "date": "2021-08-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "895", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "895", "date": "2015-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "895", "date": "2014-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "896", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "772", "date": "2021-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "897", "date": "2021-07-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "898", "date": "2021-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "899", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "900", "date": "2021-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "901", "date": "2021-06-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "669", "date": "2021-06-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1100", "employeeId": "623", "date": "2021-06-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "722", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "902", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "777", "date": "2021-06-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "903", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1105", "employeeId": "904", "date": "2021-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1106", "employeeId": "905", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "854", "date": "2021-06-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "274", "date": "2021-07-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "782", "date": "2021-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1111", "employeeId": "907", "date": "2021-06-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "908", "date": "2021-06-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "899", "date": "2021-06-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "909", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "910", "date": "2021-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "378", "date": "2021-07-02", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "701", "date": "2021-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "911", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "776", "date": "2021-07-16", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "912", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "772", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1123", "employeeId": "913", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "610", "date": "2021-08-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1125", "employeeId": "914", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "763", "date": "2021-07-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "915", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "128", "date": "2021-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "244", "date": "2021-07-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "916", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "677", "date": "2021-08-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1135", "employeeId": "918", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "919", "date": "2021-08-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "920", "date": "2021-07-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1138", "employeeId": "921", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "922", "date": "2021-07-15", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "923", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "896", "date": "2021-07-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "924", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "925", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "927", "date": "2021-09-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "926", "date": "2021-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "929", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "930", "date": "2021-08-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "629", "date": "2021-07-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "928", "date": "2021-07-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "709", "date": "2021-07-26", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "931", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "932", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "933", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "759", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1156", "employeeId": "808", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "775", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "827", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "897", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "934", "date": "2021-08-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "935", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1162", "employeeId": "936", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1163", "employeeId": "937", "date": "2021-09-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "907", "date": "2021-08-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "908", "date": "2021-08-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "938", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "939", "date": "2021-08-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "940", "date": "2021-08-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "364", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "941", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "942", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "943", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "944", "date": "2021-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "945", "date": "2021-08-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "282", "date": "2021-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "946", "date": "2021-09-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "162", "date": "2021-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "742", "date": "2021-08-21", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "947", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "948", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "315", "date": "2021-08-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "873", "date": "2021-09-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1184", "employeeId": "201", "date": "2021-08-27", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "951", "date": "2021-08-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "952", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "953", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "954", "date": "2021-10-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "886", "date": "2021-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "216", "date": "2021-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "304", "date": "2021-08-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "955", "date": "2021-09-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "956", "date": "2021-08-30", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "957", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "958", "date": "2021-10-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "950", "date": "2021-08-31", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "959", "date": "2021-05-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "241", "date": "2021-09-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "960", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "961", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "962", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "344", "date": "2021-09-17", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "546", "date": "2021-09-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "963", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1205", "employeeId": "964", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "965", "date": "2021-09-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "966", "date": "2021-09-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "259", "date": "2021-09-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "967", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "968", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "969", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1212", "employeeId": "970", "date": "2021-09-08", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "823", "date": "2021-09-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "823", "date": "2021-09-09", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1215", "employeeId": "971", "date": "2021-09-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "972", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "333", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "973", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "974", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "975", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "976", "date": "2021-09-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "665", "date": "2021-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "977", "date": "2021-10-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "978", "date": "2021-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1225", "employeeId": "885", "date": "2021-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1226", "employeeId": "979", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "980", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "902", "date": "2021-09-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "981", "date": "2021-10-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "982", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "983", "date": "2021-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "984", "date": "2021-10-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "985", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "763", "date": "2021-09-20", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "795", "date": "2021-09-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "986", "date": "2021-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "987", "date": "2021-11-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "988", "date": "2021-09-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "989", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "205", "date": "2021-10-04", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1241", "employeeId": "990", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "288", "date": "2021-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "991", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "992", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "993", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "994", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "793", "date": "2021-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1249", "employeeId": "815", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "996", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "193", "date": "2021-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1252", "employeeId": "997", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "765", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "998", "date": "2021-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "999", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "466", "date": "2016-01-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "995", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "1000", "date": "2022-01-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "1001", "date": "2021-10-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "1002", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "1003", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1262", "employeeId": "1004", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "466", "date": "2016-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "511", "date": "2019-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "918", "date": "2021-10-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "746", "date": "2021-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "1005", "date": "2021-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1268", "employeeId": "1006", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1269", "employeeId": "291", "date": "2021-09-23", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1270", "employeeId": "244", "date": "2021-10-12", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "1007", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "1008", "date": "2021-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "1009", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "1010", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "1011", "date": "2021-10-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "964", "date": "2021-10-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "1012", "date": "2021-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "1013", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "1014", "date": "2021-11-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "251", "date": "2021-10-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "1015", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "1016", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "1017", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "1018", "date": "2021-11-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "1019", "date": "2021-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "966", "date": "2021-10-27", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "1020", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "714", "date": "2021-10-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "1", "date": "2021-10-14", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "210", "date": "2021-10-22", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "1021", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1292", "employeeId": "1022", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1293", "employeeId": "1023", "date": "2021-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "1024", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "861", "date": "2021-11-08", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "1025", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1297", "employeeId": "1026", "date": "2021-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1298", "employeeId": "1027", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "1028", "date": "2022-01-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "1029", "date": "2022-01-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "1030", "date": "2021-11-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1302", "employeeId": "1031", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "577", "date": "2021-12-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1304", "employeeId": "305", "date": "2021-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "1032", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "1033", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "1034", "date": "2022-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "1035", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "1036", "date": "2021-12-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "1037", "date": "2021-12-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "1038", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "1039", "date": "2022-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "1040", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "1041", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1315", "employeeId": "1042", "date": "2021-12-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "763", "date": "2021-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "1043", "date": "2021-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "1044", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "1045", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1320", "employeeId": "1046", "date": "2021-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "1047", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "1048", "date": "2022-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "677", "date": "2021-12-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "1049", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "1050", "date": "2021-12-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "783", "date": "2021-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "1051", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "1052", "date": "2022-01-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "821", "date": "2021-11-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "1053", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "1054", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "374", "date": "2021-12-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1333", "employeeId": "1055", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "1056", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "1057", "date": "2022-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1336", "employeeId": "1058", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "587", "date": "2021-12-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "763", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "786", "date": "2022-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "721", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "1059", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "1060", "date": "2022-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "1061", "date": "2022-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "1062", "date": "2022-01-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "1063", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "1064", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "1065", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "1001", "date": "2021-12-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "1066", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "1067", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "1068", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "1069", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "846", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "806", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1357", "employeeId": "976", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1358", "employeeId": "965", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "1072", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "1073", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "1074", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "1075", "date": "2022-02-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "1076", "date": "2022-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "1077", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "1078", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "956", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "1079", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1368", "employeeId": "1", "date": "2022-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "1080", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "1081", "date": "2022-01-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "237", "date": "2022-01-07", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "1083", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "1084", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "1052", "date": "2022-01-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "1085", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "415", "date": "2022-01-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "1086", "date": "2022-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "995", "date": "2022-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "1003", "date": "2022-01-17", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1382", "employeeId": "1088", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "1089", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "1090", "date": "2022-01-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "1092", "date": "2022-02-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "1093", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "1091", "date": "2022-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "714", "date": "2021-12-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "1095", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "210", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "1096", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "1097", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "621", "date": "2022-01-21", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "1098", "date": "2022-01-24", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "913", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "1099", "date": "2022-01-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "854", "date": "2022-02-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "854", "date": "2022-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "1100", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "1101", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1402", "employeeId": "1102", "date": "2022-02-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "1103", "date": "2022-05-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "857", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "919", "date": "2022-02-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "642", "date": "2022-02-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "175", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "731", "date": "2022-01-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "283", "date": "2022-02-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "1104", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "1105", "date": "2022-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "1107", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "1108", "date": "2022-02-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "915", "date": "2022-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "1109", "date": "2022-02-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "1110", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "178", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "601", "date": "2022-02-17", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "1111", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1421", "employeeId": "154", "date": "2022-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "1112", "date": "2022-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "131", "date": "2022-03-04", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "1113", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "1114", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "1115", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "1116", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "1117", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "1118", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "1119", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "1120", "date": "2022-02-28", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "1121", "date": "2022-04-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "1122", "date": "2022-03-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "1124", "date": "2022-02-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "621", "date": "2022-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "1126", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "1127", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "393", "date": "2022-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "1128", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1442", "employeeId": "1129", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "167", "date": "2022-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "1130", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "1131", "date": "2022-05-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "1132", "date": "2022-05-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "186", "date": "2022-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "1133", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "1134", "date": "2022-02-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1451", "employeeId": "1136", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "1023", "date": "2022-03-03", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "946", "date": "2022-03-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "1138", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "1139", "date": "2022-03-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "1140", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "1141", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "1142", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "1143", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "181", "date": "2022-03-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "1144", "date": "2022-04-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "1145", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "1146", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "1147", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "945", "date": "2022-02-23", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "1148", "date": "2022-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "832", "date": "2022-03-16", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "945", "date": "2022-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1470", "employeeId": "1149", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "1150", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1472", "employeeId": "788", "date": "2022-03-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "1060", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "1151", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "1152", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "1154", "date": "2022-04-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "1155", "date": "2022-04-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "1156", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "1157", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "1158", "date": "2022-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "988", "date": "2022-03-29", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "138", "date": "2022-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "907", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "737", "date": "2022-03-25", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "1159", "date": "2022-04-04", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "900", "date": "2022-03-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "1160", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "1161", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "1162", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "1163", "date": "2022-03-28", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "1164", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "1165", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "1166", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "1167", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "1168", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "1169", "date": "2022-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "188", "date": "2022-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "1170", "date": "2022-04-04", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1500", "employeeId": "1171", "date": "2022-04-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "1172", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "1173", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "1174", "date": "2022-04-01", "employmentStatus": "Vendor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "681", "date": "2022-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "1175", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "1176", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "1178", "date": "2022-05-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "1179", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "1180", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "1181", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1512", "employeeId": "1182", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "697", "date": "2022-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "1183", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "931", "date": "2022-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "1184", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1518", "employeeId": "1185", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "1186", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "1187", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "908", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "1188", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "1061", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "1190", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "346", "date": "2022-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "1191", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "1193", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "761", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1532", "employeeId": "892", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "1194", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "1195", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "920", "date": "2022-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "1196", "date": "2022-05-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "993", "date": "2022-04-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "1197", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "1198", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "1199", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "1200", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "1201", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "1203", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1545", "employeeId": "594", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "1204", "date": "2022-04-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "1205", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1548", "employeeId": "1206", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "1207", "date": "2022-05-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "311", "date": "2014-06-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "311", "date": "2014-08-08", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "1208", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "1209", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "1210", "date": "2022-05-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "1211", "date": "2022-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "818", "date": "2022-04-27", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "1212", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "621", "date": "2022-05-02", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "1213", "date": "2022-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1560", "employeeId": "835", "date": "2022-05-02", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "1214", "date": "2022-05-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "419", "date": "2022-05-06", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1563", "employeeId": "1215", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "1187", "date": "2022-05-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "609", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "1216", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "1217", "date": "2022-05-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "756", "date": "2022-05-12", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "824", "date": "2022-05-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "1219", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "1220", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1575", "employeeId": "1222", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "1223", "date": "2022-05-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1577", "employeeId": "1224", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "1225", "date": "2022-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1579", "employeeId": "1228", "date": "2022-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1580", "employeeId": "1229", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "1081", "date": "2022-05-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "199", "date": "2022-05-23", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "1230", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "1231", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "1233", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "1227", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1587", "employeeId": "677", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "838", "date": "2022-05-20", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1589", "employeeId": "200", "date": "2022-05-23", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "1232", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "546", "date": "2022-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1592", "employeeId": "1061", "date": "2022-06-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "1060", "date": "2022-06-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "702", "date": "2022-05-23", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "1234", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "810", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "1235", "date": "2022-05-31", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1600", "employeeId": "1197", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "621", "date": "2022-05-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "823", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "1237", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1604", "employeeId": "897", "date": "2022-06-24", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "1238", "date": "2022-07-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1606", "employeeId": "1239", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "1240", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1608", "employeeId": "1241", "date": "2022-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1609", "employeeId": "1242", "date": "2022-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1610", "employeeId": "1243", "date": "2022-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "1244", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "335", "date": "2022-06-06", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1613", "employeeId": "156", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "1081", "date": "2022-06-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1615", "employeeId": "1245", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "1246", "date": "2022-07-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1617", "employeeId": "1247", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "1248", "date": "2022-06-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "311", "date": "2022-08-22", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "1250", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "1251", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "1252", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "1108", "date": "2022-07-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "1254", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "1255", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "1256", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1630", "employeeId": "1258", "date": "2022-07-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "1259", "date": "2022-06-15", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1632", "employeeId": "1260", "date": "2022-07-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "1261", "date": "2022-06-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "1262", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "1264", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "546", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "842", "date": "2022-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1639", "employeeId": "1265", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "236", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "1170", "date": "2022-06-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1642", "employeeId": "780", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "1266", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1644", "employeeId": "1267", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "1268", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "832", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "1269", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "1270", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "1272", "date": "2022-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "610", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "767", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "1274", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "1275", "date": "2022-07-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "247", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "1276", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "1277", "date": "2022-06-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "1278", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "1097", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "725", "date": "2022-05-30", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "985", "date": "2022-06-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "1062", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "334", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "408", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "934", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "1280", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1666", "employeeId": "1281", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "1283", "date": "2022-08-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "1284", "date": "2022-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "629", "date": "2022-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "1285", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "965", "date": "2022-07-05", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "582", "date": "2022-07-05", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "1286", "date": "2022-07-11", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "1287", "date": "2022-07-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "1151", "date": "2022-07-11", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1676", "employeeId": "1288", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "1072", "date": "2022-07-11", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "1289", "date": "2022-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "1291", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "134", "date": "2022-07-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "584", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1682", "employeeId": "209", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "1292", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "367", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "725", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "783", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "1290", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "1293", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "1294", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1690", "employeeId": "808", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "222", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "1295", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "1296", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "1146", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "1297", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "1248", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "225", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "1301", "date": "2022-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "686", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "1047", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "988", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "1111", "date": "2022-07-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "197", "date": "2022-07-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "908", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "1303", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "1304", "date": "2022-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "1300", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "1305", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "245", "date": "2022-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "1196", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1712", "employeeId": "132", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "1306", "date": "2022-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1714", "employeeId": "1298", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "1155", "date": "2022-10-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "1307", "date": "2022-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1717", "employeeId": "985", "date": "2022-07-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "1286", "date": "2022-08-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "1308", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "1309", "date": "2022-05-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "1310", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "1166", "date": "2022-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "818", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "134", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "1271", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "1311", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "226", "date": "2022-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1729", "employeeId": "1141", "date": "2022-08-08", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "1312", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1731", "employeeId": "1313", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "1314", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "907", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1734", "employeeId": "1165", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "1167", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1736", "employeeId": "1164", "date": "2022-08-26", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1737", "employeeId": "1030", "date": "2022-09-16", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1738", "employeeId": "1315", "date": "2022-08-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "817", "date": "2022-08-26", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "1316", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1741", "employeeId": "1317", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "1320", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "1132", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "1131", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "1207", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "1081", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "199", "date": "2022-08-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "903", "date": "2022-08-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "682", "date": "2022-08-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "705", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "1204", "date": "2022-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "227", "date": "2022-08-18", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "1188", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1754", "employeeId": "975", "date": "2022-10-17", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "1141", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1756", "employeeId": "1323", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "1318", "date": "2022-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "1324", "date": "2022-08-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1759", "employeeId": "1024", "date": "2022-08-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "1325", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "1101", "date": "2022-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "989", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1763", "employeeId": "1326", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "1327", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "1328", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "614", "date": "2022-09-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "1329", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "850", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "1241", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "1217", "date": "2022-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "1242", "date": "2022-09-06", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "1330", "date": "2022-09-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "1321", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "1302", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "1299", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "1273", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1777", "employeeId": "1322", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "1319", "date": "2022-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "1331", "date": "2022-09-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "1332", "date": "2022-09-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "1215", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1783", "employeeId": "1314", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "1333", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "1334", "date": "2022-09-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "1335", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "998", "date": "2022-05-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1788", "employeeId": "1111", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "1120", "date": "2022-08-29", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1790", "employeeId": "1259", "date": "2022-09-06", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "1336", "date": "2022-09-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1792", "employeeId": "412", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "313", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "1338", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1795", "employeeId": "1339", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "1340", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "1342", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "725", "date": "2022-12-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1799", "employeeId": "1341", "date": "2022-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1800", "employeeId": "1275", "date": "2022-09-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "1343", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1802", "employeeId": "227", "date": "2022-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "1344", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "641", "date": "2022-09-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1805", "employeeId": "1345", "date": "2022-09-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "1026", "date": "2022-05-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "1026", "date": "2022-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1808", "employeeId": "231", "date": "2022-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "1243", "date": "2022-09-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1810", "employeeId": "1346", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "621", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1812", "employeeId": "1348", "date": "2022-10-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "1349", "date": "2022-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1814", "employeeId": "730", "date": "2022-09-26", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "1108", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "1350", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "1351", "date": "2021-09-27", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1818", "employeeId": "971", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "1352", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "1353", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "1347", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1822", "employeeId": "1356", "date": "2022-09-05", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "1357", "date": "2022-10-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1824", "employeeId": "158", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "807", "date": "2022-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1826", "employeeId": "144", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "227", "date": "2022-10-10", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "1358", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "1360", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1831", "employeeId": "863", "date": "2022-10-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "1024", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1833", "employeeId": "797", "date": "2022-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "178", "date": "2022-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1835", "employeeId": "1362", "date": "2022-10-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "874", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1837", "employeeId": "353", "date": "2010-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "1363", "date": "2022-10-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "1155", "date": "2022-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "725", "date": "2022-11-21", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "364", "date": "2022-11-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1842", "employeeId": "742", "date": "2022-09-12", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "197", "date": "2022-10-17", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1844", "employeeId": "1364", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "165", "date": "2022-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "1366", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "1367", "date": "2022-11-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "1368", "date": "2022-11-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1849", "employeeId": "1005", "date": "2022-04-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "1005", "date": "2022-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "1013", "date": "2022-11-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1852", "employeeId": "1369", "date": "2022-11-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "1292", "date": "2022-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1854", "employeeId": "998", "date": "2022-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "1019", "date": "2022-05-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "1019", "date": "2022-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "1370", "date": "2022-01-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "1371", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "910", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "953", "date": "2022-11-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "1355", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "1372", "date": "2022-12-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "227", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "1365", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1865", "employeeId": "1373", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "1375", "date": "2022-11-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1867", "employeeId": "1376", "date": "2023-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "1021", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "120", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "1361", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "1354", "date": "2023-01-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "1374", "date": "2023-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "1378", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1875", "employeeId": "1379", "date": "2023-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "1381", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1877", "employeeId": "587", "date": "2022-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "613", "date": "2022-12-26", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1879", "employeeId": "1382", "date": "2023-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "353", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1881", "employeeId": "1182", "date": "2022-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "1383", "date": "2022-12-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "959", "date": "2022-12-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "197", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "1384", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1887", "employeeId": "1385", "date": "2023-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1386", "date": "2023-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1387", "date": "2022-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1890", "employeeId": "1388", "date": "2022-12-09", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1891", "employeeId": "1389", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1152", "date": "2022-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1893", "employeeId": "1390", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1010", "date": "2022-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1895", "employeeId": "1335", "date": "2022-12-06", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1896", "employeeId": "1027", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "825", "date": "2022-12-23", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "634", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "895", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "356", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1902", "employeeId": "1233", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "348", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "267", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1905", "employeeId": "1088", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "1391", "date": "2023-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "363", "date": "2022-12-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "767", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1909", "employeeId": "1392", "date": "2022-12-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1393", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1911", "employeeId": "134", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "286", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1394", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "979", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1915", "employeeId": "1395", "date": "2023-01-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "652", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1917", "employeeId": "967", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1140", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "142", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "826", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "1342", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "770", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "1265", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "829", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "651", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "145", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "155", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "790", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "173", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "1024", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "1267", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "1077", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "1214", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "134", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "704", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "250", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "643", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "851", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1940", "employeeId": "1295", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "669", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1105", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "163", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "676", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "715", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "996", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "1256", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "600", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "722", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "1043", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "149", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1183", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1162", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1067", "date": "2023-01-13", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "1141", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "1020", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "174", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "991", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "1225", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "1126", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "207", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "1397", "date": "2023-02-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "951", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "1018", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "946", "date": "2022-09-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "1008", "date": "2022-04-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "1008", "date": "2022-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "1351", "date": "2022-09-27", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "1235", "date": "2022-12-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "1240", "date": "2022-12-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "922", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "1110", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "730", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "1121", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "928", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "849", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "984", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "670", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1398", "date": "2023-01-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "759", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "745", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "1400", "date": "2023-01-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "1266", "date": "2022-12-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1984", "employeeId": "615", "date": "2022-12-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1985", "employeeId": "794", "date": "2022-12-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "192", "date": "2023-01-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "1401", "date": "2023-01-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "182", "date": "2023-01-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "1402", "date": "2023-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "1399", "date": "2023-02-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "1403", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "197", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "696", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "615", "date": "2023-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "794", "date": "2023-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "414", "date": "2023-01-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "330", "date": "2023-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "1335", "date": "2023-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1210", "date": "2023-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "818", "date": "2023-01-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "1334", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "1336", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2003", "employeeId": "1120", "date": "2023-01-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2004", "employeeId": "763", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2005", "employeeId": "1243", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2006", "employeeId": "1241", "date": "2023-01-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "1315", "date": "2023-01-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2008", "employeeId": "1405", "date": "2020-01-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "1330", "date": "2023-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "818", "date": "2023-01-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "593", "date": "2023-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "290", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2013", "employeeId": "1091", "date": "2023-03-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2014", "employeeId": "844", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2015", "employeeId": "1278", "date": "2023-02-10", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2016", "employeeId": "119", "date": "2023-02-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2017", "employeeId": "998", "date": "2023-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2018", "employeeId": "1404", "date": "2023-02-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1407", "date": "2023-02-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "1408", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1409", "date": "2023-02-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "1410", "date": "2023-02-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "1411", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "1412", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2025", "employeeId": "1413", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2026", "employeeId": "1414", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "1415", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "1416", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "309", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "1419", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1420", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2032", "employeeId": "1421", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "1422", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "1207", "date": "2023-02-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "1406", "date": "2023-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "1241", "date": "2023-02-17", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "935", "date": "2023-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "1345", "date": "2023-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "1301", "date": "2023-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2041", "employeeId": "907", "date": "2023-06-19", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1165", "date": "2023-06-19", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2043", "employeeId": "1426", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "1427", "date": "2023-06-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2045", "employeeId": "1424", "date": "2023-03-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "1418", "date": "2023-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2047", "employeeId": "1332", "date": "2023-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "588", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "1367", "date": "2023-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "1369", "date": "2023-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1428", "date": "2023-01-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "1429", "date": "2023-02-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "1431", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "1432", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "1433", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "1434", "date": "2023-02-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1435", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "1435", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "1436", "date": "2022-09-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2061", "employeeId": "1437", "date": "2022-08-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2062", "employeeId": "1437", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "1438", "date": "2023-02-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "1439", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2065", "employeeId": "1439", "date": "2023-02-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2066", "employeeId": "1440", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2067", "employeeId": "1440", "date": "2023-02-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2068", "employeeId": "1441", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "1441", "date": "2022-12-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "1442", "date": "2022-10-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "1442", "date": "2022-11-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "605", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "1008", "date": "2023-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "1005", "date": "2023-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2075", "employeeId": "1430", "date": "2023-03-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "1430", "date": "2023-03-10", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "771", "date": "2023-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "987", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "1428", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "1438", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "1429", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "1431", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "1432", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "1433", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "1434", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "1436", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "1309", "date": "2022-08-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "1295", "date": "2023-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2089", "employeeId": "1295", "date": "2023-03-17", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "1443", "date": "2023-03-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "1445", "date": "2023-03-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "1445", "date": "2023-03-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "1446", "date": "2023-03-27", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "1425", "date": "2023-03-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "1425", "date": "2023-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "846", "date": "2023-03-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "950", "date": "2023-03-29", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "1007", "date": "2023-04-25", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "376", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "264", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "292", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "1444", "date": "2023-04-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "1417", "date": "2023-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "669", "date": "2023-04-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "1049", "date": "2023-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "1154", "date": "2023-04-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "1449", "date": "2023-04-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "1449", "date": "2023-04-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "1451", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "1291", "date": "2023-03-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "257", "date": "2023-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "748", "date": "2023-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "1448", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "1357", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "1132", "date": "2023-05-30", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "1340", "date": "2023-04-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "205", "date": "2023-04-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "342", "date": "2023-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2120", "employeeId": "671", "date": "2023-06-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "1454", "date": "2023-04-04", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "1455", "date": "2023-04-04", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "1453", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "1456", "date": "2023-04-24", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2125", "employeeId": "725", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "1457", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "1457", "date": "2023-05-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2128", "employeeId": "1453", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "1452", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "1452", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "725", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "1291", "date": "2023-04-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "1266", "date": "2023-04-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "1210", "date": "2023-04-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "1409", "date": "2023-04-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "1181", "date": "2023-05-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "171", "date": "2023-05-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "1459", "date": "2023-05-03", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "1296", "date": "2023-05-26", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "1179", "date": "2023-05-12", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "1063", "date": "2023-05-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "1327", "date": "2023-05-09", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "1463", "date": "2023-05-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "1465", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "1461", "date": "2023-05-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "1461", "date": "2023-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "1464", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "1460", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "1466", "date": "2023-05-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "1045", "date": "2023-05-26", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "1467", "date": "2023-05-17", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "1467", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2153", "employeeId": "1468", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "1469", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "1470", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "1472", "date": "2023-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "1248", "date": "2023-06-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "1473", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "307", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "924", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "1400", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2162", "employeeId": "1401", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "1474", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "1476", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "1477", "date": "2023-09-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "1478", "date": "2023-09-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "1471", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2168", "employeeId": "1480", "date": "2023-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "1462", "date": "2023-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "1481", "date": "2023-05-19", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "1482", "date": "2021-08-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "1483", "date": "2023-04-06", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "1484", "date": "2023-03-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "1485", "date": "2021-08-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "266", "date": "2022-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "1486", "date": "2023-03-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "1487", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "1488", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "1489", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "1490", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "1491", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "1492", "date": "2022-05-31", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2183", "employeeId": "1493", "date": "2022-03-21", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "1494", "date": "2022-02-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "1495", "date": "2022-09-28", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2186", "employeeId": "1496", "date": "2023-05-26", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "1475", "date": "2023-05-30", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "1475", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "1479", "date": "2023-09-04", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "1210", "date": "2023-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "1353", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "1499", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "1500", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "1501", "date": "2023-05-17", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "1502", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2196", "employeeId": "1159", "date": "2023-05-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "192", "date": "2023-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "1098", "date": "2023-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "1498", "date": "2023-06-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "1498", "date": "2023-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "1504", "date": "2023-06-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "1504", "date": "2023-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "1505", "date": "2023-04-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "649", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "1508", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "1510", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "1511", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "1258", "date": "2023-07-03", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "1512", "date": "2023-06-21", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "1503", "date": "2023-06-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "1513", "date": "2023-06-07", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "1184", "date": "2023-06-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "1284", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "1286", "date": "2023-07-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "1507", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "1507", "date": "2023-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "1497", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "1497", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "1506", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "1506", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "1421", "date": "2023-06-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "1446", "date": "2023-06-13", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "210", "date": "2023-06-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "691", "date": "2023-06-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "707", "date": "2023-08-21", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "410", "date": "2023-08-28", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "1078", "date": "2023-07-28", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "1520", "date": "2023-07-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "1458", "date": "2023-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "1518", "date": "2023-07-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "1523", "date": "2023-07-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "1291", "date": "2023-07-31", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "1515", "date": "2023-07-12", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "1515", "date": "2023-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "1522", "date": "2023-07-13", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "1522", "date": "2023-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "691", "date": "2023-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "124", "date": "2019-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "1083", "date": "2023-07-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "1526", "date": "2023-07-19", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "1526", "date": "2023-07-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "925", "date": "2023-07-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "1328", "date": "2023-07-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "1527", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "1529", "date": "2023-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "1528", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "1530", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "1531", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "1532", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "1533", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "1524", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "1524", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "1525", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "1525", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "1521", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "1521", "date": "2023-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "1248", "date": "2023-08-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "695", "date": "2023-08-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "1315", "date": "2023-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "210", "date": "2023-07-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "1538", "date": "2023-08-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "1539", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "923", "date": "2023-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "1286", "date": "2023-08-08", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "1540", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "1541", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "1426", "date": "2023-08-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "1472", "date": "2023-08-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "1474", "date": "2023-08-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "1165", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "907", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "1427", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "1476", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "1544", "date": "2023-08-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "1543", "date": "2023-08-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "1543", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "1542", "date": "2023-08-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "1542", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "714", "date": "2023-09-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "959", "date": "2023-08-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "1421", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "1457", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "1545", "date": "2023-09-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "1366", "date": "2023-08-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "1536", "date": "2023-08-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "1536", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "1403", "date": "2023-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "1360", "date": "2023-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "401", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "1268", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "311", "date": "2023-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "1547", "date": "2023-08-29", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "1548", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "1548", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "1546", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "1546", "date": "2023-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "1535", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "1535", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "1534", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "1534", "date": "2023-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "1516", "date": "2023-08-21", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "1549", "date": "2023-08-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "1492", "date": "2023-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "1287", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "1550", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "1291", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "1083", "date": "2023-06-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "1461", "date": "2023-08-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "1554", "date": "2023-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "1415", "date": "2023-08-07", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "143", "date": "2023-09-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "839", "date": "2023-09-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "1514", "date": "2023-10-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "1552", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "1552", "date": "2023-09-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "1551", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "1551", "date": "2023-09-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "1556", "date": "2023-09-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "1556", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "1553", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "1553", "date": "2023-10-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "364", "date": "2023-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "1119", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "1083", "date": "2023-09-07", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "1388", "date": "2023-09-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "1415", "date": "2023-09-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "1558", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "1557", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "1559", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "1132", "date": "2023-08-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "963", "date": "2023-09-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "1560", "date": "2023-09-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "1560", "date": "2023-09-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "650", "date": "2023-09-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "1561", "date": "2023-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "1547", "date": "2023-09-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "1562", "date": "2023-10-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "150", "date": "2023-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "909", "date": "2023-10-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "403", "date": "2023-11-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "757", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "1463", "date": "2023-09-22", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "1563", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "1124", "date": "2023-09-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "1564", "date": "2023-10-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "1260", "date": "2023-09-28", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "700", "date": "2023-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "1220", "date": "2023-10-06", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "1565", "date": "2023-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "1566", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2356", "employeeId": "1569", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "1568", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "1568", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2359", "employeeId": "1567", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "1569", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "1566", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "1565", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "1567", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "820", "date": "2023-09-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "1570", "date": "2023-10-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "1571", "date": "2023-10-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "1381", "date": "2023-10-09", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "719", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "669", "date": "2023-09-10", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "1466", "date": "2023-08-23", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "1572", "date": "2021-07-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "1573", "date": "2021-07-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "1574", "date": "2023-06-08", "employmentStatus": "Vendor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "1555", "date": "2023-10-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "1555", "date": "2023-10-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "1575", "date": "2023-10-04", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "1575", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "1576", "date": "2023-10-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "1124", "date": "2023-10-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "739", "date": "2023-10-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "1578", "date": "2023-10-10", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "1578", "date": "2023-11-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "1136", "date": "2023-11-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "1317", "date": "2023-10-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "1484", "date": "2023-10-13", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "587", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2387", "employeeId": "1180", "date": "2023-10-16", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "1580", "date": "2023-10-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "1481", "date": "2023-10-17", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2390", "employeeId": "1452", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "1518", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "1581", "date": "2023-10-23", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "1577", "date": "2023-10-18", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "1577", "date": "2023-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "1118", "date": "2023-10-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "1194", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "1335", "date": "2023-10-23", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "1582", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "1014", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "410", "date": "2023-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "901", "date": "2023-11-17", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "1583", "date": "2023-10-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "1583", "date": "2023-10-24", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "1044", "date": "2023-10-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "1586", "date": "2023-10-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "1587", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "1588", "date": "2023-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "1589", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "1590", "date": "2023-11-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "190", "date": "2023-11-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "1593", "date": "2023-10-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "1073", "date": "2023-11-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "1356", "date": "2023-10-23", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "1362", "date": "2023-10-31", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "1592", "date": "2023-11-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "1592", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "1591", "date": "2023-11-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "1591", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "1002", "date": "2023-11-24", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "1585", "date": "2023-11-07", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "1585", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "1584", "date": "2023-11-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "1584", "date": "2023-11-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "1579", "date": "2023-11-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "1579", "date": "2024-01-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "859", "date": "2023-11-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "1597", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "395", "date": "2024-02-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "1598", "date": "2023-11-20", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "1599", "date": "2023-11-24", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "707", "date": "2023-11-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "1384", "date": "2023-11-15", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "1600", "date": "2023-11-13", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "1600", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "1601", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "1603", "date": "2023-11-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "1604", "date": "2023-11-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2441", "employeeId": "820", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "1044", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "1605", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2444", "employeeId": "1605", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1595", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1595", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "1602", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1602", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "1606", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1606", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "1607", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1607", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "1608", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1608", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1609", "date": "2024-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2456", "employeeId": "1610", "date": "2023-11-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "1610", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2458", "employeeId": "1611", "date": "2023-11-16", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2459", "employeeId": "1612", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "1612", "date": "2023-11-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "1613", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "1614", "date": "2023-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "1335", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "1346", "date": "2023-11-17", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1507", "date": "2023-11-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1615", "date": "2023-11-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "1615", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "1616", "date": "2023-11-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "1616", "date": "2023-12-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "1618", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1619", "date": "2023-11-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2472", "employeeId": "1620", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "1621", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "1073", "date": "2023-11-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1622", "date": "2024-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "669", "date": "2023-11-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "775", "date": "2024-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2478", "employeeId": "1073", "date": "2023-12-06", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "1617", "date": "2023-11-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "1617", "date": "2023-12-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "1624", "date": "2023-11-29", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "1624", "date": "2023-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "1598", "date": "2023-12-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "1103", "date": "2024-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "1568", "date": "2023-11-29", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "1628", "date": "2023-12-04", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "1628", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1626", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2489", "employeeId": "1626", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1625", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "1625", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "1627", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "1627", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "1623", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1623", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2496", "employeeId": "1630", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "1313", "date": "2023-12-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "936", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1631", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "1632", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1180", "date": "2023-12-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1633", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1634", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1635", "date": "2024-03-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2505", "employeeId": "1636", "date": "2024-03-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1629", "date": "2023-12-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1629", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "1637", "date": "2023-12-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2509", "employeeId": "1637", "date": "2023-12-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1599", "date": "2023-12-15", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "1624", "date": "2023-12-13", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1638", "date": "2023-12-11", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1638", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1639", "date": "2023-12-12", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1639", "date": "2024-01-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1608", "date": "2023-12-04", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2517", "employeeId": "1640", "date": "2023-12-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1640", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1641", "date": "2023-12-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1641", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "1373", "date": "2023-12-18", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "1325", "date": "2023-12-13", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "1642", "date": "2023-12-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2524", "employeeId": "1028", "date": "2024-01-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1643", "date": "2023-12-14", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "1643", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "1025", "date": "2024-01-02", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2528", "employeeId": "1644", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1443", "date": "2023-12-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1646", "date": "2024-01-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1145", "date": "2024-01-12", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "266", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "176", "date": "2024-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2535", "employeeId": "1083", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2536", "employeeId": "1373", "date": "2024-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1036", "date": "2024-01-12", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1648", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1648", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1649", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "1649", "date": "2024-01-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "1650", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "1650", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1643", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2545", "employeeId": "639", "date": "2024-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "179", "date": "2024-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2547", "employeeId": "1550", "date": "2024-01-26", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "1541", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "1651", "date": "2024-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "1652", "date": "2024-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "1426", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "1477", "date": "2024-03-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "1645", "date": "2024-01-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1645", "date": "2024-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "739", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "1647", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "1506", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "664", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "242", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "1653", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "748", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "974", "date": "2024-01-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "1540", "date": "2024-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "645", "date": "2024-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1549", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2566", "employeeId": "963", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1571", "date": "2024-01-18", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1624", "date": "2024-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "1654", "date": "2024-01-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1655", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1656", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1478", "date": "2024-03-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1455", "date": "2024-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2575", "employeeId": "1593", "date": "2024-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "374", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "393", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2578", "employeeId": "939", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "977", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "1011", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1037", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2582", "employeeId": "1041", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "1178", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2584", "employeeId": "1211", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1372", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "1395", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "1397", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "1546", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1617", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "1325", "date": "2024-02-19", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1658", "date": "2024-02-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2593", "employeeId": "952", "date": "2024-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1150", "date": "2024-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2595", "employeeId": "1657", "date": "2024-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2596", "employeeId": "1659", "date": "2024-02-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2597", "employeeId": "1660", "date": "2024-02-19", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2598", "employeeId": "1661", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2599", "employeeId": "820", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1016", "date": "2024-02-09", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1663", "date": "2024-01-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "265", "date": "2024-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1662", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "1405", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "1405", "date": "2024-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "954", "date": "2024-02-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2607", "employeeId": "1666", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1667", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "1668", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1665", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1127", "date": "2024-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2612", "employeeId": "1669", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1670", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "1671", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1664", "date": "2024-02-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1086", "date": "2024-02-18", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "999", "date": "2024-01-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "1513", "date": "2024-01-26", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "1540", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "1529", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "1672", "date": "2024-03-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "1673", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "1674", "date": "2024-03-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "1675", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "1677", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "1373", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2627", "employeeId": "813", "date": "2024-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2628", "employeeId": "1223", "date": "2024-02-12", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1678", "date": "2024-02-13", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1676", "date": "2024-05-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1350", "date": "2024-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "1048", "date": "2024-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1680", "date": "2024-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2635", "employeeId": "1244", "date": "2024-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "1682", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "1362", "date": "2024-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "1683", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "1684", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2640", "employeeId": "153", "date": "2024-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "1686", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "1681", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2643", "employeeId": "1687", "date": "2024-06-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "1685", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "1689", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "1690", "date": "2024-02-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "1691", "date": "2024-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2649", "employeeId": "1692", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2650", "employeeId": "1664", "date": "2024-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "671", "date": "2024-05-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "1489", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "1693", "date": "2024-02-26", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1675", "date": "2024-03-11", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1694", "date": "2024-05-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1044", "date": "2024-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "1695", "date": "2024-02-27", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "1696", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "1554", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1456", "date": "2024-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1697", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1698", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1699", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "1700", "date": "2024-03-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1701", "date": "2024-04-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1507", "date": "2024-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1702", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "1474", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "1703", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1704", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1705", "date": "2024-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "1706", "date": "2024-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "1707", "date": "2024-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1708", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "1709", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1710", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1711", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "126", "date": "2024-03-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1712", "date": "2024-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "1713", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "1714", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1715", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "1716", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "1717", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1718", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "1719", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1720", "date": "2024-06-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1721", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1722", "date": "2024-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1723", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1568", "date": "2024-03-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "419", "startDate": "2019-10-29", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For ChartHop, converting hourly rate to salary.\nBiweekly, non-exempt employee paid $43.27/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "118", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "154", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "181", "startDate": "2017-10-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "7", "employeeId": "140", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "99000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "8", "employeeId": "174", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "214200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "9", "employeeId": "226", "startDate": "2019-03-04", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "244", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "246", "startDate": "2019-06-24", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "12", "employeeId": "162", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "164", "startDate": "2017-05-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "1", "startDate": "2019-09-09", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "15", "employeeId": "206", "startDate": "2018-07-16", "rate": {"currency": "USD", "value": "245000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "165", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "123150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "142", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "219", "startDate": "2019-01-11", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "190", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "139", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "92000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "157", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "22", "employeeId": "193", "startDate": "2019-02-11", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "119", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "156", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "146", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "164430.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "26", "employeeId": "249", "startDate": "2019-07-29", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "234", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "147", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "152762.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "189", "startDate": "2018-02-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "31", "employeeId": "213", "startDate": "2018-10-29", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "194", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "173250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "227", "startDate": "2019-03-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "153", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "36", "employeeId": "135", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "170100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "150", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "179", "startDate": "2017-10-23", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "180", "startDate": "2017-10-23", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "215", "startDate": "2018-11-27", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "257", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "254", "startDate": "2019-08-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "43", "employeeId": "191", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "117500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "170", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "205", "startDate": "2018-07-16", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "166", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "198", "startDate": "2018-05-07", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "243", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "148", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "171", "startDate": "2017-07-19", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "129", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "241", "startDate": "2019-10-04", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "54", "employeeId": "235", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "203", "startDate": "2018-07-02", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "133", "startDate": "2014-12-08", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "152", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "232", "startDate": "2019-04-16", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "192", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "114000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "60", "employeeId": "251", "startDate": "2019-08-12", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "242", "startDate": "2019-06-03", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "199", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "131", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "109000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "145", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "160", "startDate": "2017-02-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "255", "startDate": "2019-09-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "68", "employeeId": "209", "startDate": "2018-08-29", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "69", "employeeId": "195", "startDate": "2018-04-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "225", "startDate": "2019-02-04", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "71", "employeeId": "196", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "72", "employeeId": "155", "startDate": "2016-12-19", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "258", "startDate": "2019-10-14", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "183", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "107000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "114", "startDate": "2019-09-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "144", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "136500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "158", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "175", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "211", "startDate": "2018-09-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "125", "startDate": "2013-10-14", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "188", "startDate": "2018-01-22", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "83", "employeeId": "120", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "256", "startDate": "2019-09-30", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "85", "employeeId": "200", "startDate": "2018-05-21", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "173", "startDate": "2017-08-24", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "237", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "236", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "217", "startDate": "2019-01-07", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "185", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "253", "startDate": "2019-08-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "93", "employeeId": "182", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "145600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "247", "startDate": "2019-07-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "204", "startDate": "2018-07-09", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "132", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "138", "startDate": "2019-02-16", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "99", "employeeId": "240", "startDate": "2019-10-03", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "100", "employeeId": "208", "startDate": "2018-07-30", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "214", "startDate": "2018-11-12", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "223", "startDate": "2019-01-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "210", "startDate": "2018-09-10", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "104", "employeeId": "239", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "48000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "167", "startDate": "2017-06-05", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "233", "startDate": "2019-04-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "159", "startDate": "2017-01-25", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "220", "startDate": "2019-01-14", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "168", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "176", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "168000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "178", "startDate": "2017-10-02", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "124", "startDate": "2019-09-23", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "248", "startDate": "2019-07-22", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "224", "startDate": "2019-01-28", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "218", "startDate": "2019-01-07", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "172", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "202", "startDate": "2018-06-25", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "119", "employeeId": "149", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "107500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "122", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "121", "employeeId": "228", "startDate": "2019-03-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "169", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "230", "startDate": "2019-04-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "128", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "197", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "186", "startDate": "2018-01-02", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "141", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "163200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "161", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "160160.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "222", "startDate": "2019-01-16", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "131", "employeeId": "136", "startDate": "2018-05-01", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "245", "startDate": "2019-09-30", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "177", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "184", "startDate": "2017-12-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "212", "startDate": "2018-10-15", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "250", "startDate": "2019-08-01", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Hired as intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "137", "employeeId": "207", "startDate": "2018-07-23", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "238", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "201", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "115", "startDate": "2019-03-25", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "231", "startDate": "2019-04-08", "rate": {"currency": "USD", "value": "45.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "127", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "252", "startDate": "2019-08-19", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "221", "startDate": "2019-01-14", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "134", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "143", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "148800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "229", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "350", "startDate": "2018-05-14", "rate": {"currency": "SEK", "value": "76666.67"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "364", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "357", "startDate": "2018-09-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "316", "startDate": "2019-04-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "117", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "522000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "392", "startDate": "2019-05-13", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "374", "startDate": "2019-01-15", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "266", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "359", "startDate": "2018-09-10", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "268", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "295", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "137480.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "403", "startDate": "2019-09-02", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "384", "startDate": "2019-04-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "343", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "395", "startDate": "2019-06-10", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "412", "startDate": "2019-10-14", "rate": {"currency": "SEK", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "397", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "304", "startDate": "2019-08-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "288", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Incorporate expenses in the fixed fee.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "393", "startDate": "2019-05-13", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "271", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "371", "startDate": "2019-01-14", "rate": {"currency": "EUR", "value": "3000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Works 15%.", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "323", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "348", "startDate": "2018-04-02", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "276", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "406", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "329", "startDate": "2017-07-15", "rate": {"currency": "GBP", "value": "70000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "391", "startDate": "2019-05-07", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "404", "startDate": "2019-09-02", "rate": {"currency": "SEK", "value": "52000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "407", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "296", "startDate": "2019-03-01", "rate": {"currency": "GBP", "value": "57500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "293", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "341", "startDate": "2017-09-18", "rate": {"currency": "GBP", "value": "107000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "381", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "385", "startDate": "2019-04-01", "rate": {"currency": "GBP", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "263", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "1968000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving to Sweden", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "278", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "265", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "415", "startDate": "2019-11-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac62.50 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "396", "startDate": "2019-06-15", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "189", "employeeId": "260", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "347", "startDate": "2019-02-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "277", "startDate": "2017-11-06", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "387", "startDate": "2019-04-08", "rate": {"currency": "GBP", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "284", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "58000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "325", "startDate": "2017-05-22", "rate": {"currency": "GBP", "value": "87.5"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "418", "startDate": "2020-01-07", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "292", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Variable removed.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "320", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "145600.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac70 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "342", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "1140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "306", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "280", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "408", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "335", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "411", "startDate": "2019-10-07", "rate": {"currency": "EUR", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "262", "startDate": "2019-04-01", "rate": {"currency": "EUR", "value": "137000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "370", "startDate": "2019-01-07", "rate": {"currency": "GBP", "value": "45000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "301", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "305", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "372", "startDate": "2019-01-14", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "344", "startDate": "2018-08-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "116", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "214", "employeeId": "300", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "820000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "365", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "324", "startDate": "2019-06-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "355", "startDate": "2019-08-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "414", "startDate": "2019-10-21", "rate": {"currency": "GBP", "value": "155000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "334", "startDate": "2018-10-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "327", "startDate": "2019-08-01", "rate": {"currency": "EUR", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "313", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "321", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "353", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "289", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "389", "startDate": "2019-04-17", "rate": {"currency": "GBP", "value": "55000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "377", "startDate": "2019-02-04", "rate": {"currency": "EUR", "value": "500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "386", "startDate": "2019-04-03", "rate": {"currency": "SEK", "value": "996000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "285", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "259", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "294", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "279", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "349", "startDate": "2018-05-07", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "368", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "361", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "409", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "360", "startDate": "2018-09-24", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "339", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "281", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "309", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "340", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "53550.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "270", "startDate": "2019-04-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "394", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "275", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "390", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "297", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "410", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "314", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "328", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "318", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "1161600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "332", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "362", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "299", "startDate": "2018-12-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "312", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "60950.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "401", "startDate": "2019-07-03", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "307", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "326", "startDate": "2019-09-01", "rate": {"currency": "EUR", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "379", "startDate": "2019-02-18", "rate": {"currency": "GBP", "value": "68000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "317", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "111000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "399", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "363", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "274", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "376", "startDate": "2019-02-01", "rate": {"currency": "EUR", "value": "108000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "402", "startDate": "2019-09-01", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "388", "startDate": "2019-04-15", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "291", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "405", "startDate": "2019-09-09", "rate": {"currency": "GBP", "value": "70000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "322", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "378", "startDate": "2019-02-11", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "303", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "48500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "276", "employeeId": "375", "startDate": "2019-01-16", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "367", "startDate": "2018-11-27", "rate": {"currency": "EUR", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "286", "startDate": "2019-02-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "336", "startDate": "2017-08-21", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "373", "startDate": "2019-01-14", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "354", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "315", "startDate": "2019-05-01", "rate": {"currency": "GBP", "value": "156000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a375 GBP / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "282", "startDate": "2019-03-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "337", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "369", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "105000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "400", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "310", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "416", "startDate": "2019-11-18", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "283", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "308", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "319", "startDate": "2019-02-01", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "413", "startDate": "2019-10-14", "rate": {"currency": "GBP", "value": "78000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "290", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Receives EUR 9,600 annual car allowance.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "346", "startDate": "2019-04-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "267", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "287", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "273", "startDate": "2019-01-01", "rate": {"currency": "DKK", "value": "1476600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "272", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "345", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "351", "startDate": "2019-06-01", "rate": {"currency": "EUR", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "261", "startDate": "2018-04-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "356", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "298", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "269", "startDate": "2019-01-01", "rate": {"currency": "DKK", "value": "690000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "358", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "302", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "308", "employeeId": "338", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "309", "employeeId": "421", "startDate": "2019-11-04", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "310", "employeeId": "175", "startDate": "2019-11-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "533", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Intern", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "561", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "539", "startDate": "2017-04-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "316", "employeeId": "527", "startDate": "2015-07-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "506", "startDate": "2011-02-01", "rate": {"currency": "USD", "value": ""}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "549", "startDate": "2017-09-13", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "523", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "72500"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "553", "startDate": "2017-11-22", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "535", "startDate": "2017-06-01", "rate": {"currency": "SEK", "value": "516000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "544", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "531", "startDate": "2017-11-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "510", "startDate": "2011-10-26", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "516", "startDate": "2017-02-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "536", "startDate": "2017-01-23", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "554", "startDate": "2018-01-08", "rate": {"currency": "GBP", "value": "100000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "560", "startDate": "2018-06-11", "rate": {"currency": "SEK", "value": "150"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "515", "startDate": "2013-06-03", "rate": {"currency": "SEK", "value": "145"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "330", "employeeId": "515", "startDate": "2014-01-02", "rate": {"currency": "SEK", "value": "130"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "545", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "333", "employeeId": "565", "startDate": "2018-08-13", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "335", "employeeId": "541", "startDate": "2017-04-03", "rate": {"currency": "GBP", "value": "51000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "568", "startDate": "2019-07-15", "rate": {"currency": "SEK", "value": "110"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "528", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "576000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "338", "employeeId": "547", "startDate": "2017-10-01", "rate": {"currency": "GBP", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "534", "startDate": "2016-06-06", "rate": {"currency": "SEK", "value": "130"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "555", "startDate": "2018-01-22", "rate": {"currency": "SEK", "value": "660000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "520", "startDate": "2014-10-13", "rate": {"currency": "GBP", "value": "106300"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "530", "startDate": "2016-02-01", "rate": {"currency": "SEK", "value": "1027500"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "562", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "557", "startDate": "2018-03-26", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "550", "startDate": "2017-10-01", "rate": {"currency": "SEK", "value": "765000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "512", "startDate": "2012-09-24", "rate": {"currency": "SEK", "value": "300000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "524", "startDate": "2015-04-01", "rate": {"currency": "EUR", "value": "76000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "566", "startDate": "2019-03-25", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "564", "startDate": "2018-07-16", "rate": {"currency": "EUR", "value": "15"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "504", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "620000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "537", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "502", "startDate": "2013-08-01", "rate": {"currency": "SEK", "value": "540000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "503", "startDate": "2009-11-01", "rate": {"currency": "SEK", "value": "540000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "559", "startDate": "2018-06-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "509", "startDate": "2011-09-20", "rate": {"currency": "SEK", "value": "792000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "558", "startDate": "2018-03-26", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "556", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "552", "startDate": "2017-10-09", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "507", "startDate": "2011-05-09", "rate": {"currency": "GBP", "value": "91000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "514", "startDate": "2013-01-28", "rate": {"currency": "EUR", "value": "51000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "538", "startDate": "2017-03-15", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "511", "startDate": "2012-04-01", "rate": {"currency": "GBP", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "363", "employeeId": "511", "startDate": "2013-01-01", "rate": {"currency": "NZD", "value": "130000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "546", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "546", "startDate": "2018-06-26", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "546", "startDate": "2019-06-04", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "368", "employeeId": "551", "startDate": "2017-10-03", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "369", "employeeId": "548", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "101000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "370", "employeeId": "522", "startDate": "2015-02-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "371", "employeeId": "522", "startDate": "2015-10-15", "rate": {"currency": "SEK", "value": "384000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "501", "startDate": "2017-01-01", "rate": {"currency": "SEK", "value": "1080000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "505", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "519", "startDate": "2014-05-05", "rate": {"currency": "EUR", "value": "115000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "376", "employeeId": "525", "startDate": "2015-04-01", "rate": {"currency": "GBP", "value": "41520"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "563", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "55000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "567", "startDate": "2019-04-23", "rate": {"currency": "SEK", "value": "7000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "513", "startDate": "2012-11-05", "rate": {"currency": "GBP", "value": "30000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "521", "startDate": "2015-01-05", "rate": {"currency": "SEK", "value": "396000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "542", "startDate": "2017-04-17", "rate": {"currency": "GBP", "value": "550"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "540", "startDate": "2017-04-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "517", "startDate": "2014-02-01", "rate": {"currency": "SEK", "value": "420000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "532", "startDate": "2016-04-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "526", "startDate": "2015-04-01", "rate": {"currency": "SEK", "value": "155"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "569", "startDate": "2019-12-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "570", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "571", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "572", "startDate": "2019-11-01", "rate": {"currency": "EUR", "value": "58500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Annual base salary 54 309,53 EUR/year (including 8% holiday allowance of 4344,76) + 1 extra 13th pay of 4190,55 EUR paid in December", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "364", "startDate": "2018-10-15", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "316", "startDate": "2017-04-01", "rate": {"currency": "SEK", "value": "324000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "316", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "316", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "117", "startDate": "2015-09-10", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "117", "startDate": "2017-01-09", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "117", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "117", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "338", "startDate": "2017-09-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "338", "startDate": "2018-05-01", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "178", "startDate": "2018-05-01", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "142", "startDate": "2015-08-11", "rate": {"currency": "USD", "value": "117500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "142", "startDate": "2016-09-01", "rate": {"currency": "USD", "value": "162652.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Contracting status in Australia", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "241", "startDate": "2019-05-30", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "193", "startDate": "2018-02-26", "rate": {"currency": "USD", "value": "57.70"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "573", "startDate": "2019-10-21", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "407", "employeeId": "574", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "575", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "576", "startDate": "2019-11-18", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "577", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "411", "employeeId": "299", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "412", "employeeId": "389", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "413", "employeeId": "578", "startDate": "2019-12-02", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "414", "employeeId": "579", "startDate": "2019-12-10", "rate": {"currency": "SEK", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "415", "employeeId": "580", "startDate": "2019-11-18", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "203", "startDate": "2019-12-15", "rate": {"currency": "USD", "value": "218000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "417", "employeeId": "206", "startDate": "2019-12-15", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "386", "startDate": "2019-12-01", "rate": {"currency": "SEK", "value": "1044000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "419", "employeeId": "167", "startDate": "2019-06-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "123", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "421", "employeeId": "127", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "422", "employeeId": "130", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "423", "employeeId": "170", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "424", "employeeId": "180", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "425", "employeeId": "184", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "426", "employeeId": "185", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "162000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "427", "employeeId": "189", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "428", "employeeId": "198", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "216", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "380", "startDate": "2019-03-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "431", "employeeId": "382", "startDate": "2019-05-01", "rate": {"currency": "ILS", "value": "726818.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "To be paid in monthly instalments of 60 568,20 NIS.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "581", "startDate": "2019-10-29", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "582", "startDate": "2019-10-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "295", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "137500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "435", "employeeId": "264", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "342", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "266", "startDate": "2012-07-09", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "438", "employeeId": "266", "startDate": "2015-04-01", "rate": {"currency": "EUR", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "439", "employeeId": "266", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "103950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "266", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Only variable change. Also adding 10k stocks.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "266", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Only variable change.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "268", "startDate": "2012-10-01", "rate": {"currency": "SEK", "value": "336000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "268", "startDate": "2013-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "268", "startDate": "2015-04-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "268", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "268", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "268", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "295", "startDate": "2015-07-01", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "449", "employeeId": "295", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "102750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "450", "employeeId": "295", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "122750.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "451", "employeeId": "384", "startDate": "2017-09-13", "rate": {"currency": "SEK", "value": "1872000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "kr900 SEK / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "452", "employeeId": "343", "startDate": "2017-10-16", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "453", "employeeId": "304", "startDate": "2016-02-29", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "454", "employeeId": "304", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "455", "employeeId": "288", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "456", "employeeId": "288", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "457", "employeeId": "288", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base/variable salary change. Adding 5000 stocks.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "288", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "460", "employeeId": "339", "startDate": "2019-12-01", "rate": {"currency": "EUR", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "271", "startDate": "2013-09-02", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "271", "startDate": "2015-03-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "271", "startDate": "2015-04-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "271", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "271", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "271", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "323", "startDate": "2017-05-08", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "323", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "323", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "470", "employeeId": "276", "startDate": "2014-05-19", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "471", "employeeId": "296", "startDate": "2015-07-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "296", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "54590.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "293", "startDate": "2015-06-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "474", "employeeId": "293", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "293", "startDate": "2016-11-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "293", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "293", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "293", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "479", "employeeId": "278", "startDate": "2014-07-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "278", "startDate": "2016-10-01", "rate": {"currency": "EUR", "value": "62400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "278", "startDate": "2017-12-01", "rate": {"currency": "EUR", "value": "68640.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "265", "startDate": "2012-07-03", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "483", "employeeId": "265", "startDate": "2016-04-01", "rate": {"currency": "EUR", "value": "62400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "484", "employeeId": "265", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "71900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "485", "employeeId": "265", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "81900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "486", "employeeId": "260", "startDate": "2010-02-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "487", "employeeId": "260", "startDate": "2014-01-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "488", "employeeId": "260", "startDate": "2015-03-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "489", "employeeId": "260", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "490", "employeeId": "260", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "260", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "347", "startDate": "2018-02-12", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "277", "startDate": "2016-01-01", "rate": {"currency": "GBP", "value": "93600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "284", "startDate": "2014-09-01", "rate": {"currency": "SEK", "value": "37000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "284", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "496", "employeeId": "284", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "44000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "284", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "49000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "284", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "54000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "499", "employeeId": "292", "startDate": "2015-05-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "500", "employeeId": "292", "startDate": "2017-03-01", "rate": {"currency": "GBP", "value": "58200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "501", "employeeId": "292", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "78200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "292", "startDate": "2018-10-01", "rate": {"currency": "GBP", "value": "78200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base salary change. Adding 5000 stocks + one time bonus payment.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "320", "startDate": "2017-05-01", "rate": {"currency": "EUR", "value": "135200.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac65 EUR / hour. Working 40 hours/week.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "583", "startDate": "2019-11-11", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "507", "employeeId": "584", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "342", "startDate": "2017-10-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "342", "startDate": "2018-10-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "342", "startDate": "2012-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "342", "startDate": "2012-12-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "342", "startDate": "2015-02-01", "rate": {"currency": "SEK", "value": "696800.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "Fixed hourly fee of SEK 335 (all taxes included).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "572", "startDate": "2018-04-23", "rate": {"currency": "SEK", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "572", "startDate": "2018-09-03", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "330", "startDate": "2017-07-17", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "330", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "330", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "521", "employeeId": "280", "startDate": "2014-08-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "280", "startDate": "2015-08-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "280", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "280", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "280", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "280", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "335", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "529", "employeeId": "335", "startDate": "2017-08-14", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "383", "startDate": "2019-03-04", "rate": {"currency": "GBP", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "328", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "345", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "43000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "265", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "94300.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "290", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "536", "employeeId": "322", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "96800.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "537", "employeeId": "343", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1296000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "359", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "539", "employeeId": "309", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "274", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "157500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No variable change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "278", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "76500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "296", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "60500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "543", "employeeId": "367", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "305", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "266", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "113950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "287", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "92500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "289", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "315", "startDate": "2017-03-01", "rate": {"currency": "GBP", "value": "135200.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a365 GBP / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "356", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1180000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "312", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "65216.50"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "340", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "57834.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "587", "startDate": "2020-01-09", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "553", "employeeId": "588", "startDate": "2020-01-13", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "589", "startDate": "2019-11-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "590", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "591", "startDate": "2020-01-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "592", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "593", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "265000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "594", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "595", "startDate": "2020-01-07", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "563", "employeeId": "262", "startDate": "2011-01-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "262", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "126000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "262", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Contract", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "566", "employeeId": "398", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "567", "employeeId": "301", "startDate": "2015-11-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "568", "employeeId": "301", "startDate": "2017-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "569", "employeeId": "301", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "305", "startDate": "2016-03-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "344", "startDate": "2017-10-16", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "573", "employeeId": "599", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "600", "startDate": "2019-12-16", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For chartHop, converting hourly rate to salary.\nNon-exempt, bi weekly employee paid $31.25/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "601", "startDate": "2019-12-30", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "245", "startDate": "2019-06-17", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "245", "startDate": "2020-01-15", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "137", "startDate": "2019-10-16", "rate": {"currency": "USD", "value": "84.13"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Transfer", "comment": "Full time to part time status", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "128", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "179", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "142", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "200", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "181500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "583", "employeeId": "146", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "174295.80"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "161", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "166566.40"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "585", "employeeId": "171", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "186", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "158100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "212", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "194250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "219", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "122400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "229", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "119600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "166", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "591", "employeeId": "204", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "592", "employeeId": "172", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "593", "employeeId": "201", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only\n03/04/2020 - email received; entered another adjustment to Tim's salary (from $100k to $140k), retro back to 01/01/2020.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "159", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "229500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "194", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176715.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "135", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176904.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "141", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "169728.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "598", "employeeId": "147", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "155817.24"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - salary and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "164", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "145600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "600", "employeeId": "174", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "218484.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "601", "employeeId": "227", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "207", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "165850.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "202", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "192400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "210", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "173400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "605", "employeeId": "217", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "168300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "221", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "209100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "607", "employeeId": "125", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "608", "employeeId": "144", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "156500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base salary only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "151", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base salary only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "610", "employeeId": "602", "startDate": "2020-01-20", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "611", "employeeId": "603", "startDate": "2019-12-12", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "300", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "365", "startDate": "2018-10-15", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "365", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "604", "startDate": "2020-01-06", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "605", "startDate": "2020-01-06", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "264", "startDate": "2016-09-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "264", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "619", "employeeId": "264", "startDate": "2018-12-01", "rate": {"currency": "GBP", "value": "126500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "620", "employeeId": "264", "startDate": "2014-01-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "621", "employeeId": "264", "startDate": "2015-09-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "264", "startDate": "2011-08-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "623", "employeeId": "606", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "607", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "608", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "609", "startDate": "2020-03-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "610", "startDate": "2020-03-16", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "611", "startDate": "2020-04-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "613", "startDate": "2020-03-02", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "241", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "154", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "614", "startDate": "2020-01-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "324", "startDate": "2017-05-15", "rate": {"currency": "EUR", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "324", "startDate": "2018-06-01", "rate": {"currency": "EUR", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Goes from 4 days/week to a full time employee.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "313", "startDate": "2017-01-23", "rate": {"currency": "SEK", "value": "348000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "313", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "366000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "313", "startDate": "2016-03-21", "rate": {"currency": "SEK", "value": "300000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "116", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "116", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "116", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "116", "startDate": "2014-11-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "116", "startDate": "2013-04-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "116", "startDate": "2011-10-01", "rate": {"currency": "SEK", "value": "324000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "116", "startDate": "2011-03-01", "rate": {"currency": "SEK", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "116", "startDate": "2010-10-15", "rate": {"currency": "SEK", "value": "276000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "332", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "355", "startDate": "2017-03-06", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "\u00a3350 GBP / day. On workdays, excluding Company holidays and weekends.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "355", "startDate": "2018-06-06", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u00a3400 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "355", "startDate": "2018-08-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "334", "startDate": "2017-08-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "334", "startDate": "2019-11-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "327", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "327", "startDate": "2018-08-01", "rate": {"currency": "EUR", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "321", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "321", "startDate": "2017-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "321", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "289", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "145660.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "289", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "289", "startDate": "2015-11-01", "rate": {"currency": "EUR", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Does NOT include EUR 9600 annual car allowance.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "289", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "125660.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "382", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "333", "startDate": "2017-08-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "333", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "285", "startDate": "2014-09-15", "rate": {"currency": "SEK", "value": "30000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "285", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "285", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "285", "startDate": "2017-06-01", "rate": {"currency": "SEK", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "285", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "615", "startDate": "2020-01-27", "rate": {"currency": "USD", "value": "108500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "125", "startDate": "2015-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "125", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "182", "startDate": "2017-11-06", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "197", "startDate": "2018-04-30", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "616", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "131000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "680", "employeeId": "617", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "681", "employeeId": "618", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "619", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "259", "startDate": "2009-11-01", "rate": {"currency": "SEK", "value": "348000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "259", "startDate": "2010-06-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "685", "employeeId": "259", "startDate": "2011-10-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "259", "startDate": "2014-10-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "259", "startDate": "2015-08-01", "rate": {"currency": "SEK", "value": "534000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "259", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "259", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "294", "startDate": "2015-06-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "294", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "692", "employeeId": "294", "startDate": "2017-07-07", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "294", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "361", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "361", "startDate": "2018-10-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "331", "startDate": "2017-07-17", "rate": {"currency": "GBP", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "331", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "331", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "339", "startDate": "2017-09-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "281", "startDate": "2014-08-04", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "281", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "281", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "281", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "311", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "705", "employeeId": "311", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "311", "startDate": "2016-12-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "311", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "708", "employeeId": "311", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "309", "startDate": "2016-10-03", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "710", "employeeId": "270", "startDate": "2015-06-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "270", "startDate": "2016-09-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3 mos. notice period.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "270", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "270", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "87150.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "270", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "270", "startDate": "2013-05-13", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "275", "startDate": "2014-03-11", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "620", "startDate": "2020-02-10", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "621", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "129500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "499", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Intern to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "622", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "297", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "297", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "297", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "314", "startDate": "2017-02-27", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "314", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "328", "startDate": "2017-07-10", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "328", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "69000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "318", "startDate": "2017-04-18", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "729", "employeeId": "318", "startDate": "2018-06-01", "rate": {"currency": "SEK", "value": "1056000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "730", "employeeId": "332", "startDate": "2017-07-17", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "731", "employeeId": "332", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "732", "employeeId": "362", "startDate": "2018-10-01", "rate": {"currency": "EUR", "value": "84000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "299", "startDate": "2015-09-14", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "299", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "299", "startDate": "2017-11-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "312", "startDate": "2016-12-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "737", "employeeId": "312", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "366", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "366", "startDate": "2018-11-19", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "307", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "307", "startDate": "2017-03-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "307", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "499", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "352", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "204000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "745", "employeeId": "302", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "286", "startDate": "2020-02-01", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "326", "startDate": "2017-06-01", "rate": {"currency": "EUR", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "623", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "624", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "109200.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$52.50/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "625", "startDate": "2020-01-02", "rate": {"currency": "INR", "value": "2700000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "626", "startDate": "2020-01-06", "rate": {"currency": "USD", "value": "163000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "752", "employeeId": "627", "startDate": "2017-12-01", "rate": {"currency": "AUD", "value": "221850.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$850.00 AUD = Daily Rate", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "628", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$20k/month; invoiced monthly, for work @ 75% of full time.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "754", "employeeId": "629", "startDate": "2017-01-10", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "629", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140400.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "629", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "144612.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Promotion", "comment": "$12, 051.00/month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "630", "startDate": "2020-02-10", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For ChartHop -- updated to salary rate. \nbilling AP, paid hourly at $75/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "631", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "176800.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$85/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "165", "startDate": "2017-05-05", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "164", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "317", "startDate": "2017-04-01", "rate": {"currency": "EUR", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "317", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "763", "employeeId": "363", "startDate": "2018-10-01", "rate": {"currency": "EUR", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "764", "employeeId": "274", "startDate": "2014-01-20", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "274", "startDate": "2015-05-01", "rate": {"currency": "EUR", "value": "124800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "766", "employeeId": "274", "startDate": "2017-05-01", "rate": {"currency": "EUR", "value": "128544.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3%", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "767", "employeeId": "274", "startDate": "2017-12-01", "rate": {"currency": "EUR", "value": "141398.40"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "769", "employeeId": "368", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "770", "employeeId": "373", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "771", "employeeId": "374", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "306", "startDate": "2016-04-20", "rate": {"currency": "GBP", "value": "145000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "773", "employeeId": "306", "startDate": "2019-11-09", "rate": {"currency": "GBP", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Working part time. Salary is for 2 days/week.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "774", "employeeId": "340", "startDate": "2017-09-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "775", "employeeId": "340", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "52500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "5% increase.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "776", "employeeId": "291", "startDate": "2015-03-23", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "777", "employeeId": "291", "startDate": "2016-05-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "778", "employeeId": "291", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "779", "employeeId": "291", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "780", "employeeId": "322", "startDate": "2017-05-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "781", "employeeId": "303", "startDate": "2016-01-18", "rate": {"currency": "SEK", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "782", "employeeId": "286", "startDate": "2014-10-15", "rate": {"currency": "GBP", "value": "59000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "286", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "784", "employeeId": "286", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "785", "employeeId": "145", "startDate": "2015-10-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "124", "startDate": "2013-04-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "124", "startDate": "2014-07-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "633", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "129500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "124", "startDate": "2015-10-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "124", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "124", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "124", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "354", "startDate": "2018-07-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "282", "startDate": "2014-08-06", "rate": {"currency": "GBP", "value": "67500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "282", "startDate": "2015-10-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "282", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "282", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "337", "startDate": "2017-08-21", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "337", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "369", "startDate": "2018-04-16", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3250 GBP / day\nWorking up to 2 full working days per week. \nIf additional days in any week are requested by Company, the rate for such additional days is GBP 400.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "802", "employeeId": "634", "startDate": "2020-04-01", "rate": {"currency": "EUR", "value": "147000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "635", "startDate": "2020-04-14", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "310", "startDate": "2016-11-07", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "310", "startDate": "2017-12-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "636", "startDate": "2020-03-02", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "637", "startDate": "2020-03-02", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "283", "startDate": "2014-08-06", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "283", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "283", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "813", "employeeId": "283", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "814", "employeeId": "283", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "327", "startDate": "2016-10-01", "rate": {"currency": "EUR", "value": "8400.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "377", "startDate": "2018-08-20", "rate": {"currency": "SEK", "value": "7000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "817", "employeeId": "308", "startDate": "2016-06-01", "rate": {"currency": "SEK", "value": "39000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "818", "employeeId": "308", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "308", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "319", "startDate": "2017-04-27", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "290", "startDate": "2015-01-07", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "346", "startDate": "2018-02-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "267", "startDate": "2016-01-01", "rate": {"currency": "EUR", "value": "129250.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "824", "employeeId": "267", "startDate": "2012-08-01", "rate": {"currency": "EUR", "value": "117500.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "287", "startDate": "2014-11-03", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "287", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Moved to MBO plan and no long on a comp plan. This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "273", "startDate": "2013-10-01", "rate": {"currency": "DKK", "value": "882000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "273", "startDate": "2014-12-01", "rate": {"currency": "DKK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "273", "startDate": "2017-01-01", "rate": {"currency": "DKK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "273", "startDate": "2018-01-01", "rate": {"currency": "DKK", "value": "1284000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "272", "startDate": "2013-09-02", "rate": {"currency": "DKK", "value": "31000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "272", "startDate": "2014-10-01", "rate": {"currency": "DKK", "value": "34000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "272", "startDate": "2015-10-01", "rate": {"currency": "DKK", "value": "38000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "272", "startDate": "2016-06-01", "rate": {"currency": "SEK", "value": "47500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "272", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "272", "startDate": "2017-12-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "345", "startDate": "2017-11-09", "rate": {"currency": "SEK", "value": "37000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "838", "employeeId": "351", "startDate": "2018-06-01", "rate": {"currency": "EUR", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "261", "startDate": "2010-10-25", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "261", "startDate": "2012-02-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "261", "startDate": "2013-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "261", "startDate": "2015-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "843", "employeeId": "261", "startDate": "2016-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "844", "employeeId": "261", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3 mos. notice period.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "356", "startDate": "2018-08-13", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "298", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "298", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "298", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "298", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "269", "startDate": "2015-10-30", "rate": {"currency": "DKK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "269", "startDate": "2016-12-01", "rate": {"currency": "DKK", "value": "534000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "269", "startDate": "2017-01-01", "rate": {"currency": "DKK", "value": "570000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "853", "employeeId": "269", "startDate": "2018-01-01", "rate": {"currency": "DKK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "358", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "343200.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "kr165 SEK / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "358", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "358", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "302", "startDate": "2016-01-11", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "302", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "302", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "352", "startDate": "2018-06-07", "rate": {"currency": "GBP", "value": "204000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "861", "employeeId": "638", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "639", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "147", "startDate": "2015-11-02", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "147", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "131250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "865", "employeeId": "147", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "141250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "147", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "148312.50"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "191", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "151", "startDate": "2017-01-03", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "151", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "870", "employeeId": "151", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "83000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "151", "startDate": "2016-06-13", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "170", "startDate": "2017-07-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "342", "startDate": "2016-02-01", "rate": {"currency": "SEK", "value": "728000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Fixed hourly fee of SEK 350 (all taxes included).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "269", "startDate": "2012-06-01", "rate": {"currency": "DKK", "value": "427200.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "875", "employeeId": "269", "startDate": "2014-09-30", "rate": {"currency": "DKK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "876", "employeeId": "363", "startDate": "2018-01-15", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "317", "startDate": "2013-01-07", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "311", "startDate": "2015-06-05", "rate": {"currency": "SEK", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "kr150 SEK / hour. Minimum 8 hours/week. Exact amount of hours shall be agreed between the Company and the Employee on a weekly basis.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "141", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "141", "startDate": "2015-06-29", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "353", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "353", "startDate": "2012-04-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "353", "startDate": "2012-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "131", "startDate": "2015-10-01", "rate": {"currency": "USD", "value": "92000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "885", "employeeId": "131", "startDate": "2014-12-01", "rate": {"currency": "USD", "value": "88000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from SWE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "131", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "91998.40"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Full-Time to Part-Time", "comment": "$44.23 USD / hour. Full-time to Part-time", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "131", "startDate": "2017-09-22", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "131", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "131", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "104000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "143", "startDate": "2015-09-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "123", "startDate": "2012-10-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "143", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "126000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "123", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "157500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "143", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "138600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "123", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "143", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "123", "startDate": "2017-01-16", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "174", "startDate": "2017-08-28", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "139", "startDate": "2015-06-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "139", "startDate": "2016-05-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "901", "employeeId": "139", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "150", "startDate": "2016-05-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "150", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "194", "startDate": "2018-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "122", "startDate": "2012-05-30", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "122", "startDate": "2014-07-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "907", "employeeId": "120", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "127", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "127", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "127", "startDate": "2014-02-25", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "185", "startDate": "2017-12-18", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "912", "employeeId": "136", "startDate": "2016-12-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "136", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "914", "employeeId": "121", "startDate": "2015-06-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "121", "startDate": "2012-05-08", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "916", "employeeId": "192", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "132", "startDate": "2014-12-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "918", "employeeId": "132", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "132", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "307", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "153", "startDate": "2016-11-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "922", "employeeId": "176", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "923", "employeeId": "156", "startDate": "2017-01-03", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "157", "startDate": "2017-01-11", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "157", "startDate": "2017-11-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "138", "startDate": "2015-05-04", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "138", "startDate": "2017-02-16", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "928", "employeeId": "138", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "154", "startDate": "2016-12-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Transferred from SWE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "240", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "part time", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "137", "startDate": "2015-04-13", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "137", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "82500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "137", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "92500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "934", "employeeId": "137", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "98000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "137", "startDate": "2018-12-13", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "130", "startDate": "2014-08-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "937", "employeeId": "137", "startDate": "2018-12-13", "rate": {"currency": "USD", "value": "98000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Full-Time to Part-Time", "comment": "full time to part time status", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "130", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "130", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "159500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "137", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "130", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "179500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "146", "startDate": "2015-10-05", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "146", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "146", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "152250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "216", "startDate": "2018-12-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "947", "employeeId": "119", "startDate": "2015-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "119", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "128", "startDate": "2014-03-10", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "183", "startDate": "2017-11-27", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "129", "startDate": "2014-06-02", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "129", "startDate": "2014-10-25", "rate": {"currency": "USD", "value": "45000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Temp to Regular status", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "129", "startDate": "2015-05-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "129", "startDate": "2015-12-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "129", "startDate": "2017-05-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "134", "startDate": "2014-12-15", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "152", "startDate": "2016-10-05", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "152", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "134", "startDate": "2017-03-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "134", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "131250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "163", "startDate": "2017-04-10", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "962", "employeeId": "163", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "126500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "163", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "132825.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "640", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "131", "startDate": "2011-06-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "131", "startDate": "2014-01-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "131", "startDate": "2014-09-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "970", "employeeId": "154", "startDate": "2015-09-14", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "138", "startDate": "2020-02-16", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "310", "startDate": "2020-03-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "329", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "126", "startDate": "2013-11-04", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "126", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "126", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "126", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "161", "startDate": "2017-02-06", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "161", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "143000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "158", "startDate": "2017-01-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "135", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "135", "startDate": "2016-08-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "135", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "135", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "157500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "149", "startDate": "2016-03-28", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "987", "employeeId": "149", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "149", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "162", "startDate": "2017-03-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "199", "startDate": "2018-05-16", "rate": {"currency": "USD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "144", "startDate": "2015-09-28", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "144", "startDate": "2016-10-01", "rate": {"currency": "USD", "value": "102000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "144", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "107000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "144", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "113000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "995", "employeeId": "144", "startDate": "2018-04-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "187", "startDate": "2018-01-08", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "629", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150396.48"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "498", "startDate": "2019-06-03", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "378", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "642", "startDate": "2020-04-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "643", "startDate": "2020-03-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "644", "startDate": "2020-04-20", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "347", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "136", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "194000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "383", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "226", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "245", "startDate": "2020-03-28", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Market Adj", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "533", "startDate": "2020-05-04", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "645", "startDate": "2020-06-22", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1010", "employeeId": "646", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1011", "employeeId": "647", "startDate": "2020-03-23", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "648", "startDate": "2020-03-23", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "649", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1014", "employeeId": "650", "startDate": "2020-05-15", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "651", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "652", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "282", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "176", "startDate": "2020-03-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Retention (base, job title, & variable)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1019", "employeeId": "653", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "175", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "654", "startDate": "2019-03-04", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Flat rate $10,000/month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "293", "startDate": "2020-04-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "655", "startDate": "2020-04-06", "rate": {"currency": "SGD", "value": "257610.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "656", "startDate": "2020-04-06", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "245", "startDate": "2020-04-03", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "658", "startDate": "2020-05-15", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "659", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "662", "startDate": "2020-05-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "663", "startDate": "2020-05-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "665", "startDate": "2020-04-20", "rate": {"currency": "AUD", "value": "850.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$850.00 AUD = Daily Rate", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "664", "startDate": "2020-05-11", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "182", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "158100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1036", "employeeId": "667", "startDate": "2020-04-27", "rate": {"currency": "USD", "value": "125880.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": "paid 889178.4 RMB ($125,880 per year)\n$10,490.00 USD per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "245", "startDate": "2020-06-23", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "668", "startDate": "2020-05-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "452", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "223000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "460", "startDate": "2019-06-02", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "670", "startDate": "2020-06-08", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "240", "startDate": "2020-06-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "3/4 time to Full-Time", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "671", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "316", "startDate": "2020-07-15", "rate": {"currency": "EUR", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "669", "startDate": "2020-06-03", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "672", "startDate": "2020-06-08", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "677", "startDate": "2021-08-23", "rate": {"currency": "GBP", "value": "24000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "\u00a32,000 GBP / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "546", "startDate": "2020-06-22", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "674", "startDate": "2020-09-14", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1052", "employeeId": "679", "startDate": "2020-06-29", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "678", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "676", "startDate": "2020-07-06", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "681", "startDate": "2020-06-01", "rate": {"currency": "EUR", "value": "909.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Working max. 5,5 days/month.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "120", "startDate": "2020-05-01", "rate": {"currency": "SEK", "value": "2271272.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transferring from Neo4j Inc to Neo4j Sweden AB", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "122", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "103.37"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Full-Time to Part-Time", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1060", "employeeId": "684", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "685", "startDate": "2020-08-03", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "372", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "682", "startDate": "2020-07-06", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1064", "employeeId": "364", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "398", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "385", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "346", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "106000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "689", "startDate": "2020-07-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "690", "startDate": "2020-06-10", "rate": {"currency": "USD", "value": ""}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": null, "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "691", "startDate": "2020-07-13", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "688", "startDate": "2020-07-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "687", "startDate": "2020-09-14", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "686", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 74 000 EUR/year (12 monthly instalments).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "693", "startDate": "2020-09-15", "rate": {"currency": "EUR", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Fixed annual gross salary of Euro 67.000,00 payable in 14 equal monthly installments.", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "694", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "25.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Up to a maximum of EUR 2,000 per month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "695", "startDate": "2020-08-03", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "268", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "67920.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "404", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "396", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "408000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "335", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "301", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "324", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "327", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "294", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "281", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "297", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "332", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "326", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "59000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "317", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "291", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "337", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "351", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "409", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "271", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "331", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "355", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "395", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "330", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1100", "employeeId": "400", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "392", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "280", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "888000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "171", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": "Health Benefits Waiver Agreement - increase base by $15k (refer to email)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "307", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/14/2021.\n80% salary = 480 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1105", "employeeId": "403", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1106", "employeeId": "354", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "103000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "388", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "647", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1109", "employeeId": "149", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "112000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "209", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "146000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1111", "employeeId": "220", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "222", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "72500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "193", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "132000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "115", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "132000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "240", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "228000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1116", "employeeId": "253", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "114", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "1", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "187000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "124", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "208000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "419", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "93038.40"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": "For ChartHop, converting hourly rate to salary.\nBiweekly, non-exempt employee paid $44.73/hour", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "590", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "584", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1123", "employeeId": "178", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "42.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "236", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1125", "employeeId": "138", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "127500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "143", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "153800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "183", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "111600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1128", "employeeId": "192", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "119700.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "205", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "139000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1130", "employeeId": "697", "startDate": "2020-09-14", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "191", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "311", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1133", "employeeId": "333", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "329", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1135", "employeeId": "262", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "144500.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "270", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "344", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1138", "employeeId": "696", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "699", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "116", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "1101600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "117", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "313", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "318", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "1254000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "319", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "414000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "375", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1146", "employeeId": "384", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "582000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "702", "startDate": "2020-08-14", "rate": {"currency": "EUR", "value": "0.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "\u20ac0.00 EUR / day. Combined fixed price & rate/hour - See under \u201cNotes\u201d for details\u201d.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "698", "startDate": "2020-09-02", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "703", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "704", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "163", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "162", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "700", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "705", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "70.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "706", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "108160.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "$52.00 USD/Hour\nChanging from hourly to annual salary for ChartHop", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1156", "employeeId": "621", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "157", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "707", "startDate": "2020-11-09", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "708", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Neo4j shall also pay the Contractor a fixed fee of USD 500 per month for the Subscription Support. Working max 50h/month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "261", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "176000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "701", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1162", "employeeId": "709", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1163", "employeeId": "710", "startDate": "2020-11-02", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "187", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "250", "startDate": "2020-01-27", "rate": {"currency": "USD", "value": "97000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "314", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "358", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "712", "startDate": "2020-10-06", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "713", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "178", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "44.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "711", "startDate": "2020-09-14", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "277", "startDate": "2014-05-19", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "718", "startDate": "2020-09-28", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "717", "startDate": "2020-09-28", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "720", "startDate": "2020-09-07", "rate": {"currency": "USD", "value": "9500.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "719", "startDate": "2020-09-21", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "716", "startDate": "2020-09-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "714", "startDate": "2020-09-28", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "721", "startDate": "2020-09-28", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "724", "startDate": "2020-09-09", "rate": {"currency": "USD", "value": "75.00"}, "type": "Contract", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1181", "employeeId": "725", "startDate": "2019-12-16", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "298", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "730", "startDate": "2020-05-01", "rate": {"currency": "USD", "value": "5000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1184", "employeeId": "727", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "722", "startDate": "2020-10-06", "rate": {"currency": "USD", "value": "115.00"}, "type": "Contract", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "651", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "723", "startDate": "2020-10-19", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "732", "startDate": "2020-09-28", "rate": {"currency": "USD", "value": "75.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "726", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Fixed salary is payable in 14 equal monthly instalments.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "729", "startDate": "2020-11-02", "rate": {"currency": "EUR", "value": "52800.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "\u20ac4,400 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "715", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "731", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "361", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "365", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "421", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "416", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "363", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "411", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "728", "startDate": "2020-11-02", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "735", "startDate": "2021-01-04", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "736", "startDate": "2020-10-12", "rate": {"currency": "GBP", "value": "20800.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "\u00a3400 GBP / week", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "397", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "737", "startDate": "2020-10-12", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "362", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1205", "employeeId": "531", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "531", "startDate": "2016-02-22", "rate": {"currency": "GBP", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "686", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "734", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "260", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "321", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "741", "startDate": "2020-11-02", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "748", "startDate": "2020-12-14", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "742", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "81000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "\u20ac6,750 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1215", "employeeId": "740", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "753", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "747", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "752", "startDate": "2020-12-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "751", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "739", "startDate": "2021-01-04", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "746", "startDate": "2021-01-18", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "749", "startDate": "2020-11-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "745", "startDate": "2020-11-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Per Infotree contract - Monthly Bill Rate of US $ 14712", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "744", "startDate": "2020-11-16", "rate": {"currency": "CNY", "value": "66666.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": "SOW shows $14,998/monthly", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1226", "employeeId": "268", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "61112.76"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer to Finland", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "743", "startDate": "2020-11-16", "rate": {"currency": "SGD", "value": "176000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "738", "startDate": "2020-11-30", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "754", "startDate": "2020-11-09", "rate": {"currency": "INR", "value": "3066000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "756", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "90.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "755", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "757", "startDate": "2020-11-17", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "576", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "339", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "578", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "283", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "852000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "366", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "758", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "322", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "105600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "759", "startDate": "2020-11-23", "rate": {"currency": "SGD", "value": "210000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Monthly Bill Rate of US $ 17267", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1241", "employeeId": "760", "startDate": "2021-02-15", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "334", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "389", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "569", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "386", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "1140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "577", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "299", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1248", "employeeId": "410", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1249", "employeeId": "766", "startDate": "2020-12-14", "rate": {"currency": "GBP", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "583", "startDate": "2020-12-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "767", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1252", "employeeId": "768", "startDate": "2021-02-01", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "765", "startDate": "2020-12-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "605", "startDate": "2021-05-03", "rate": {"currency": "EUR", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfered from UK entity to German entity", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "264", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "626", "startDate": "2021-01-01", "rate": {"currency": "AUD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "updating salary and variable from USD to AUD per new change order.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "725", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "776", "startDate": "2021-03-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "778", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "769", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "773", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1262", "employeeId": "770", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "772", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "771", "startDate": "2021-01-04", "rate": {"currency": "CNY", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "777", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "295", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "154000.00"}, "type": "Salary", "exempt": null, "reason": "Retention", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "381", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1270", "employeeId": "262", "startDate": "2020-12-29", "rate": {"currency": "EUR", "value": "162000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Goes from Contractor to FTE effective 1/1/2021.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "342", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1560000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "780", "startDate": "2020-12-17", "rate": {"currency": "USD", "value": "245000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "762", "startDate": "2020-12-21", "rate": {"currency": "USD", "value": "195000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "570", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "328", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "373", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "368", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "372", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "681", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "1000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Working max. 5,5 days/month.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "131", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "114000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "116", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1185600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "318", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1350000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "782", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "783", "startDate": "2021-01-19", "rate": {"currency": "USD", "value": "55.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Per SOW: Bill rate: $66.08/hr\nEnd date extended to 10/31/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "775", "startDate": "2021-01-04", "rate": {"currency": "SGD", "value": "348845.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "764", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "763", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "419", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "115", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "136000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "1", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "584", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "787", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "786", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "788", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "785", "startDate": "2021-05-03", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "774", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "117", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1302", "employeeId": "313", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "450000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "319", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1304", "employeeId": "384", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "602400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "369", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "110250.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "375", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "610", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021. \n80% salary = 499 200 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "644", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "274", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "160500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "278", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "296", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "63500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "336", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "370", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "663", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1315", "employeeId": "262", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "329", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "89250.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "333", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "102900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "292", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "409", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "141750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1320", "employeeId": "414", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "162750.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "352", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "212000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "333", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "300", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "312", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "68477.33"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "340", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "58834.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "356", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1207000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "357", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "348", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "348", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "359", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "996000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "380", "startDate": "2021-01-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, added variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "401", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1333", "employeeId": "402", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "406", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "413", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "80900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1336", "employeeId": "573", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "572", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "63500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Annual base salary 58 951,41EUR/year (Including 8% Holiday allowance of 4366,77) + 1 extra 13th pay of 4548,63 EUR paid in December", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "603", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "587", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "374", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "792", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "790", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "791", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "794", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "793", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "795", "startDate": "2021-01-11", "rate": {"currency": "SGD", "value": "312000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "149", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "116500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "209", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "151000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "220", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "256500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "222", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "240", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "253", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "114", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "243500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "124", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1355", "employeeId": "191", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1356", "employeeId": "193", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "136000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "590", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "178", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "46.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "761", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "391", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "796", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "263", "startDate": "2011-05-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving to US", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "263", "startDate": "2015-09-01", "rate": {"currency": "USD", "value": "276000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "175", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "315000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "206", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "226", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "138", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "131000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "143", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "159000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1372", "employeeId": "182", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "192", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "123500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "205", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "144000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "236", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "134000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "197", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "103000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "582", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "620", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "143000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1379", "employeeId": "251", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "66000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "155", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "69000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "165", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "125150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1382", "employeeId": "614", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "163", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "153000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "158", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "79000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "173", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "69000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "199", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "73300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1387", "employeeId": "256", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "242", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "129", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "109000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "367", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "91500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "798", "startDate": "2019-10-07", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "217", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "172300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "202", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "198100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "405", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "212", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "213400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "169", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "243", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "173000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "241", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "164", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "147", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "233", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "174000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1402", "employeeId": "221", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "211600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "499", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "207", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "174143.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "234", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "126", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "144", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "166500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "228", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "623", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "172", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "142", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1412", "employeeId": "156", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "232", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "615", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "113500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "177", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "801", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "160.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "802", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "799", "startDate": "2021-04-15", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "804", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "19.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": "Bill Rate to Agency: $20.52", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "797", "startDate": "2021-01-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1421", "employeeId": "803", "startDate": "2021-03-22", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "237", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "600", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "70012.80"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Promotion", "comment": "For chartHop, converting hourly rate to salary. \nNon-exempt, bi weekly employee paid $33.66/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "800", "startDate": "2021-04-19", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "286", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "302", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "210", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "176400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "247", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "235", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "109500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "229", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "124600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "146", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "179496.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "194", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "252", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "138000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1434", "employeeId": "629", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "154908.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "257", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1436", "employeeId": "186", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "164005.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "141", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175214.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "219", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "128400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "805", "startDate": "2021-03-15", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "807", "startDate": "2021-02-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "225", "startDate": "2021-01-25", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1442", "employeeId": "627", "startDate": "2021-01-01", "rate": {"currency": "AUD", "value": "231000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "New Base: 231,000/261 days to equate to $885.06 daily rate.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "625", "startDate": "2021-01-01", "rate": {"currency": "INR", "value": "2850000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "667", "startDate": "2021-01-01", "rate": {"currency": "CNY", "value": "844200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Updating to local currency per contract agreement for ChartHop\n$130,880.00 USD / year\nMonthly Bill Rate of US$ 14,427.24 to Infotree", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "575", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "418", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "602", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "347", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "809", "startDate": "2021-02-01", "rate": {"currency": "INR", "value": "3066000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1450", "employeeId": "806", "startDate": "2021-02-01", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1451", "employeeId": "293", "startDate": "2021-02-22", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "810", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "801", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "798", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "720", "startDate": "2021-02-01", "rate": {"currency": "EUR", "value": "20700.00"}, "type": "Contract", "exempt": null, "reason": "Transfer", "comment": "Lola transfers from Neo4j Inc contract to Neo4j Sweden contract", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "812", "startDate": "2021-06-07", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "808", "startDate": "2021-02-08", "rate": {"currency": "SGD", "value": "67500.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "208", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "395000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "167", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "121", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "121", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "273", "startDate": "2021-01-01", "rate": {"currency": "DKK", "value": "1624260.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "263", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1968000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No Base Salary change, only added Variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "813", "startDate": "2021-02-23", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "199", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "814", "startDate": "2021-04-08", "rate": {"currency": "SEK", "value": "930000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "815", "startDate": "2021-04-05", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "816", "startDate": "2021-03-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "817", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1472", "employeeId": "818", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "819", "startDate": "2021-03-22", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "820", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "821", "startDate": "2021-02-22", "rate": {"currency": "INR", "value": "576000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "Hourly Bill rate of $59.5/hr", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1476", "employeeId": "310", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "604", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "822", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "613", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "823", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "165", "startDate": "2021-03-01", "rate": {"currency": "USD", "value": "128150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "824", "startDate": "2021-03-08", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "826", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "825", "startDate": "2021-03-08", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "131", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from US to SWE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "827", "startDate": "2021-03-08", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$15,000 paid per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "829", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "828", "startDate": "2021-06-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "830", "startDate": "2021-06-28", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "832", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "85.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Contractor via KForce\nend date is 9/15/21", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "352", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "245000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Relocating from UK to Italy", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "835", "startDate": "2021-04-19", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "831", "startDate": "2021-05-24", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "834", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "833", "startDate": "2021-04-12", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "836", "startDate": "2021-06-21", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "263", "startDate": "2009-10-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "837", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "838", "startDate": "2021-03-22", "rate": {"currency": "USD", "value": "110.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "839", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "843", "startDate": "2021-04-12", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "844", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "150.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "845", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "842", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "847", "startDate": "2021-04-26", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1507", "employeeId": "574", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "848", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "611", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "648", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "849", "startDate": "2021-04-05", "rate": {"currency": "CNY", "value": "900000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Amount of CNY 75,000 will be paid for every completed month of service", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "850", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "123500.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "\u00a3475 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1514", "employeeId": "850", "startDate": "2019-06-05", "rate": {"currency": "GBP", "value": "133900.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3515 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "851", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "850", "startDate": "2017-06-05", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3400 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "850", "startDate": "2017-12-05", "rate": {"currency": "GBP", "value": "117000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3450 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1518", "employeeId": "850", "startDate": "2019-01-05", "rate": {"currency": "GBP", "value": "126100.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3485 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "854", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "10 hours of work / week (Total sum of EUR 700)", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "853", "startDate": "2021-04-19", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "855", "startDate": "2021-04-12", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "852", "startDate": "2021-06-01", "rate": {"currency": "GBP", "value": "61000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "669", "startDate": "2021-06-09", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Intern to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1524", "employeeId": "857", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "78923.07 Brazilian Real/month\nR$1,026,000.00 BRL / Year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1525", "employeeId": "846", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "55.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "end date is 10/26/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "856", "startDate": "2021-05-04", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "346", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "112000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "385", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1529", "employeeId": "859", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "860", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "228000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "858", "startDate": "2021-06-07", "rate": {"currency": "GBP", "value": "145000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "861", "startDate": "2021-06-09", "rate": {"currency": "USD", "value": "325000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "862", "startDate": "2021-06-14", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "863", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "370", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "636", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "864", "startDate": "2020-06-26", "rate": {"currency": "EUR", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Cap of EUR 2,000 per calendar month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "865", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "664", "startDate": "2021-04-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Eff. 4/1 Promotion to Director, CRM", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "866", "startDate": "2021-05-17", "rate": {"currency": "GBP", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "705", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1543", "employeeId": "867", "startDate": "2021-07-01", "rate": {"currency": "INR", "value": "4500000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "119", "startDate": "2021-04-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "869", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "533", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1548", "employeeId": "635", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "388", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "662", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "383", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "330", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "668", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "870", "startDate": "2021-06-28", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "871", "startDate": "2021-05-17", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "872", "startDate": "2021-08-30", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "873", "startDate": "2021-05-10", "rate": {"currency": "EUR", "value": "3.90"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "874", "startDate": "2021-05-17", "rate": {"currency": "INR", "value": "4400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "336", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "875", "startDate": "2021-08-16", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "756", "startDate": "2021-05-17", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1563", "employeeId": "878", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "879", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1565", "employeeId": "877", "startDate": "2021-07-26", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "880", "startDate": "2021-06-30", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "882", "startDate": "2021-08-02", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "881", "startDate": "2021-08-23", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "883", "startDate": "2021-07-26", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "884", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1571", "employeeId": "736", "startDate": "2021-06-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "885", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "886", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1574", "employeeId": "887", "startDate": "2021-05-24", "rate": {"currency": "EUR", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Cap of 50 hours/ calendar month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "888", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "889", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1579", "employeeId": "890", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "892", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "891", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "893", "startDate": "2021-08-30", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "894", "startDate": "2021-08-09", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "895", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "1620000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "895", "startDate": "2014-02-24", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "896", "startDate": "2021-06-07", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "897", "startDate": "2021-07-05", "rate": {"currency": "SGD", "value": "70000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "SOW: Monthly Bill Rate of US $ 5980.46", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "396", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "899", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "898", "startDate": "2021-07-05", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "324", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "351", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "421", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1599", "employeeId": "900", "startDate": "2021-07-06", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "901", "startDate": "2021-06-16", "rate": {"currency": "INR", "value": "3771000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$50,000 USD / Annual", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "722", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "197000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "902", "startDate": "2021-08-16", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "903", "startDate": "2021-08-02", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "904", "startDate": "2021-07-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1608", "employeeId": "854", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": "15 hours of work / week (during 14 weeks, total sum of EUR 14,700)", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "905", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "907", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1613", "employeeId": "908", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "697", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1615", "employeeId": "343", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1600000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "651", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "911", "startDate": "2021-08-02", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "646", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1620", "employeeId": "395", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "398", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "708000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "311", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1623", "employeeId": "354", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "679", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "307", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 504 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "772", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Intern to FTE Conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "645", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "799", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "915", "startDate": "2021-09-01", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "912", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "914", "startDate": "2021-09-13", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1635", "employeeId": "916", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "910", "startDate": "2021-10-25", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "913", "startDate": "2021-08-02", "rate": {"currency": "EUR", "value": "38000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "909", "startDate": "2021-10-04", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "918", "startDate": "2021-07-26", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "280", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "919", "startDate": "2021-08-11", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "920", "startDate": "2021-07-19", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "170", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase to base Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "181", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "257", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "251", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "94000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "359", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "718", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "300", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "990000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "245", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "682", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "633", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "133385.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "616", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "134930.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "144", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "181500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "322", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "115500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "637", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "190", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "607", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1000000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "287", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "108500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "150", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "153", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "922", "startDate": "2021-07-15", "rate": {"currency": "EUR", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "20 hours of work / month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1666", "employeeId": "309", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "289", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "924", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "331", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "400", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "355", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "392", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "659", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "316", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "358", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1676", "employeeId": "304", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "93750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021. 80% salary = 75 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "923", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "925", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "921", "startDate": "2021-09-20", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "927", "startDate": "2021-09-07", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "926", "startDate": "2021-09-02", "rate": {"currency": "GBP", "value": "165000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "928", "startDate": "2021-07-26", "rate": {"currency": "CNY", "value": "647000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "582", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "929", "startDate": "2021-09-27", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "320", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac75 EUR / hour (75 EUR x 2080 hours)", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "290", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "376", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "665", "startDate": "2021-07-21", "rate": {"currency": "AUD", "value": "766.28"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Base Salary: 200,000 / 261 days = 766.28", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "930", "startDate": "2021-08-09", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "162", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "629", "startDate": "2021-07-30", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "353", "startDate": "2010-09-01", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "154", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "227800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "159", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "239500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "250", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "101000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "241", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "99000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "199", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "127", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1701", "employeeId": "292", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "332", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "931", "startDate": "2021-08-30", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "932", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "600", "startDate": "2021-07-26", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "806", "startDate": "2021-07-28", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "end date extended to 10/31/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "808", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "67500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "759", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "210000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "775", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "348845.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "827", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "897", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "934", "startDate": "2021-08-17", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "935", "startDate": "2021-08-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "305", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "97500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "936", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "236", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "278", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer Department", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "117", "startDate": "2021-03-17", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Equity award only w/Promotion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "281", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1723", "employeeId": "297", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "301", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "708000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "335", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "337", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "327", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "317", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "117000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "937", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "351", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "933", "startDate": "2022-02-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "938", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1737", "employeeId": "939", "startDate": "2021-08-30", "rate": {"currency": "AUD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Monthly Rate: $12,500 AUD", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "940", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "R$530,000.00 BRL per year\nMonthly: 40.769,23 BRL", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "364", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from SWE to US", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "941", "startDate": "2021-08-30", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "942", "startDate": "2021-09-13", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "943", "startDate": "2021-08-30", "rate": {"currency": "GBP", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "944", "startDate": "2021-09-15", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "945", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "36.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "New Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "946", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "New Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "742", "startDate": "2021-08-21", "rate": {"currency": "EUR", "value": "75.00"}, "type": "Hourly", "exempt": null, "reason": "Full-Time to Part-Time", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "294", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "947", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "948", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "147000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "698", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "315", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "\u00a375 GBP / hour. Transfer to UK Ltd from Sweden AB. Maximum fee 15 000 GBP per month. Works average 4 days /week", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "951", "startDate": "2021-08-30", "rate": {"currency": "CNY", "value": "745108.01"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Monthly payment of CNY 62,092.334", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "952", "startDate": "2021-09-13", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "953", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "954", "startDate": "2021-10-04", "rate": {"currency": "INR", "value": "8172715.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "299", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "684", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "955", "startDate": "2021-09-27", "rate": {"currency": "INR", "value": "2964401.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "958", "startDate": "2021-10-11", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "957", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "283", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "314", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "647", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "678", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "403", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "674", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "962", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "961", "startDate": "2021-11-22", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "960", "startDate": "2022-01-03", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "546", "startDate": "2021-09-06", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "963", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "735", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "687", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "291", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1782", "employeeId": "268", "startDate": "2021-09-01", "rate": {"currency": "EUR", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "964", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "965", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "125.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "966", "startDate": "2021-09-08", "rate": {"currency": "USD", "value": "38.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "326", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "967", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "70000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "968", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "969", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "970", "startDate": "2021-09-08", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1795", "employeeId": "804", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "22.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": "Bill rate to Infotree: $23.76", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "226", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "270000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Comp Adj. Effective 9/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "823", "startDate": "2021-09-09", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "Hired back as consultant", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "383", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "972", "startDate": "2021-12-13", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "639", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "686", "startDate": "2021-10-28", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "974", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "973", "startDate": "2021-11-08", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "975", "startDate": "2021-10-04", "rate": {"currency": "SGD", "value": "261000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "976", "startDate": "2021-09-28", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "977", "startDate": "2021-10-20", "rate": {"currency": "AUD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "978", "startDate": "2021-09-21", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "S$16,666.67 per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "979", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "980", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "152375.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Excluding 8% Holiday allowance of 12,190 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "981", "startDate": "2021-10-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "982", "startDate": "2021-11-22", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "366", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "983", "startDate": "2021-12-01", "rate": {"currency": "INR", "value": "2964401.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "984", "startDate": "2021-10-17", "rate": {"currency": "INR", "value": "6006580.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "985", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "763", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1829", "employeeId": "795", "startDate": "2021-09-17", "rate": {"currency": "SGD", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Converted to Singapore FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "362", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "987", "startDate": "2021-11-30", "rate": {"currency": "INR", "value": "2719954.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "989", "startDate": "2021-11-01", "rate": {"currency": "SGD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "990", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "991", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "164000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "205", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "86399.04"}, "type": "Salary", "exempt": "Exempt", "reason": "Full-Time to Part-Time", "comment": "Employment Status change from FT exempt to PT exempt, working 24 hours per week", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "876", "startDate": "2021-06-01", "rate": {"currency": "CAD", "value": "184496.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Updating to annual salary for ChartHop\nPer contract agreement - $88.70 CAD / hour\nOffer Approval - $150,000 USD/year", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "971", "startDate": "2021-09-13", "rate": {"currency": "CAD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "Updating to annual salary for ChartHop\nPer contract agreement - $16,667.00 CAD / Month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "630", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160160.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": "Updating to annual salary for ChartHop\n$77.00 USD / hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "744", "startDate": "2021-04-05", "rate": {"currency": "CAD", "value": "139692.80"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "Updating to annual salary for ChartHop\nPer contract - $67.16 CAD / Hour", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "627", "startDate": "2021-07-01", "rate": {"currency": "AUD", "value": "250000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Updating to annual salary for ChartHop\nBase salary: 250,000 / 261 = $957.85 AUD / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "992", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "109500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "986", "startDate": "2021-11-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "993", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "994", "startDate": "2021-11-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "995", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "996", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "988", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "60.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "671", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "1176000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "713", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "712", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "347", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "721", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "679", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "751", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "298", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "997", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "998", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "999", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "334", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "361", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "363", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "411", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "1000", "startDate": "2022-01-05", "rate": {"currency": "INR", "value": "3712190.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "1001", "startDate": "2021-10-11", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "1002", "startDate": "2021-10-18", "rate": {"currency": "AUD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "1003", "startDate": "2021-10-18", "rate": {"currency": "IDR", "value": "1250000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1883", "employeeId": "1004", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "198", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "415", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac75 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "365", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1005", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "55.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1006", "startDate": "2022-01-24", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1007", "startDate": "2021-10-18", "rate": {"currency": "IDR", "value": "1026582000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1008", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1896", "employeeId": "1009", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "285000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "729", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac5,000 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1898", "employeeId": "728", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "1010", "startDate": "2021-11-08", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "703", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "367", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "1011", "startDate": "2021-10-25", "rate": {"currency": "AUD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "1012", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "1013", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "739", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Retention", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "421", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1015", "startDate": "2021-11-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "1016", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1014", "startDate": "2021-11-29", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "1017", "startDate": "2022-01-03", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "1018", "startDate": "2021-11-01", "rate": {"currency": "CNY", "value": "850000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1019", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "48.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "197", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Base/Variable Adjustment (OTE remaining the same)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "389", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "710", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "707", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "260", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1924", "employeeId": "321", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "866", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "590", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "182", "startDate": "2021-10-15", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "1020", "startDate": "2022-04-04", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "1021", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "1022", "startDate": "2022-01-10", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "1023", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "42.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "1024", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "192000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "1025", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "1026", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "INR 89,952 / month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "1028", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, USD 14,220.18", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "1027", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "1029", "startDate": "2022-01-03", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $20,629.09/monthly\n\nR$780,472.00 / year\nExchange rate R$ - 5,5748", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "1030", "startDate": "2021-11-15", "rate": {"currency": "AUD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "1031", "startDate": "2022-01-04", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1940", "employeeId": "1032", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "1033", "startDate": "2021-11-22", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1034", "startDate": "2022-01-17", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "1035", "startDate": "2022-04-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "1036", "startDate": "2021-12-09", "rate": {"currency": "AUD", "value": "88000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "1037", "startDate": "2021-12-13", "rate": {"currency": "AUD", "value": "255500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "1038", "startDate": "2022-02-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "410", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "569", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "748", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "752", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "1039", "startDate": "2022-01-15", "rate": {"currency": "EUR", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1040", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "255000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1041", "startDate": "2022-02-07", "rate": {"currency": "AUD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1042", "startDate": "2021-12-15", "rate": {"currency": "EUR", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "1043", "startDate": "2021-12-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "1044", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "325000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "694", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "45.00"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": "Up to a maximum of EUR 5,000 per month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "1045", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "1046", "startDate": "2021-12-09", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "1047", "startDate": "2021-12-13", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "416", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "578", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "576", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "747", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "339", "startDate": "2021-12-01", "rate": {"currency": "EUR", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "734", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "1048", "startDate": "2022-01-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "1049", "startDate": "2021-12-13", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "1050", "startDate": "2021-12-28", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "783", "startDate": "2021-12-06", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "1051", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "1052", "startDate": "2022-01-10", "rate": {"currency": "BRL", "value": "278030.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$50,000.00 USD / year\n1 USD = 5.5606 BRL currency conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "264", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "419", "startDate": "2021-12-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "386", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "1212000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "328", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "821", "startDate": "2021-11-23", "rate": {"currency": "INR", "value": "7285000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "PT to FT contractor conversion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "1053", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1054", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "374", "startDate": "2021-12-29", "rate": {"currency": "AUD", "value": "145000.08"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from UK to AUS.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "1055", "startDate": "2022-01-10", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "1056", "startDate": "2022-02-07", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "1057", "startDate": "2022-01-05", "rate": {"currency": "USD", "value": "340000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1984", "employeeId": "213", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1985", "employeeId": "342", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "1680000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "1058", "startDate": "2022-02-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "587", "startDate": "2021-12-16", "rate": {"currency": "CAD", "value": "140004.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from UK to Canada", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "763", "startDate": "2022-01-24", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Previously an intern. Hired as FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "786", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "1059", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "1060", "startDate": "2022-01-17", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "1061", "startDate": "2022-01-17", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "329", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "1062", "startDate": "2022-01-24", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "1063", "startDate": "2022-02-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "1064", "startDate": "2022-03-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 129,231 EUR/year + 1 extra 13th pay of 10,769 EUR paid in December = 140,000 EUR/year. This amount is excluding 8% Holiday allowance of 10,338,48 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "1065", "startDate": "2022-01-03", "rate": {"currency": "GBP", "value": "252000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "1066", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1067", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "1068", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "1069", "startDate": "2022-02-07", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "846", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2003", "employeeId": "806", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "1072", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2008", "employeeId": "1073", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "829", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "704", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "1076", "startDate": "2022-01-04", "rate": {"currency": "INR", "value": "2649292.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "1077", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2013", "employeeId": "965", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2014", "employeeId": "1074", "startDate": "2022-01-10", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2015", "employeeId": "1078", "startDate": "2022-02-07", "rate": {"currency": "AUD", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2016", "employeeId": "1080", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2017", "employeeId": "1081", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1083", "startDate": "2022-06-01", "rate": {"currency": "SGD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "1075", "startDate": "2022-02-15", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 83,077 EUR/year + 1 extra 13th pay of 6,923 EUR paid in December = 90,000 EUR/year. This amount is excluding 8% Holiday allowance of 6,646,16 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1084", "startDate": "2022-01-24", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "1085", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "1079", "startDate": "2022-03-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "1086", "startDate": "2022-01-17", "rate": {"currency": "USD", "value": "400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2026", "employeeId": "1088", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "1089", "startDate": "2022-02-28", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "1090", "startDate": "2022-01-24", "rate": {"currency": "BRL", "value": "277310.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "1092", "startDate": "2022-02-14", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "1091", "startDate": "2022-04-19", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1093", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "1097", "startDate": "2022-04-04", "rate": {"currency": "SGD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "1098", "startDate": "2022-01-17", "rate": {"currency": "USD", "value": "3000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Monthly payment: $3000 USD", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "1099", "startDate": "2022-01-31", "rate": {"currency": "USD", "value": "144000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "854", "startDate": "2022-02-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": "15 hours of work / week\nTotal sum of \u20ac1050 EUR for 15 hours of actual work per week", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "1101", "startDate": "2022-02-07", "rate": {"currency": "CNY", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "CNY 75,000 / Month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2038", "employeeId": "1100", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "1102", "startDate": "2022-02-14", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "1103", "startDate": "2022-05-10", "rate": {"currency": "SEK", "value": "912000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1104", "startDate": "2022-04-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "1105", "startDate": "2022-02-22", "rate": {"currency": "USD", "value": "177000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "1107", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2047", "employeeId": "1109", "startDate": "2022-02-15", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "1110", "startDate": "2022-03-21", "rate": {"currency": "SGD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "1111", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "1114", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1115", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "1116", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2053", "employeeId": "1095", "startDate": "2022-03-28", "rate": {"currency": "GBP", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "1112", "startDate": "2022-05-16", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "1118", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "1119", "startDate": "2022-03-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "1120", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1121", "startDate": "2022-04-01", "rate": {"currency": "JPY", "value": "19200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "1113", "startDate": "2022-03-21", "rate": {"currency": "EUR", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "209", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2061", "employeeId": "773", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2062", "employeeId": "231", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "46.15"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "374", "startDate": "2022-01-01", "rate": {"currency": "AUD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "136", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2065", "employeeId": "124", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "231000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2066", "employeeId": "191", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2067", "employeeId": "863", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "123000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2068", "employeeId": "843", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "100000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "222", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "78000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "253", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "214000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "240", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "254400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "114", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "258110"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "715", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "110000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "859", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2075", "employeeId": "865", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "73000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "173", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "652", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "807", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "66000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "897", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "808", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "69500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "774", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "155", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "791", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "165", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "133150"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "620", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "148000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "711", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "242", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "798", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2089", "employeeId": "756", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "801", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "245", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "135000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "614", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "200", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "201500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "676", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "265000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "163", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "173000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "682", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "199", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "158", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "82000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "705", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "176", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "250000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "651", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "83000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "583", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "179000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "738", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2104", "employeeId": "876", "startDate": "2022-01-01", "rate": {"currency": "CAD", "value": "190030"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "835", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "147000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "206", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "300000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "364", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "290000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "226", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "280000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "978", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "206000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "192", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130292"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "818", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "168000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "143", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "174900"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "951", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "782363"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "138", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "137550"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "761", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "205", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "89854"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "719", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "210000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "737", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "144200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "762", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "204750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2120", "employeeId": "236", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "600", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "87500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "820", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "584", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "192500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "149", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2125", "employeeId": "178", "startDate": "2022-02-01", "rate": {"currency": "USD", "value": "48.50"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "255", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "217", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "177469"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2128", "employeeId": "202", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "208000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "243", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178190"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "233", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180960"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "219", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "132000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "210", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "182574"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "247", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "189000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "235", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "120450."}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "638", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "134000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "229", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143290"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "146", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "186675.84"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "250", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "105000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "194", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "164", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "160500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "147", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "166400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "714", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "252", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "144900"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "741", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "122400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "207", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "184591.58"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "727", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "186", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170565.20"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "187", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "162750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "141", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "185726.84"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "174", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "222853.68"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "816", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "115000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "792", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "153000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2153", "employeeId": "629", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "619", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "231000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "227", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "171600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "716", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "154500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "135", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "183980.16"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "755", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "699", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "234", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "594", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "175000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2162", "employeeId": "599", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "770", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "180", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "232", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "257", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "170", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2168", "employeeId": "622", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "656", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "130", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "499", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "189", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "184", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "210000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "228", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "185", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "672", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "197", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "148000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "725", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "129000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "134", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Moving variable to base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "783", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "125000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "1047", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "1046", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2183", "employeeId": "621", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "160950"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "156", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "114180"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "615", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "121786"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "618", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "212", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "224070"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "145", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "189000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "150", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "160", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "179", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "152", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "153", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "126", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "769", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "695", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "824", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "592", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "132", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "159", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "580", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "265000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "595", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "275000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "119", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "280000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2206", "employeeId": "171", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "300000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "172", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "250000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "826", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "310000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "626", "startDate": "2022-01-01", "rate": {"currency": "AUD", "value": "265000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "177", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "754", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3143025"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "809", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3157980"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "625", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3277500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "771", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "675000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "849", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "952000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "827", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "187000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "795", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "332000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "775", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "358845"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "363", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 85% effective 12/01/2022. 85% salary = 63 750 EUR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "324", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "351", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "327", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2223", "employeeId": "304", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "112500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80 % salary = 90 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "850", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u00a3500 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "837", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "830", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "894", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "648", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "647", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2230", "employeeId": "355", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "127000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "668", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "912", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "927", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2234", "employeeId": "395", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "604", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "334", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "856", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "383", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "916", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "796", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "400", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "833", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "747", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "576", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "734", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "839", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "751", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "758", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "101000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "679", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "578", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "697", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "921", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "712", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "883", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "347", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "286", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "914", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "942", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "332", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "331", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2261", "employeeId": "831", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "943", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "662", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "385", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "328", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "752", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "872", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "389", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "748", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "299", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "264", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "185000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "1032", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "1051", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "994", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "957", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "947", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "961", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "953", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "1012", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "828", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "853", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "925", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "924", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "923", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "842", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "698", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "296", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "68500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "663", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "369", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "113550.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "650", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "141750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "834", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "162000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "658", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "409", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "153000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "760", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "131500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "292", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "353", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "381", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "361", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "570000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "802", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "846000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "403", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "813", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "570", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "803", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "891", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "574", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "421", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "820800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "836", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "398", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "365", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1085400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "684", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "924000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "602", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "678", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "728", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "690000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "707", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "396", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "293", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "297", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1029600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "298", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "848", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "291", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%.\n80% salary = 816 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "785", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "787", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "314", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "635", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "740", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "281", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1117800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "310", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "311", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/22/2022.\n80% salary = 576 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "335", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "873600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/06/2022. \n80% salary = 698 880 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "611", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "735000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "659", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "337", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "269", "startDate": "2022-01-01", "rate": {"currency": "DKK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "294", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "735", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "410", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "646", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "687", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "811200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "674", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "613", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "984000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "358", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "392", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "569", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "875", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "944", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "307", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 600 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "812", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "260", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "575", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "703", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "847", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "368", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "386", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "869", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "366", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2356", "employeeId": "533", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "301", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "302", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2359", "employeeId": "893", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "373", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "372", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "881", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "388", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "321", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "342", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "2100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "890", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "671", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "418", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1284000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "799", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "972", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "979", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1560000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "973", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "723", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "402000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "318", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1446000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "375", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "610", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "661500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021 until 02/01/2022. 80% salary = 529 200 SEK / year\nWorks 90% effective 02/01/2022 until 07/31/2022. 90% salary = 595 350 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "384", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "632400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "644", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "687000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "313", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "465000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "319", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "453600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "117", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "116", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1385600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "268", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "713", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "262", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "178500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "326", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2387", "employeeId": "317", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "710", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "316", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2390", "employeeId": "339", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "346", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "411", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "354", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "127000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "822", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "181000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "605", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "70350.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "768", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "126000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "352", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "257500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "729", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "362", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "280", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "416", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "645", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "909", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "330", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "757", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "620340.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "356", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1291490.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "636", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "685", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "670", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "603", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "312", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88477.33"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "341", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "113000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2413", "employeeId": "402", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "89500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "295", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "158000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "696", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "736", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "357", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "165000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "649", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88700.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "399", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "84500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "845", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "79500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "572", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "413", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2423", "employeeId": "852", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "67100.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2424", "employeeId": "322", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "124163.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "766", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "107793.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "391", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "609", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "359", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1230000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "401", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "382", "startDate": "2022-01-01", "rate": {"currency": "ILS", "value": "799500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "To be paid in monthly instalments of 66,625 NIS per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "406", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "753", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "114450.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "300", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1300000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "606", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "634", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "152500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "290", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "265", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "588", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "309", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "190000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "289", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "210000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2441", "employeeId": "653", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "185000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "267", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "759", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "270000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Eff. 1/1/22", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1124", "startDate": "2022-02-28", "rate": {"currency": "INR", "value": "3760250.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1117", "startDate": "2022-03-01", "rate": {"currency": "USD", "value": "440000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "1126", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1127", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "393", "startDate": "2022-03-01", "rate": {"currency": "AUD", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1128", "startDate": "2022-03-21", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "295", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "166000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1129", "startDate": "2022-04-04", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "1122", "startDate": "2022-03-14", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1131", "startDate": "2022-05-23", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1134", "startDate": "2022-02-22", "rate": {"currency": "INR", "value": "1150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$14/hr is the pay rate to InfoTree\nPer contract - 11,50,000 INR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "1133", "startDate": "2022-05-23", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "1096", "startDate": "2022-05-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "1136", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "1130", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "1138", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "380", "startDate": "2022-01-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1139", "startDate": "2022-03-05", "rate": {"currency": "IDR", "value": "1571427750.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1140", "startDate": "2022-03-21", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "1141", "startDate": "2022-03-28", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "1143", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "1144", "startDate": "2022-04-04", "rate": {"currency": "CAD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Please note that we are paying him in Canadian dollars as he is from Canada and has a Canadian corp\n\n+ Christmas bonus (one month's base salary paid in December annually)", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "1145", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1146", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "1147", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "832", "startDate": "2022-03-16", "rate": {"currency": "USD", "value": "105.00"}, "type": "Hourly", "exempt": null, "reason": "Comp Adjustment", "comment": "Contractor via KForce\nend date is 9/15/22", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1149", "startDate": "2022-06-27", "rate": {"currency": "SGD", "value": "211000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "1150", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "195000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "1060", "startDate": "2022-06-20", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "1154", "startDate": "2022-04-11", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "1155", "startDate": "2022-04-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "1156", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "1151", "startDate": "2022-03-28", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "691", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "1132", "startDate": "2022-05-16", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "1158", "startDate": "2022-04-26", "rate": {"currency": "USD", "value": "310000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "907", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "1142", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1152", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2489", "employeeId": "1148", "startDate": "2022-05-16", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1157", "startDate": "2022-06-20", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "1159", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "95.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "1160", "startDate": "2022-06-01", "rate": {"currency": "SGD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "1161", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "1162", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1163", "startDate": "2022-03-28", "rate": {"currency": "USD", "value": "13.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "FT Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "1164", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "1165", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1166", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "1167", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1168", "startDate": "2022-08-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1169", "startDate": "2022-04-19", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1170", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "PT Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1171", "startDate": "2022-04-04", "rate": {"currency": "MXN", "value": "2379178.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "+ Christmas bonus (one month's base salary paid in December annually)\n\n13 month pay schedule, $8,204.56/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2505", "employeeId": "1172", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1173", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1174", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "250.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "865", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo Eff. 4/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1175", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "144", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1176", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1178", "startDate": "2022-05-09", "rate": {"currency": "AUD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1179", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1180", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1181", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1182", "startDate": "2022-05-01", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1183", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1186", "startDate": "2022-05-02", "rate": {"currency": "BRL", "value": "783705.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $20,714.54/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "908", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "1185", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "778", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2524", "employeeId": "208", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "435000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1061", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "261", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "196000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "273", "startDate": "2022-01-01", "rate": {"currency": "DKK", "value": "1705473.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2528", "employeeId": "1190", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1184", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2530", "employeeId": "1191", "startDate": "2022-06-20", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1193", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1188", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "1195", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "1194", "startDate": "2022-05-30", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1196", "startDate": "2022-05-02", "rate": {"currency": "BRL", "value": "558000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1197", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1198", "startDate": "2022-06-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1199", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "1200", "startDate": "2022-05-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "1201", "startDate": "2022-05-30", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "1204", "startDate": "2022-04-25", "rate": {"currency": "CNY", "value": "700500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1205", "startDate": "2022-05-23", "rate": {"currency": "EUR", "value": "154000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 12,320 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "1203", "startDate": "2022-05-30", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2547", "employeeId": "214", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Initial comp adjustment 152,500 effective 1/1/22. Additional adjustment approved 4/25 to 162,500 retroactive to 1/1/22.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "195", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Initial comp adjustment 165,000 effective 1/1/22. Additional adjustment approved 4/25 to 175,000 retroactive to 1/1/22.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "1207", "startDate": "2022-05-16", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "1208", "startDate": "2022-05-23", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "1209", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "1210", "startDate": "2022-05-09", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "1211", "startDate": "2022-06-01", "rate": {"currency": "AUD", "value": "192000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1212", "startDate": "2022-06-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "120", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "3000000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "1213", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "95004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "EUR 7917 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "1214", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "1215", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "1216", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "117", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "1217", "startDate": "2022-05-23", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "1206", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "263", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "2953700.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "1219", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1220", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1222", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1223", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2569", "employeeId": "1224", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "88400.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "1225", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1228", "startDate": "2022-06-01", "rate": {"currency": "CNY", "value": "807204.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1230", "startDate": "2022-06-06", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1231", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1232", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2575", "employeeId": "1227", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "677", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "1229", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2578", "employeeId": "753", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "138000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "1233", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "112500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 9,000 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "1234", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1235", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "121", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Additional retro adjustment (comp was previously 340,000 eff 1/1/22)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2584", "employeeId": "1237", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1238", "startDate": "2022-07-25", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "1239", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "318", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "1656000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "1240", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1241", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "1000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Working 20 hours per week", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2590", "employeeId": "1242", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "1243", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1244", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1245", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2596", "employeeId": "1247", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "176000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2597", "employeeId": "1248", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1250", "startDate": "2022-08-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1251", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "1252", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1246", "startDate": "2022-07-04", "rate": {"currency": "EUR", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "1254", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "176000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "1255", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "1256", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1258", "startDate": "2022-07-18", "rate": {"currency": "INR", "value": "6900000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "1260", "startDate": "2022-07-25", "rate": {"currency": "INR", "value": "2488752.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1261", "startDate": "2022-06-27", "rate": {"currency": "BRL", "value": "612000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1262", "startDate": "2023-01-03", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1264", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "546", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1265", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "172200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1266", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "1267", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "1268", "startDate": "2022-08-29", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "832", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converted from KForce Contractor to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "187", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "177000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "405", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Relocating to Spain", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "1269", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "1270", "startDate": "2022-08-22", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "1271", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "1272", "startDate": "2022-06-28", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "1273", "startDate": "2022-09-26", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2627", "employeeId": "937", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Internal Transfer / Comp Adjustment eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1274", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2630", "employeeId": "1275", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "22.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1276", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1277", "startDate": "2022-06-30", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "1278", "startDate": "2022-08-08", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1108", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Conversion", "comment": "Converted to paid intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "1062", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "924", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "1010", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "827", "startDate": "2022-04-01", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "408", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "1281", "startDate": "2022-10-10", "rate": {"currency": "EUR", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "1283", "startDate": "2022-08-31", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2645", "employeeId": "1284", "startDate": "2022-10-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "1280", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "813", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "1285", "startDate": "2022-10-10", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "1286", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "1287", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "912", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1017", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1288", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1289", "startDate": "2022-10-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "1290", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "1291", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "1292", "startDate": "2022-08-01", "rate": {"currency": "SGD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1293", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "1380000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1294", "startDate": "2022-08-22", "rate": {"currency": "SGD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1295", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1296", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "2184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "1297", "startDate": "2022-08-22", "rate": {"currency": "SEK", "value": "2400000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1298", "startDate": "2022-09-26", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1299", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "112000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1300", "startDate": "2022-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "1301", "startDate": "2022-08-28", "rate": {"currency": "ILS", "value": "500004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "1302", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1303", "startDate": "2022-12-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1304", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "629", "startDate": "2022-07-01", "rate": {"currency": "CAD", "value": "212500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion/ Relo from FTE to Contractor", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "978", "startDate": "2022-07-01", "rate": {"currency": "SGD", "value": "273000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion to Head of Channels & Alliances APAC", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1305", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "6000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "165", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion to $155k base + comp adjustment - moving variable ($20k) into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1155", "startDate": "2022-10-19", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1307", "startDate": "2022-11-01", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "792", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion Eff. 7/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1306", "startDate": "2022-08-16", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "736", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "1308", "startDate": "2022-09-12", "rate": {"currency": "SGD", "value": "103200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1309", "startDate": "2022-05-03", "rate": {"currency": "USD", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "1310", "startDate": "2022-08-08", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Base fee EUR 8,333.33 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "910", "startDate": "2022-08-01", "rate": {"currency": "GBP", "value": "187500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1311", "startDate": "2022-08-22", "rate": {"currency": "USD", "value": "143250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "592", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Comp Adj - 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1312", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1320000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1313", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1314", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1315", "startDate": "2022-08-22", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1316", "startDate": "2022-10-03", "rate": {"currency": "SEK", "value": "1100004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2692", "employeeId": "1317", "startDate": "2022-09-12", "rate": {"currency": "SGD", "value": "86520.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2693", "employeeId": "1318", "startDate": "2022-08-30", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2694", "employeeId": "1319", "startDate": "2022-10-25", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2695", "employeeId": "1320", "startDate": "2022-09-19", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2696", "employeeId": "805", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2697", "employeeId": "573", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2698", "employeeId": "1321", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2699", "employeeId": "1322", "startDate": "2022-10-03", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2700", "employeeId": "340", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "64717.40"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2701", "employeeId": "296", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2702", "employeeId": "1004", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructre", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2703", "employeeId": "1034", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2704", "employeeId": "1323", "startDate": "2022-08-29", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2706", "employeeId": "1103", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "1032000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2707", "employeeId": "1324", "startDate": "2022-08-15", "rate": {"currency": "BRL", "value": "272400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2708", "employeeId": "1325", "startDate": "2022-09-19", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2709", "employeeId": "1111", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2710", "employeeId": "620", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "158000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2711", "employeeId": "941", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "198000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2712", "employeeId": "715", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "127560.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2713", "employeeId": "691", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2714", "employeeId": "711", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2715", "employeeId": "818", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2716", "employeeId": "878", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "147750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base (to $143k)\nMerit (+3.3%)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2717", "employeeId": "903", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "212750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2718", "employeeId": "163", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "197000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2719", "employeeId": "1183", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2720", "employeeId": "1150", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2721", "employeeId": "705", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2722", "employeeId": "682", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "198000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2723", "employeeId": "1105", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "203550.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2724", "employeeId": "1043", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2725", "employeeId": "669", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "119500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base (to $115,500)\nMerit increase (+3.4%)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2726", "employeeId": "797", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2727", "employeeId": "1162", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2728", "employeeId": "1119", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2729", "employeeId": "143", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "194900.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2730", "employeeId": "1145", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2731", "employeeId": "242", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2732", "employeeId": "806", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "126500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2733", "employeeId": "936", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2734", "employeeId": "801", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "181000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2735", "employeeId": "798", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2736", "employeeId": "205", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "104854.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2737", "employeeId": "952", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2738", "employeeId": "1025", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2739", "employeeId": "1050", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2740", "employeeId": "846", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "143750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2741", "employeeId": "1326", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2742", "employeeId": "1327", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2743", "employeeId": "1328", "startDate": "2022-09-19", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2744", "employeeId": "1329", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2745", "employeeId": "850", "startDate": "2022-09-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Contractor to Full Time", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2746", "employeeId": "1331", "startDate": "2022-09-12", "rate": {"currency": "BRL", "value": "412000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2747", "employeeId": "1333", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2748", "employeeId": "1140", "startDate": "2022-09-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Internal Transfer Eff. 9/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2749", "employeeId": "1334", "startDate": "2022-09-09", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2750", "employeeId": "1335", "startDate": "2022-09-12", "rate": {"currency": "USD", "value": "164000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2751", "employeeId": "1336", "startDate": "2022-09-09", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2753", "employeeId": "412", "startDate": "2022-11-14", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2754", "employeeId": "1338", "startDate": "2022-09-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2756", "employeeId": "1339", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "500004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2757", "employeeId": "1340", "startDate": "2022-10-03", "rate": {"currency": "USD", "value": "208000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2758", "employeeId": "1341", "startDate": "2022-11-15", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2759", "employeeId": "1342", "startDate": "2022-09-26", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2760", "employeeId": "1343", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2761", "employeeId": "767", "startDate": "2022-10-01", "rate": {"currency": "SEK", "value": "504996.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2762", "employeeId": "1344", "startDate": "2022-10-10", "rate": {"currency": "SGD", "value": "264000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2764", "employeeId": "1345", "startDate": "2022-09-26", "rate": {"currency": "SEK", "value": "3500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2765", "employeeId": "706", "startDate": "2022-08-26", "rate": {"currency": "USD", "value": "112310.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": "$54.00/hour", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2766", "employeeId": "1346", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2767", "employeeId": "1067", "startDate": "2022-10-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2768", "employeeId": "1347", "startDate": "2022-10-17", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2769", "employeeId": "1348", "startDate": "2022-10-03", "rate": {"currency": "BRL", "value": "700000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2770", "employeeId": "1349", "startDate": "2022-12-19", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2771", "employeeId": "730", "startDate": "2022-09-26", "rate": {"currency": "USD", "value": "1050.00"}, "type": "Contract", "exempt": null, "reason": "Re-hire", "comment": "$150 per hour", "paidPer": "Week", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2772", "employeeId": "1350", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2773", "employeeId": "1351", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2774", "employeeId": "858", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2775", "employeeId": "1352", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2776", "employeeId": "1353", "startDate": "2022-10-10", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2777", "employeeId": "1354", "startDate": "2023-01-30", "rate": {"currency": "GBP", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2778", "employeeId": "1109", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2779", "employeeId": "1355", "startDate": "2022-11-14", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2780", "employeeId": "928", "startDate": "2022-07-01", "rate": {"currency": "CNY", "value": "767000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "+ 3% merit increase", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2781", "employeeId": "954", "startDate": "2022-07-01", "rate": {"currency": "INR", "value": "9398545.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2782", "employeeId": "1356", "startDate": "2022-09-05", "rate": {"currency": "USD", "value": "0.00"}, "type": "Commission", "exempt": "Exempt", "reason": "", "comment": "Contract for $80,000 from 9/1/2022-12/30/2022", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2783", "employeeId": "1357", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2784", "employeeId": "401", "startDate": "2022-10-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2785", "employeeId": "1358", "startDate": "2022-11-07", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2787", "employeeId": "1360", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2788", "employeeId": "1361", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72000"}, "type": "Salary", "exempt": "Non-exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2789", "employeeId": "157", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2790", "employeeId": "1362", "startDate": "2022-10-31", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2791", "employeeId": "1363", "startDate": "2022-10-31", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2792", "employeeId": "1364", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2793", "employeeId": "1365", "startDate": "2022-12-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2794", "employeeId": "1366", "startDate": "2022-11-07", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2795", "employeeId": "1367", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2797", "employeeId": "1368", "startDate": "2022-11-28", "rate": {"currency": "USD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2798", "employeeId": "1369", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2799", "employeeId": "671", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "1524000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2800", "employeeId": "366", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "1320000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2801", "employeeId": "1371", "startDate": "2022-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2802", "employeeId": "979", "startDate": "2022-11-14", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2803", "employeeId": "1372", "startDate": "2022-12-12", "rate": {"currency": "AUD", "value": "204000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2804", "employeeId": "1373", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "265000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2805", "employeeId": "1374", "startDate": "2023-02-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2806", "employeeId": "1375", "startDate": "2022-11-21", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2807", "employeeId": "1376", "startDate": "2023-01-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2809", "employeeId": "1378", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2810", "employeeId": "1379", "startDate": "2023-01-05", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Excluding 8% Holiday allowance of 10,560 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2812", "employeeId": "1381", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2813", "employeeId": "587", "startDate": "2022-12-01", "rate": {"currency": "CAD", "value": "196198.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2814", "employeeId": "1382", "startDate": "2023-01-05", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2815", "employeeId": "353", "startDate": "2022-12-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2816", "employeeId": "1383", "startDate": "2022-12-12", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2818", "employeeId": "1384", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2819", "employeeId": "1385", "startDate": "2023-02-06", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2821", "employeeId": "1387", "startDate": "2022-12-19", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2822", "employeeId": "1389", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2823", "employeeId": "1390", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2824", "employeeId": "1391", "startDate": "2023-02-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2825", "employeeId": "381", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transferred from Sweden entity to German entity", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2827", "employeeId": "1392", "startDate": "2022-12-27", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2828", "employeeId": "1393", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2829", "employeeId": "1394", "startDate": "2023-01-23", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2830", "employeeId": "1395", "startDate": "2023-01-11", "rate": {"currency": "AUD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2831", "employeeId": "1397", "startDate": "2023-02-09", "rate": {"currency": "AUD", "value": "191250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2833", "employeeId": "1398", "startDate": "2023-01-09", "rate": {"currency": "BRL", "value": "538000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $14,220.18/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2834", "employeeId": "135", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "192875"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2835", "employeeId": "1400", "startDate": "2023-01-16", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2836", "employeeId": "1239", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2837", "employeeId": "1068", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2838", "employeeId": "1401", "startDate": "2023-01-16", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2839", "employeeId": "1402", "startDate": "2023-01-17", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2840", "employeeId": "1399", "startDate": "2023-02-21", "rate": {"currency": "USD", "value": "332000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2841", "employeeId": "1403", "startDate": "2023-01-23", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2842", "employeeId": "1241", "startDate": "2023-01-26", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2843", "employeeId": "291", "startDate": "2021-09-23", "rate": {"currency": "SEK", "value": "855000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 09/23/2021. Stays on the same salary level.\n\n80% salary = 684 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2844", "employeeId": "1405", "startDate": "2023-01-30", "rate": {"currency": "USD", "value": "30000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2845", "employeeId": "1404", "startDate": "2023-02-13", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2846", "employeeId": "1407", "startDate": "2023-02-13", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2847", "employeeId": "1408", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2848", "employeeId": "1386", "startDate": "2023-03-01", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2849", "employeeId": "1409", "startDate": "2023-02-06", "rate": {"currency": "USD", "value": "26000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$26,000/month", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2851", "employeeId": "1411", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2852", "employeeId": "1412", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "2200800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2853", "employeeId": "1413", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "2200800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2854", "employeeId": "1414", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1630500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2855", "employeeId": "1415", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1304200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2856", "employeeId": "1416", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1960000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2857", "employeeId": "1419", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "110400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2858", "employeeId": "1420", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2859", "employeeId": "1421", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2860", "employeeId": "1422", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2861", "employeeId": "1207", "startDate": "2023-02-21", "rate": {"currency": "USD", "value": "87000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2862", "employeeId": "1406", "startDate": "2023-02-22", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2864", "employeeId": "907", "startDate": "2023-06-19", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2865", "employeeId": "1165", "startDate": "2023-06-19", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2866", "employeeId": "1426", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2867", "employeeId": "1427", "startDate": "2023-06-16", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2868", "employeeId": "1424", "startDate": "2023-03-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2869", "employeeId": "1418", "startDate": "2023-03-07", "rate": {"currency": "GBP", "value": "144000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2870", "employeeId": "1008", "startDate": "2023-03-13", "rate": {"currency": "USD", "value": "161000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converting from contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2871", "employeeId": "1005", "startDate": "2023-03-13", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2872", "employeeId": "1430", "startDate": "2023-03-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2873", "employeeId": "1098", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2874", "employeeId": "771", "startDate": "2023-03-16", "rate": {"currency": "SGD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2875", "employeeId": "1295", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2876", "employeeId": "1445", "startDate": "2023-03-27", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2877", "employeeId": "1446", "startDate": "2023-03-27", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2880", "employeeId": "117", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "907200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2881", "employeeId": "786", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "478800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2886", "employeeId": "374", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "170400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2887", "employeeId": "1036", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "91520"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2888", "employeeId": "1037", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "263165"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2889", "employeeId": "1211", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "198000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2890", "employeeId": "977", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "226800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2891", "employeeId": "627", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "257500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2892", "employeeId": "1090", "startDate": "2023-01-01", "rate": {"currency": "BRL", "value": "291200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2893", "employeeId": "1144", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "160500"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2894", "employeeId": "876", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "197631.2"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2895", "employeeId": "629", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "236375"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2896", "employeeId": "744", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "148074.37"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2897", "employeeId": "1228", "startDate": "2023-01-01", "rate": {"currency": "CNY", "value": "825366.09"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2898", "employeeId": "269", "startDate": "2023-01-01", "rate": {"currency": "DKK", "value": "765600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Paid in DKK even though work location is Sweden.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2899", "employeeId": "357", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "171600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Jan lives in Italy, contract is with company in Belgium.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2900", "employeeId": "1039", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "57000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2901", "employeeId": "316", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "72000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2902", "employeeId": "268", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "103200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2903", "employeeId": "726", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2904", "employeeId": "713", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "128750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2905", "employeeId": "822", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "185000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2906", "employeeId": "960", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "86400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2907", "employeeId": "932", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "142100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2908", "employeeId": "710", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "135600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2909", "employeeId": "278", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2910", "employeeId": "320", "startDate": "2023-04-01", "rate": {"currency": "EUR", "value": "158080.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac76 EUR / hour (76 EUR x 2080 hours)", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2911", "employeeId": "800", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2912", "employeeId": "411", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "103000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2913", "employeeId": "262", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "200000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2914", "employeeId": "1213", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "96000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2915", "employeeId": "324", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "120000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2916", "employeeId": "327", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "93000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2917", "employeeId": "289", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "219000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2918", "employeeId": "1075", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2919", "employeeId": "1246", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "47500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2920", "employeeId": "339", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "128750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2921", "employeeId": "362", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "123000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2922", "employeeId": "326", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "77000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2923", "employeeId": "317", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2924", "employeeId": "980", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "170000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2925", "employeeId": "768", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "134000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2926", "employeeId": "1205", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "158620"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2927", "employeeId": "363", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Works 85% effective 12/01/2022. 85% salary = 67 150 EUR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2928", "employeeId": "1062", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "135000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2929", "employeeId": "1042", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "47000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2930", "employeeId": "1113", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2931", "employeeId": "405", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2932", "employeeId": "354", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "130810"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2933", "employeeId": "729", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "87000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2934", "employeeId": "287", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "110127.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2935", "employeeId": "351", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2936", "employeeId": "352", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "270000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2937", "employeeId": "994", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98880"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2938", "employeeId": "1227", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "86000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2939", "employeeId": "930", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "46620"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2940", "employeeId": "747", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2941", "employeeId": "1138", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "86700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2942", "employeeId": "1063", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2943", "employeeId": "295", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "170980"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2944", "employeeId": "1038", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2945", "employeeId": "961", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2946", "employeeId": "748", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2947", "employeeId": "395", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2948", "employeeId": "739", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "163500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2949", "employeeId": "712", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "122100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2950", "employeeId": "304", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80 % salary = 92 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2951", "employeeId": "1065", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "261000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2952", "employeeId": "1034", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "155000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2953", "employeeId": "856", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2954", "employeeId": "853", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "43680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2955", "employeeId": "830", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2956", "employeeId": "927", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "107700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2957", "employeeId": "1100", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "77000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2958", "employeeId": "796", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2959", "employeeId": "1328", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "140000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2960", "employeeId": "957", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2961", "employeeId": "898", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2962", "employeeId": "828", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "94000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2963", "employeeId": "766", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114857"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2964", "employeeId": "914", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2965", "employeeId": "858", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "200000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2966", "employeeId": "329", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "110250"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2967", "employeeId": "391", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92219"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2968", "employeeId": "341", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2969", "employeeId": "662", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2970", "employeeId": "648", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "128000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2971", "employeeId": "1273", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2972", "employeeId": "698", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "49350"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2973", "employeeId": "1130", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2974", "employeeId": "637", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96555"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2975", "employeeId": "385", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2976", "employeeId": "1051", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2977", "employeeId": "1251", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2978", "employeeId": "943", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "63600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2979", "employeeId": "1271", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2980", "employeeId": "347", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2981", "employeeId": "1032", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2982", "employeeId": "1199", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "91000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2983", "employeeId": "292", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "130500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2984", "employeeId": "1355", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "106500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2985", "employeeId": "894", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2986", "employeeId": "1089", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "119600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2987", "employeeId": "962", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2988", "employeeId": "1191", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2989", "employeeId": "1136", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2990", "employeeId": "1203", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2991", "employeeId": "647", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "123600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2992", "employeeId": "883", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "126200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2993", "employeeId": "942", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "67920"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2994", "employeeId": "1031", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2995", "employeeId": "383", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2996", "employeeId": "1299", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2997", "employeeId": "850", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "133500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2998", "employeeId": "370", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "59360"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2999", "employeeId": "264", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "190000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3000", "employeeId": "668", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3001", "employeeId": "355", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3002", "employeeId": "679", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3003", "employeeId": "760", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "136000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3004", "employeeId": "1302", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3005", "employeeId": "389", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3006", "employeeId": "1322", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3007", "employeeId": "1127", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3008", "employeeId": "862", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3009", "employeeId": "1017", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3010", "employeeId": "852", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69784"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3011", "employeeId": "947", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "105000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3012", "employeeId": "312", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102875"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3013", "employeeId": "650", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3014", "employeeId": "986", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3015", "employeeId": "409", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3016", "employeeId": "979", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "160000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3017", "employeeId": "636", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96300"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3018", "employeeId": "1142", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3019", "employeeId": "331", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "122000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3020", "employeeId": "663", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3021", "employeeId": "921", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "139050"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3022", "employeeId": "923", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "42230"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3023", "employeeId": "752", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3024", "employeeId": "884", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "64800"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3025", "employeeId": "1234", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "180000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3026", "employeeId": "834", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "167000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3027", "employeeId": "340", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69894.79"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3028", "employeeId": "653", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "195250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3029", "employeeId": "831", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3030", "employeeId": "736", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "127680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3031", "employeeId": "578", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "100000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3032", "employeeId": "866", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "74900"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3033", "employeeId": "328", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3034", "employeeId": "1201", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3035", "employeeId": "916", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3036", "employeeId": "332", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81120"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3037", "employeeId": "833", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3038", "employeeId": "299", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3039", "employeeId": "603", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3040", "employeeId": "925", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "43050"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3041", "employeeId": "926", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "175000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3042", "employeeId": "1095", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "180000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3043", "employeeId": "604", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3044", "employeeId": "1074", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "124200"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3045", "employeeId": "870", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "66950"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3046", "employeeId": "929", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3047", "employeeId": "322", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3048", "employeeId": "1014", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3049", "employeeId": "608", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "154500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3050", "employeeId": "1321", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "51500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3051", "employeeId": "336", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "67500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3052", "employeeId": "658", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3053", "employeeId": "1185", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "106000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3054", "employeeId": "872", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "88000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3055", "employeeId": "839", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "89000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3056", "employeeId": "1206", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3057", "employeeId": "1055", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3058", "employeeId": "958", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3059", "employeeId": "369", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3060", "employeeId": "400", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3061", "employeeId": "685", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "73500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3062", "employeeId": "912", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "109200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3063", "employeeId": "1323", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "40000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3064", "employeeId": "1096", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "76776"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3065", "employeeId": "413", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "99300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3066", "employeeId": "751", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "123600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3067", "employeeId": "1006", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3068", "employeeId": "992", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112785"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3069", "employeeId": "758", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3070", "employeeId": "1004", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3071", "employeeId": "677", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "88000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3072", "employeeId": "576", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3073", "employeeId": "1122", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "47700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3074", "employeeId": "837", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3075", "employeeId": "1012", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3076", "employeeId": "734", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3077", "employeeId": "1007", "startDate": "2023-01-01", "rate": {"currency": "IDR", "value": "1077911100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3078", "employeeId": "380", "startDate": "2023-01-01", "rate": {"currency": "ILS", "value": "579000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3079", "employeeId": "983", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3260841.1"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3080", "employeeId": "754", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3205885.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3081", "employeeId": "809", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3410618.4"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3082", "employeeId": "955", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3112621.05"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3083", "employeeId": "1076", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "2914751.06"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3084", "employeeId": "1000", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3823555"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3085", "employeeId": "821", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "7649250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3086", "employeeId": "901", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3900000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3087", "employeeId": "867", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "5000000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3088", "employeeId": "1124", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3873057.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3089", "employeeId": "625", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3572475"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3090", "employeeId": "982", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "602400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3091", "employeeId": "533", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3092", "employeeId": "813", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "804000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3093", "employeeId": "392", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "807240"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3094", "employeeId": "611", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3095", "employeeId": "359", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1284000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3096", "employeeId": "814", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "960000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3097", "employeeId": "881", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "584400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3098", "employeeId": "944", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3099", "employeeId": "678", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "844560"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3100", "employeeId": "787", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3101", "employeeId": "403", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3102", "employeeId": "384", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "657700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3103", "employeeId": "343", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1712000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3104", "employeeId": "1194", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "469680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3105", "employeeId": "933", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "782000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3106", "employeeId": "1364", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3107", "employeeId": "671", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1560000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3108", "employeeId": "646", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "674040"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3109", "employeeId": "293", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1308000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3110", "employeeId": "740", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "648000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3111", "employeeId": "893", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "576000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3112", "employeeId": "606", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1135000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3113", "employeeId": "1270", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3114", "employeeId": "396", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "627000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3115", "employeeId": "260", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1104000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3116", "employeeId": "802", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "888000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3117", "employeeId": "1252", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3118", "employeeId": "972", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "996000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3119", "employeeId": "418", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1333200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3120", "employeeId": "703", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "876000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3121", "employeeId": "569", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "759960"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3122", "employeeId": "891", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "588000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3123", "employeeId": "1035", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3124", "employeeId": "280", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1248000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3125", "employeeId": "799", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1308000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3126", "employeeId": "645", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "13 month pay schedule, $16,176.11/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3127", "employeeId": "1176", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1008000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3128", "employeeId": "408", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "550200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3129", "employeeId": "659", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1130400"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3130", "employeeId": "335", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "912000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/06/2022.\n80% salary = 729 600 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3131", "employeeId": "1129", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3132", "employeeId": "635", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "870000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3133", "employeeId": "735", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "648000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3134", "employeeId": "398", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "918000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3135", "employeeId": "812", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "654000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3136", "employeeId": "301", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "900000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3137", "employeeId": "847", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "732000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3138", "employeeId": "372", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1110000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3139", "employeeId": "1060", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3140", "employeeId": "116", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1500189"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3141", "employeeId": "365", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3142", "employeeId": "575", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3143", "employeeId": "421", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "840000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3144", "employeeId": "321", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "966000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3145", "employeeId": "1022", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "588000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3146", "employeeId": "1133", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "594000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3147", "employeeId": "386", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1421400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3148", "employeeId": "1268", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3149", "employeeId": "687", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "840000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3150", "employeeId": "602", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "870000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3151", "employeeId": "684", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "960960"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3152", "employeeId": "294", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1055700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3153", "employeeId": "607", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1020000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3154", "employeeId": "368", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "882000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3155", "employeeId": "361", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "594000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3156", "employeeId": "574", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "633600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3157", "employeeId": "1195", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3158", "employeeId": "1168", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3159", "employeeId": "281", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1152000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3160", "employeeId": "570", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "846000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3161", "employeeId": "803", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "684000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3162", "employeeId": "728", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "726000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3163", "employeeId": "375", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "862500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3164", "employeeId": "869", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3165", "employeeId": "297", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1080000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3166", "employeeId": "410", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 50% effective 08/28/2023 until 10/20/2023. 50% salary = 396 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3167", "employeeId": "314", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "894000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3168", "employeeId": "318", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1710000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3169", "employeeId": "1298", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "738720"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3170", "employeeId": "973", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3171", "employeeId": "1061", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3172", "employeeId": "307", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 614 400 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3173", "employeeId": "310", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "720000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3174", "employeeId": "1232", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "613920"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3175", "employeeId": "1190", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "474000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3176", "employeeId": "674", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "834000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3177", "employeeId": "388", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "894000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3178", "employeeId": "291", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 864 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3179", "employeeId": "836", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "696000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3180", "employeeId": "875", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "690000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3181", "employeeId": "785", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "800000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3182", "employeeId": "373", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3183", "employeeId": "882", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3184", "employeeId": "1155", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "480000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3185", "employeeId": "1231", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "549000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3186", "employeeId": "337", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "919800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3187", "employeeId": "546", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3188", "employeeId": "644", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "715800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3189", "employeeId": "610", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "687900"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3190", "employeeId": "416", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1122000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3191", "employeeId": "311", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% 08/22/2022 until 08/22/2023.\n80% salary = 600 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3192", "employeeId": "319", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "469930"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3193", "employeeId": "723", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "442200"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3194", "employeeId": "1112", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "678000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3195", "employeeId": "909", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "869400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 90% 08/22/2022 until 08/22/2023. 90% salary = 782 460 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3196", "employeeId": "298", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "932400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3197", "employeeId": "358", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3198", "employeeId": "707", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3199", "employeeId": "890", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1248000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3200", "employeeId": "718", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3201", "employeeId": "848", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3202", "employeeId": "302", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "858000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3203", "employeeId": "1128", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3204", "employeeId": "1200", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "572400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3205", "employeeId": "775", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "370000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3206", "employeeId": "827", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3207", "employeeId": "1149", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "217330"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3208", "employeeId": "795", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "348000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3209", "employeeId": "639", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3210", "employeeId": "190", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3211", "employeeId": "255", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170544"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3212", "employeeId": "202", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "220480"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3213", "employeeId": "969", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "162000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3214", "employeeId": "243", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185317.6"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3215", "employeeId": "1111", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "206000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3216", "employeeId": "1033", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "105000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3217", "employeeId": "1193", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148625"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3218", "employeeId": "911", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "158000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3219", "employeeId": "755", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "156800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3220", "employeeId": "981", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "160000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3221", "employeeId": "968", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3222", "employeeId": "1245", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "257500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3223", "employeeId": "941", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "203940"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3224", "employeeId": "1181", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3225", "employeeId": "1173", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175950"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3226", "employeeId": "164", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "171735"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3227", "employeeId": "580", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "283500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3228", "employeeId": "974", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "68250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3229", "employeeId": "1044", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "341250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3230", "employeeId": "160", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3231", "employeeId": "124", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "240000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3232", "employeeId": "1156", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "132600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3233", "employeeId": "147", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "171392"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3234", "employeeId": "191", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3235", "employeeId": "233", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "188198.4"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3236", "employeeId": "1053", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "112200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3237", "employeeId": "221", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "217948"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3238", "employeeId": "1084", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3239", "employeeId": "592", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3240", "employeeId": "595", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "294000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3241", "employeeId": "170", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3242", "employeeId": "1172", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3243", "employeeId": "622", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "205000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3244", "employeeId": "711", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "197400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3245", "employeeId": "1085", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3246", "employeeId": "1016", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179740"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3247", "employeeId": "818", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "193640"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3248", "employeeId": "878", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155150"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3249", "employeeId": "727", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "164900"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3250", "employeeId": "1291", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3251", "employeeId": "189", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "205000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3252", "employeeId": "1009", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "295000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3253", "employeeId": "937", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3254", "employeeId": "126", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3255", "employeeId": "716", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "160500"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3256", "employeeId": "219", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "137500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3257", "employeeId": "583", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "186250"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3258", "employeeId": "664", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "183750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3259", "employeeId": "1102", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3260", "employeeId": "1116", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3261", "employeeId": "1269", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "152000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3262", "employeeId": "210", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "186225.48"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3263", "employeeId": "1066", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "167375"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3264", "employeeId": "1179", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3265", "employeeId": "1175", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "82000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3266", "employeeId": "791", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "70720"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3267", "employeeId": "985", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "174250"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3268", "employeeId": "688", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "154500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3269", "employeeId": "1015", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3270", "employeeId": "1114", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179350"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3271", "employeeId": "888", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3272", "employeeId": "619", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "249500"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3273", "employeeId": "630", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": "0.00"}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3274", "employeeId": "141", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "196581.47"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3275", "employeeId": "773", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "73500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3276", "employeeId": "719", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3277", "employeeId": "997", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "252000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3278", "employeeId": "762", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "215000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3279", "employeeId": "184", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "220500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3280", "employeeId": "714", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "159900"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3281", "employeeId": "235", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "129483.75"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3282", "employeeId": "889", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "168000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3283", "employeeId": "195", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3284", "employeeId": "1184", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "158000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3285", "employeeId": "638", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "138500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3286", "employeeId": "1119", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3287", "employeeId": "143", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "200750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3288", "employeeId": "1058", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3289", "employeeId": "772", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "116000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3290", "employeeId": "228", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185850"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3291", "employeeId": "159", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "270000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3292", "employeeId": "1180", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3293", "employeeId": "774", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "71400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3294", "employeeId": "213", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "145000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3295", "employeeId": "618", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "162500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3296", "employeeId": "1318", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3297", "employeeId": "855", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3298", "employeeId": "843", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "104000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3299", "employeeId": "150", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3300", "employeeId": "194", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3301", "employeeId": "816", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "119000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3302", "employeeId": "1073", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "68250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3303", "employeeId": "171", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "329000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3304", "employeeId": "792", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "184000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3305", "employeeId": "940", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "13 month pay schedule, $16,781.92/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3306", "employeeId": "616", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139080"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3307", "employeeId": "806", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "132850"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3308", "employeeId": "938", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3309", "employeeId": "1216", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3310", "employeeId": "801", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3311", "employeeId": "229", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "152603.85"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3312", "employeeId": "820", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195120"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3313", "employeeId": "798", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3314", "employeeId": "1040", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "262650"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3315", "employeeId": "1109", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "133900.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "13 month pay schedule, $21,245.39/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3316", "employeeId": "819", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "150800"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3317", "employeeId": "136", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "235000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3318", "employeeId": "172", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "261000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3319", "employeeId": "1086", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "412500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3320", "employeeId": "192", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "136800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3321", "employeeId": "1107", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "166400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3322", "employeeId": "859", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "70720"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3323", "employeeId": "1056", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3324", "employeeId": "1057", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "352000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3325", "employeeId": "1311", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "146250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3326", "employeeId": "153", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "172500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3327", "employeeId": "252", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148522.5"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3328", "employeeId": "176", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "270000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3329", "employeeId": "963", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179740"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3330", "employeeId": "1046", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3331", "employeeId": "794", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "107100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3332", "employeeId": "1243", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "77500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3333", "employeeId": "206", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "325000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3334", "employeeId": "615", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "135108"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3335", "employeeId": "227", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "176748"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3336", "employeeId": "240", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3337", "employeeId": "1025", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "288400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3338", "employeeId": "212", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "238500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3339", "employeeId": "590", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "136000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3340", "employeeId": "177", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3341", "employeeId": "633", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "137500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3342", "employeeId": "253", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3343", "employeeId": "865", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "100000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3344", "employeeId": "1050", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139050"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3345", "employeeId": "114", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "266110"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3346", "employeeId": "846", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3347", "employeeId": "217", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "183680.42"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3348", "employeeId": "146", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "192276.12"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3349", "employeeId": "1425", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "450000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3350", "employeeId": "998", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "72.80"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3351", "employeeId": "946", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "67.60"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3352", "employeeId": "1019", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "49.92"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3353", "employeeId": "804", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "22.88"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3354", "employeeId": "1444", "startDate": "2023-04-11", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3355", "employeeId": "1417", "startDate": "2023-05-02", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3356", "employeeId": "669", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3357", "employeeId": "786", "startDate": "2023-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3358", "employeeId": "970", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "16.20"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3359", "employeeId": "1449", "startDate": "2023-04-06", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$16,666.67 / month", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3360", "employeeId": "1451", "startDate": "2023-04-17", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3361", "employeeId": "1358", "startDate": "2023-04-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3362", "employeeId": "1448", "startDate": "2023-04-17", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$15,000.00 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3363", "employeeId": "1357", "startDate": "2023-04-17", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3364", "employeeId": "1132", "startDate": "2023-05-30", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3365", "employeeId": "1454", "startDate": "2023-04-04", "rate": {"currency": "USD", "value": "52.50"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3366", "employeeId": "1455", "startDate": "2023-04-04", "rate": {"currency": "USD", "value": "52.50"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3367", "employeeId": "1453", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3368", "employeeId": "1456", "startDate": "2023-04-24", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3369", "employeeId": "725", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3370", "employeeId": "1457", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3371", "employeeId": "1452", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "60.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3372", "employeeId": "1328", "startDate": "2023-05-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3373", "employeeId": "992", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "137000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from UK to USA", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3374", "employeeId": "1459", "startDate": "2023-05-03", "rate": {"currency": "USD", "value": "360.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3375", "employeeId": "1358", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3376", "employeeId": "1463", "startDate": "2023-05-29", "rate": {"currency": "GBP", "value": "225000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3377", "employeeId": "1465", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "10000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3378", "employeeId": "1461", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3379", "employeeId": "865", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3380", "employeeId": "1460", "startDate": "2023-06-05", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3381", "employeeId": "1466", "startDate": "2023-05-29", "rate": {"currency": "USD", "value": "115.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3382", "employeeId": "1467", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3383", "employeeId": "718", "startDate": "2023-06-01", "rate": {"currency": "SEK", "value": "1250000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3384", "employeeId": "359", "startDate": "2023-06-01", "rate": {"currency": "SEK", "value": "1350000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3385", "employeeId": "1472", "startDate": "2023-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3386", "employeeId": "1248", "startDate": "2023-06-27", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3387", "employeeId": "1464", "startDate": "2023-08-21", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3388", "employeeId": "1473", "startDate": "2023-06-05", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3389", "employeeId": "580", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3390", "employeeId": "1474", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3391", "employeeId": "1476", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3392", "employeeId": "1477", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3393", "employeeId": "1478", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3394", "employeeId": "1471", "startDate": "2023-06-26", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3395", "employeeId": "1480", "startDate": "2023-07-03", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3396", "employeeId": "1462", "startDate": "2023-07-17", "rate": {"currency": "GBP", "value": "143000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3397", "employeeId": "266", "startDate": "2021-03-07", "rate": {"currency": "EUR", "value": "175.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "Subcontractor Fee", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3398", "employeeId": "413", "startDate": "2023-06-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3399", "employeeId": "1496", "startDate": "2023-05-26", "rate": {"currency": "AUD", "value": "200.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3400", "employeeId": "1475", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3401", "employeeId": "1479", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3402", "employeeId": "1210", "startDate": "2023-06-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3403", "employeeId": "1499", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3404", "employeeId": "1500", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3405", "employeeId": "1501", "startDate": "2023-05-17", "rate": {"currency": "BRL", "value": "10000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3406", "employeeId": "1502", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "7000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3407", "employeeId": "1498", "startDate": "2023-06-14", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3408", "employeeId": "1504", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3409", "employeeId": "1505", "startDate": "2023-04-24", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3410", "employeeId": "1512", "startDate": "2023-06-21", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3411", "employeeId": "1503", "startDate": "2023-06-19", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3412", "employeeId": "1507", "startDate": "2023-07-05", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3413", "employeeId": "1497", "startDate": "2023-06-26", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3414", "employeeId": "1506", "startDate": "2023-06-20", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3415", "employeeId": "939", "startDate": "2023-07-01", "rate": {"currency": "AUD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Transfer", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3416", "employeeId": "590", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3417", "employeeId": "669", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": null, "reason": "Adjustment", "comment": "Transfer between departments", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3418", "employeeId": "208", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "452400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3419", "employeeId": "778", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3420", "employeeId": "1458", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3421", "employeeId": "800", "startDate": "2023-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3422", "employeeId": "336", "startDate": "2023-07-01", "rate": {"currency": "GBP", "value": "77500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3423", "employeeId": "319", "startDate": "2023-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3424", "employeeId": "914", "startDate": "2023-07-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3425", "employeeId": "1518", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "115.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3426", "employeeId": "1515", "startDate": "2023-07-17", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3427", "employeeId": "1222", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "235000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3428", "employeeId": "711", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3429", "employeeId": "1245", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3430", "employeeId": "801", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3431", "employeeId": "1526", "startDate": "2023-07-24", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3432", "employeeId": "273", "startDate": "2023-01-01", "rate": {"currency": "DKK", "value": "1773691.92"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Confirmed pay is DKK even though work location is Sweden.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3433", "employeeId": "202", "startDate": "2023-08-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3434", "employeeId": "1527", "startDate": "2023-07-31", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3435", "employeeId": "1529", "startDate": "2023-08-01", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3436", "employeeId": "1524", "startDate": "2023-07-31", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3437", "employeeId": "1525", "startDate": "2023-07-31", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3438", "employeeId": "1521", "startDate": "2023-08-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3440", "employeeId": "1315", "startDate": "2023-08-07", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3441", "employeeId": "1522", "startDate": "2023-08-07", "rate": {"currency": "USD", "value": "285000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3442", "employeeId": "1539", "startDate": "2023-08-14", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3443", "employeeId": "1540", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3444", "employeeId": "1541", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3445", "employeeId": "1528", "startDate": "2023-08-28", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3446", "employeeId": "263", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "3369665.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3447", "employeeId": "1543", "startDate": "2023-08-14", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3448", "employeeId": "1542", "startDate": "2023-08-09", "rate": {"currency": "SGD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$12,500.00 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3449", "employeeId": "959", "startDate": "2023-08-14", "rate": {"currency": "USD", "value": "138.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3450", "employeeId": "1457", "startDate": "2023-08-21", "rate": {"currency": "USD", "value": "87000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converted to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3451", "employeeId": "1545", "startDate": "2023-09-04", "rate": {"currency": "BRL", "value": "525000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $13,876.57/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3452", "employeeId": "347", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3453", "employeeId": "1536", "startDate": "2023-08-21", "rate": {"currency": "USD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3454", "employeeId": "1548", "startDate": "2023-08-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3455", "employeeId": "1546", "startDate": "2023-08-21", "rate": {"currency": "AUD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3456", "employeeId": "1535", "startDate": "2023-08-28", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3457", "employeeId": "1534", "startDate": "2023-08-28", "rate": {"currency": "IDR", "value": "97745156.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3458", "employeeId": "1287", "startDate": "2023-08-28", "rate": {"currency": "GBP", "value": "57500.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "Intern to FTE conversion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3459", "employeeId": "1550", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3460", "employeeId": "706", "startDate": "2023-08-26", "rate": {"currency": "USD", "value": "116000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3461", "employeeId": "328", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3462", "employeeId": "355", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3463", "employeeId": "1554", "startDate": "2023-09-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3464", "employeeId": "1514", "startDate": "2023-10-02", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3465", "employeeId": "1552", "startDate": "2023-09-25", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3466", "employeeId": "1551", "startDate": "2023-09-11", "rate": {"currency": "USD", "value": "270000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3467", "employeeId": "1556", "startDate": "2023-09-18", "rate": {"currency": "BRL", "value": "490000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $12,951.46/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3468", "employeeId": "1553", "startDate": "2023-10-02", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3469", "employeeId": "364", "startDate": "2023-09-01", "rate": {"currency": "USD", "value": "300.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3470", "employeeId": "1385", "startDate": "2023-10-01", "rate": {"currency": "SGD", "value": "19583.34"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3471", "employeeId": "1557", "startDate": "2023-11-13", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3472", "employeeId": "1558", "startDate": "2023-10-16", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3473", "employeeId": "1559", "startDate": "2023-11-15", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3474", "employeeId": "1560", "startDate": "2023-09-25", "rate": {"currency": "USD", "value": "247500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3475", "employeeId": "1561", "startDate": "2023-11-01", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 10,560 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3476", "employeeId": "1562", "startDate": "2023-10-09", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3477", "employeeId": "774", "startDate": "2023-09-18", "rate": {"currency": "USD", "value": "78000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3478", "employeeId": "1563", "startDate": "2024-01-02", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3479", "employeeId": "1564", "startDate": "2023-10-02", "rate": {"currency": "USD", "value": "80.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3480", "employeeId": "1565", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3481", "employeeId": "1566", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3482", "employeeId": "1569", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3483", "employeeId": "1568", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3484", "employeeId": "1567", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3485", "employeeId": "1555", "startDate": "2023-10-09", "rate": {"currency": "INR", "value": "4532000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3486", "employeeId": "1575", "startDate": "2023-10-16", "rate": {"currency": "SGD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3487", "employeeId": "1576", "startDate": "2023-10-30", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3488", "employeeId": "1578", "startDate": "2023-11-06", "rate": {"currency": "MYR", "value": "576000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3489", "employeeId": "1580", "startDate": "2023-10-30", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3490", "employeeId": "1577", "startDate": "2023-10-23", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3491", "employeeId": "1582", "startDate": "2024-02-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3492", "employeeId": "1583", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3493", "employeeId": "1586", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "420.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3494", "employeeId": "1587", "startDate": "2023-12-04", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3495", "employeeId": "1588", "startDate": "2023-11-06", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3496", "employeeId": "1589", "startDate": "2023-12-04", "rate": {"currency": "EUR", "value": "123000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3497", "employeeId": "1590", "startDate": "2023-11-15", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3498", "employeeId": "1593", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "420.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3499", "employeeId": "177", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3500", "employeeId": "114", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3501", "employeeId": "1356", "startDate": "2023-10-23", "rate": {"currency": "USD", "value": ""}, "type": "Commission", "exempt": "Exempt", "reason": "", "comment": "$45,000 for services performed from 10/23/2023 - 12/22/2023", "paidPer": null, "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3502", "employeeId": "261", "startDate": "2023-10-01", "rate": {"currency": "GBP", "value": "205000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3503", "employeeId": "1592", "startDate": "2023-11-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3504", "employeeId": "1591", "startDate": "2023-11-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3506", "employeeId": "1585", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "315000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3507", "employeeId": "1584", "startDate": "2023-11-27", "rate": {"currency": "INR", "value": "8000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3508", "employeeId": "1579", "startDate": "2024-01-02", "rate": {"currency": "MYR", "value": "221875.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3509", "employeeId": "1295", "startDate": "2023-11-16", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3510", "employeeId": "1597", "startDate": "2024-01-15", "rate": {"currency": "EUR", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "The Employee shall be entitled to a holiday allowance, equalling 8% of the Base Salary, while the statutory deductions shall be withheld, payable in the month of May of each calendar year.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3511", "employeeId": "707", "startDate": "2023-12-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Salary Increase Request - Thomas Wiss", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3512", "employeeId": "1600", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3513", "employeeId": "1601", "startDate": "2024-01-15", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3514", "employeeId": "1605", "startDate": "2024-01-15", "rate": {"currency": "SGD", "value": "6250.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3515", "employeeId": "1595", "startDate": "2023-11-20", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3516", "employeeId": "1602", "startDate": "2023-11-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3517", "employeeId": "1606", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "252500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3518", "employeeId": "1607", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "310000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3519", "employeeId": "1608", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3520", "employeeId": "1609", "startDate": "2024-01-03", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3521", "employeeId": "1610", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "116000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3522", "employeeId": "1612", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3523", "employeeId": "1613", "startDate": "2024-01-02", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3524", "employeeId": "1614", "startDate": "2023-12-13", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3525", "employeeId": "1615", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3526", "employeeId": "1616", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "28.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3527", "employeeId": "1618", "startDate": "2023-12-04", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3528", "employeeId": "1619", "startDate": "2023-11-29", "rate": {"currency": "USD", "value": "85.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3529", "employeeId": "1620", "startDate": "2024-01-15", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3530", "employeeId": "1621", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3531", "employeeId": "1622", "startDate": "2024-03-07", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3532", "employeeId": "669", "startDate": "2023-11-22", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3533", "employeeId": "968", "startDate": "2023-10-01", "rate": {"currency": "USD", "value": "75100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3534", "employeeId": "1090", "startDate": "2023-10-01", "rate": {"currency": "BRL", "value": "305915.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "13 month pay schedule, 23,531.92 BRL/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3535", "employeeId": "1617", "startDate": "2023-12-11", "rate": {"currency": "AUD", "value": "196000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3536", "employeeId": "1624", "startDate": "2023-12-06", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3537", "employeeId": "1628", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3538", "employeeId": "1626", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3539", "employeeId": "1625", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3540", "employeeId": "1627", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3541", "employeeId": "1623", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3542", "employeeId": "1630", "startDate": "2024-01-02", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3543", "employeeId": "1385", "startDate": "2023-11-24", "rate": {"currency": "SGD", "value": "268500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3544", "employeeId": "1631", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3545", "employeeId": "1632", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3546", "employeeId": "1633", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3547", "employeeId": "1634", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3548", "employeeId": "1635", "startDate": "2024-03-18", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3549", "employeeId": "1636", "startDate": "2024-03-18", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3550", "employeeId": "1629", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3551", "employeeId": "1637", "startDate": "2023-12-18", "rate": {"currency": "BRL", "value": "728000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3552", "employeeId": "1639", "startDate": "2024-01-15", "rate": {"currency": "BRL", "value": "819000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3553", "employeeId": "1639", "startDate": "2024-01-15", "rate": {"currency": "BRL", "value": "819000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3554", "employeeId": "1640", "startDate": "2024-01-02", "rate": {"currency": "SGD", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3555", "employeeId": "1641", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3556", "employeeId": "1642", "startDate": "2023-12-14", "rate": {"currency": "USD", "value": "300.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3557", "employeeId": "1644", "startDate": "2024-01-15", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3558", "employeeId": "1646", "startDate": "2024-01-29", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3559", "employeeId": "1648", "startDate": "2024-01-16", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3560", "employeeId": "1649", "startDate": "2024-01-22", "rate": {"currency": "USD", "value": "28.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3561", "employeeId": "1650", "startDate": "2024-01-16", "rate": {"currency": "USD", "value": "247500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3562", "employeeId": "1643", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "332500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3563", "employeeId": "1651", "startDate": "2024-06-03", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3564", "employeeId": "1652", "startDate": "2024-06-03", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3565", "employeeId": "1426", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3566", "employeeId": "1477", "startDate": "2024-03-05", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Intern to Full-Time", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3567", "employeeId": "1645", "startDate": "2024-01-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3568", "employeeId": "1638", "startDate": "2024-01-15", "rate": {"currency": "AUD", "value": "425000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3569", "employeeId": "739", "startDate": "2024-02-12", "rate": {"currency": "GBP", "value": "190000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3570", "employeeId": "1647", "startDate": "2024-02-12", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3571", "employeeId": "1653", "startDate": "2024-03-11", "rate": {"currency": "EUR", "value": "127500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3572", "employeeId": "748", "startDate": "2024-02-01", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3574", "employeeId": "1540", "startDate": "2024-02-05", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Intern to Full-Time", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3575", "employeeId": "1028", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "643885.45"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month salary schedule, BRL 49,529.95 p/m", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3576", "employeeId": "1109", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "819864.76"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 63,066.52/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3578", "employeeId": "1348", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "732060.03"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 56,312.31/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3579", "employeeId": "1398", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "555915.49"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 42,762.73/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3581", "employeeId": "771", "startDate": "2024-01-01", "rate": {"currency": "SGD", "value": "192000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3582", "employeeId": "1654", "startDate": "2024-01-29", "rate": {"currency": "USD", "value": "242250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3583", "employeeId": "1655", "startDate": "2024-02-01", "rate": {"currency": "AUD", "value": "320000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3584", "employeeId": "1656", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3585", "employeeId": "159", "startDate": "2024-01-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3586", "employeeId": "1658", "startDate": "2024-02-19", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3587", "employeeId": "1657", "startDate": "2024-02-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3588", "employeeId": "1659", "startDate": "2024-02-12", "rate": {"currency": "USD", "value": "24.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3589", "employeeId": "1660", "startDate": "2024-02-19", "rate": {"currency": "CAD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3590", "employeeId": "1661", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "127500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3591", "employeeId": "1662", "startDate": "2024-04-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3592", "employeeId": "1666", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3593", "employeeId": "1667", "startDate": "2024-03-04", "rate": {"currency": "SGD", "value": "17917.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3594", "employeeId": "1668", "startDate": "2024-03-18", "rate": {"currency": "SGD", "value": "6500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3595", "employeeId": "1665", "startDate": "2024-03-18", "rate": {"currency": "EUR", "value": "123000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3596", "employeeId": "1669", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3597", "employeeId": "1670", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3598", "employeeId": "1671", "startDate": "2024-03-04", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3599", "employeeId": "1664", "startDate": "2024-02-19", "rate": {"currency": "USD", "value": "213625.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3600", "employeeId": "1672", "startDate": "2024-03-05", "rate": {"currency": "AUD", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3601", "employeeId": "1673", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3602", "employeeId": "1674", "startDate": "2024-03-04", "rate": {"currency": "BRL", "value": "598000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Split into 13 monthly installments", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3603", "employeeId": "1675", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3604", "employeeId": "1677", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3606", "employeeId": "575", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving from Sweden to Germany", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3607", "employeeId": "1676", "startDate": "2024-05-06", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3608", "employeeId": "1680", "startDate": "2024-04-12", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3609", "employeeId": "1682", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3610", "employeeId": "1683", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3611", "employeeId": "1684", "startDate": "2024-02-26", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3612", "employeeId": "1681", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3613", "employeeId": "1686", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3614", "employeeId": "1687", "startDate": "2024-06-03", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3615", "employeeId": "1685", "startDate": "2024-03-04", "rate": {"currency": "AUD", "value": "225000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3617", "employeeId": "1689", "startDate": "2024-04-08", "rate": {"currency": "AUD", "value": "256000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3618", "employeeId": "1691", "startDate": "2024-03-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3619", "employeeId": "1692", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3620", "employeeId": "671", "startDate": "2024-05-05", "rate": {"currency": "SEK", "value": "1680000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3621", "employeeId": "1694", "startDate": "2024-05-28", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3622", "employeeId": "1696", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3623", "employeeId": "1102", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3624", "employeeId": "1697", "startDate": "2024-03-01", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3625", "employeeId": "1099", "startDate": "2024-03-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3626", "employeeId": "1698", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3627", "employeeId": "1699", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3628", "employeeId": "1700", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "93.75"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3629", "employeeId": "1701", "startDate": "2024-04-22", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3630", "employeeId": "1702", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3631", "employeeId": "1474", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3632", "employeeId": "1703", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3633", "employeeId": "1704", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3634", "employeeId": "1705", "startDate": "2024-05-20", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3635", "employeeId": "1706", "startDate": "2024-05-13", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3636", "employeeId": "1707", "startDate": "2024-03-25", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3637", "employeeId": "1708", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3638", "employeeId": "1709", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3639", "employeeId": "1710", "startDate": "2024-03-12", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3641", "employeeId": "1711", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3642", "employeeId": "1712", "startDate": "2024-06-24", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3643", "employeeId": "1720", "startDate": "2024-06-17", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3644", "employeeId": "1721", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3645", "employeeId": "1722", "startDate": "2024-05-07", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3646", "employeeId": "1723", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} +{"type": "LOG", "log": {"level": "WARN", "message": "Stream `tables_stream`. An error occurred, details: 404 Client Error: Not found for url: https://api.bamboohr.com/api/gateway.php/neo4j/v1/employees/all/tables/benefit_class. Skipping for now."}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"knoetic_table_name": "benefit_class"}, "emitted_at": 1710872584803}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8150, "employeeId": 114, "customDate": "2022-12-22", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1675, "employeeId": 117, "customDate": "2020-04-01", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "BambooHR Release Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4685, "employeeId": 124, "customDate": "2022-03-15", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8149, "employeeId": 124, "customDate": "2022-12-22", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 360, "employeeId": 131, "customDate": "2019-11-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 361, "employeeId": 131, "customDate": "2019-12-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 392, "employeeId": 131, "customDate": "2020-01-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1566, "employeeId": 131, "customDate": "2020-02-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1717, "employeeId": 131, "customDate": "2020-04-30", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "$500 February & $500 March bonus (04/30/2020 paydate)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1898, "employeeId": 131, "customDate": "2020-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "$500 April bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3237, "employeeId": 131, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3286, "employeeId": 131, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3356, "employeeId": 131, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3497, "employeeId": 131, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3804, "employeeId": 131, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3923, "employeeId": 131, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4066, "employeeId": 131, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4181, "employeeId": 131, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4726, "employeeId": 131, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5013, "employeeId": 141, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11235, "employeeId": 141, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5538, "employeeId": 146, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q1 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4215, "employeeId": 147, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586930}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5521, "employeeId": 147, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5523, "employeeId": 147, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5908, "employeeId": 147, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8289, "employeeId": 147, "customDate": "2023-02-06", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8362, "employeeId": 147, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9229, "employeeId": 147, "customDate": "2023-05-03", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11571, "employeeId": 147, "customDate": "2023-12-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2865, "employeeId": 162, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2870, "employeeId": 163, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4214, "employeeId": 164, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5077, "employeeId": 164, "customDate": "2022-03-16", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5086, "employeeId": 164, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5517, "employeeId": 164, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5527, "employeeId": 164, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5869, "employeeId": 164, "customDate": "2022-10-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8286, "employeeId": 164, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9130, "employeeId": 164, "customDate": "2023-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10217, "employeeId": 164, "customDate": "2023-06-28", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10422, "employeeId": 164, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11096, "employeeId": 164, "customDate": "2023-10-02", "customAmount": "375.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11266, "employeeId": 164, "customDate": "2023-11-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11570, "employeeId": 164, "customDate": "2023-12-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15924, "employeeId": 164, "customDate": "2024-01-03", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16845, "employeeId": 164, "customDate": "2024-02-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17253, "employeeId": 164, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2871, "employeeId": 165, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3303, "employeeId": 165, "customDate": "2021-08-10", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9187, "employeeId": 172, "customDate": "2023-04-28", "customAmount": "20000.00 USD", "customBonusReason": "retention", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3372, "employeeId": 177, "customDate": "2021-09-08", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Nodes 2021 - related to customer engagement (Meretidh)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5026, "employeeId": 177, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3046, "employeeId": 178, "customDate": "2021-05-07", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on the implementation of Tipalti!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3373, "employeeId": 179, "customDate": "2021-09-08", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Nodes 2021 - related to customer engagement (Todo1)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5025, "employeeId": 180, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11200, "employeeId": 184, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11201, "employeeId": 184, "customDate": "2024-01-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11243, "employeeId": 184, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5015, "employeeId": 185, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5021, "employeeId": 189, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8148, "employeeId": 191, "customDate": "2022-12-22", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10455, "employeeId": 191, "customDate": "2023-08-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4216, "employeeId": 194, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5034, "employeeId": 195, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11233, "employeeId": 195, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5024, "employeeId": 198, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11244, "employeeId": 198, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4217, "employeeId": 202, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8251, "employeeId": 221, "customDate": "2023-02-01", "customAmount": "2500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q3'22 Professional Services Booking Consistency Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4219, "employeeId": 229, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9202, "employeeId": 229, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5317, "employeeId": 240, "customDate": "2022-07-01", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2881, "employeeId": 242, "customDate": "2021-03-01", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1938, "employeeId": 245, "customDate": "2020-06-30", "customAmount": "5000.00 USD", "customBonusReason": "Sign On", "customComment": "part of conversion offer", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4220, "employeeId": 247, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2867, "employeeId": 251, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4218, "employeeId": 252, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5079, "employeeId": 252, "customDate": "2022-03-16", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5089, "employeeId": 252, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5520, "employeeId": 252, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5524, "employeeId": 252, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5767, "employeeId": 252, "customDate": "2022-08-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5870, "employeeId": 252, "customDate": "2022-10-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6810, "employeeId": 252, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Oct on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7701, "employeeId": 252, "customDate": "2022-12-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8178, "employeeId": 252, "customDate": "2023-01-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8287, "employeeId": 252, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8363, "employeeId": 252, "customDate": "2023-03-03", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9131, "employeeId": 252, "customDate": "2023-04-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9203, "employeeId": 252, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10142, "employeeId": 252, "customDate": "2023-06-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10218, "employeeId": 252, "customDate": "2023-06-28", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10425, "employeeId": 252, "customDate": "2023-08-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10543, "employeeId": 252, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11093, "employeeId": 252, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11269, "employeeId": 252, "customDate": "2023-11-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11574, "employeeId": 252, "customDate": "2023-12-05", "customAmount": "875.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15923, "employeeId": 252, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16846, "employeeId": 252, "customDate": "2024-02-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17255, "employeeId": 252, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5316, "employeeId": 253, "customDate": "2022-07-01", "customAmount": "15000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9206, "employeeId": 253, "customDate": "2023-04-24", "customAmount": "2500.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16049, "employeeId": 253, "customDate": "2023-12-31", "customAmount": "10000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2868, "employeeId": 256, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10513, "employeeId": 262, "customDate": "2023-09-01", "customAmount": "10000.00 EUR", "customBonusReason": "Spot Bonus", "customComment": "For new role", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1534, "employeeId": 270, "customDate": "2019-11-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES2019 Event", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 375, "employeeId": 271, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 376, "employeeId": 271, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 398, "employeeId": 271, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1590, "employeeId": 271, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1655, "employeeId": 271, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1699, "employeeId": 271, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1732, "employeeId": 271, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1912, "employeeId": 271, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1951, "employeeId": 271, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1986, "employeeId": 271, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2425, "employeeId": 271, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2526, "employeeId": 271, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2549, "employeeId": 271, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2612, "employeeId": 271, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2676, "employeeId": 271, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2840, "employeeId": 271, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2905, "employeeId": 271, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2961, "employeeId": 271, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3004, "employeeId": 274, "customDate": "2021-05-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2872, "employeeId": 278, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4613, "employeeId": 278, "customDate": "2022-03-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8201, "employeeId": 278, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "NODES effort 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2670, "employeeId": 283, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2834, "employeeId": 283, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2900, "employeeId": 283, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2956, "employeeId": 283, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3022, "employeeId": 283, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3088, "employeeId": 283, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3236, "employeeId": 283, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3285, "employeeId": 283, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3355, "employeeId": 283, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3496, "employeeId": 283, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3803, "employeeId": 283, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3922, "employeeId": 283, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4065, "employeeId": 283, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4180, "employeeId": 283, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4725, "employeeId": 283, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2807, "employeeId": 290, "customDate": "2021-02-25", "customAmount": "2000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 2x1000 USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 388, "employeeId": 292, "customDate": "2018-10-01", "customAmount": "13000.00 GBP", "customBonusReason": "Performance", "customComment": "SPIFF for the Aviva signature.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2873, "employeeId": 296, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2809, "employeeId": 300, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1561, "employeeId": 306, "customDate": "2017-01-01", "customAmount": "15000.00 GBP", "customBonusReason": "Spot Bonus", "customComment": "One time sign on bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 397, "employeeId": 311, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1217, "employeeId": 311, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1218, "employeeId": 311, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1589, "employeeId": 311, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1654, "employeeId": 311, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1698, "employeeId": 311, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1731, "employeeId": 311, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1910, "employeeId": 311, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1950, "employeeId": 311, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1985, "employeeId": 311, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2424, "employeeId": 311, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2525, "employeeId": 311, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2548, "employeeId": 311, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2611, "employeeId": 311, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2665, "employeeId": 311, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2829, "employeeId": 311, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2895, "employeeId": 311, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2951, "employeeId": 311, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3017, "employeeId": 311, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3083, "employeeId": 311, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3232, "employeeId": 311, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3281, "employeeId": 311, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8386, "employeeId": 318, "customDate": "2023-03-25", "customAmount": "150000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus for UK Tax Credit Project", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 393, "employeeId": 330, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 402, "employeeId": 330, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 403, "employeeId": 330, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1594, "employeeId": 330, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1659, "employeeId": 330, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1703, "employeeId": 330, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1736, "employeeId": 330, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1916, "employeeId": 330, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1955, "employeeId": 330, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1990, "employeeId": 330, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2429, "employeeId": 330, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2530, "employeeId": 330, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2553, "employeeId": 330, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2616, "employeeId": 330, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2674, "employeeId": 330, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2838, "employeeId": 330, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2903, "employeeId": 330, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2959, "employeeId": 330, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3025, "employeeId": 330, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3091, "employeeId": 330, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3242, "employeeId": 330, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3289, "employeeId": 330, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3360, "employeeId": 330, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3502, "employeeId": 330, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3810, "employeeId": 330, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3928, "employeeId": 330, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4073, "employeeId": 330, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4188, "employeeId": 330, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4731, "employeeId": 330, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4918, "employeeId": 330, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5110, "employeeId": 330, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5247, "employeeId": 330, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5430, "employeeId": 330, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5607, "employeeId": 330, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5753, "employeeId": 330, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5886, "employeeId": 330, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6800, "employeeId": 330, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7690, "employeeId": 330, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8220, "employeeId": 330, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8267, "employeeId": 330, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 399, "employeeId": 331, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1158, "employeeId": 331, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1159, "employeeId": 331, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1591, "employeeId": 331, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1656, "employeeId": 331, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1700, "employeeId": 331, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1733, "employeeId": 331, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1913, "employeeId": 331, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1952, "employeeId": 331, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1987, "employeeId": 331, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2426, "employeeId": 331, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2527, "employeeId": 331, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2550, "employeeId": 331, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2613, "employeeId": 331, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2671, "employeeId": 331, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2756, "employeeId": 331, "customDate": "2021-02-25", "customAmount": "2000.00 USD", "customBonusReason": "Performance", "customComment": "", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2835, "employeeId": 331, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 486, "employeeId": 333, "customDate": "2019-12-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES2019 Event Bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2677, "employeeId": 334, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2841, "employeeId": 334, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2906, "employeeId": 334, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2962, "employeeId": 334, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3027, "employeeId": 334, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3093, "employeeId": 334, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3244, "employeeId": 334, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3291, "employeeId": 334, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3362, "employeeId": 334, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3504, "employeeId": 334, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3812, "employeeId": 334, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3930, "employeeId": 334, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4075, "employeeId": 334, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4190, "employeeId": 334, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4733, "employeeId": 334, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4920, "employeeId": 334, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5112, "employeeId": 334, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5249, "employeeId": 334, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5432, "employeeId": 334, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3005, "employeeId": 336, "customDate": "2021-05-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4717, "employeeId": 340, "customDate": "2022-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4947, "employeeId": 340, "customDate": "2022-04-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation March 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5127, "employeeId": 340, "customDate": "2022-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5300, "employeeId": 340, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5447, "employeeId": 340, "customDate": "2022-07-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5582, "employeeId": 340, "customDate": "2022-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5893, "employeeId": 340, "customDate": "2022-10-25", "customAmount": "3000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6816, "employeeId": 340, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8159, "employeeId": 340, "customDate": "2023-01-25", "customAmount": "2625.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8162, "employeeId": 340, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8276, "employeeId": 340, "customDate": "2023-02-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8369, "employeeId": 340, "customDate": "2023-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9159, "employeeId": 340, "customDate": "2023-04-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9241, "employeeId": 340, "customDate": "2023-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10392, "employeeId": 340, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10393, "employeeId": 340, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10518, "employeeId": 340, "customDate": "2023-09-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11279, "employeeId": 340, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15912, "employeeId": 340, "customDate": "2024-01-25", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16973, "employeeId": 340, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17343, "employeeId": 340, "customDate": "2024-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6774, "employeeId": 343, "customDate": "2022-11-01", "customAmount": "100000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "One-time Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 405, "employeeId": 346, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1578, "employeeId": 346, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1579, "employeeId": 346, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1596, "employeeId": 346, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1661, "employeeId": 346, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1705, "employeeId": 346, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1738, "employeeId": 346, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1911, "employeeId": 346, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1957, "employeeId": 346, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1992, "employeeId": 346, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2431, "employeeId": 346, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2532, "employeeId": 346, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2555, "employeeId": 346, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2618, "employeeId": 346, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2678, "employeeId": 346, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2842, "employeeId": 346, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2907, "employeeId": 346, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2963, "employeeId": 346, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3028, "employeeId": 346, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3094, "employeeId": 346, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3239, "employeeId": 346, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3292, "employeeId": 346, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3363, "employeeId": 346, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3506, "employeeId": 346, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3814, "employeeId": 346, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3932, "employeeId": 346, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4069, "employeeId": 346, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4184, "employeeId": 346, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4736, "employeeId": 346, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4923, "employeeId": 346, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5106, "employeeId": 346, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1560, "employeeId": 347, "customDate": "2018-02-12", "customAmount": "3000.00 GBP", "customBonusReason": "Sign On", "customComment": "One time sign on bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 481, "employeeId": 355, "customDate": "2018-08-06", "customAmount": "3000.00 GBP", "customBonusReason": "Sign On", "customComment": "One time bonus with the first salary payment.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3332, "employeeId": 355, "customDate": "2021-09-25", "customAmount": "20000.00 GBP", "customBonusReason": "Performance", "customComment": "One time Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9199, "employeeId": 356, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2874, "employeeId": 359, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5018, "employeeId": 359, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 396, "employeeId": 366, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1543, "employeeId": 366, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1544, "employeeId": 366, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1588, "employeeId": 366, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1653, "employeeId": 366, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1697, "employeeId": 366, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1730, "employeeId": 366, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1909, "employeeId": 366, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1949, "employeeId": 366, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1984, "employeeId": 366, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2423, "employeeId": 366, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2524, "employeeId": 366, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2547, "employeeId": 366, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2610, "employeeId": 366, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2664, "employeeId": 366, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2828, "employeeId": 366, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2894, "employeeId": 366, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2950, "employeeId": 366, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3016, "employeeId": 366, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3082, "employeeId": 366, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3231, "employeeId": 366, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3280, "employeeId": 366, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3351, "employeeId": 366, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3492, "employeeId": 366, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3799, "employeeId": 366, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3918, "employeeId": 366, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4061, "employeeId": 366, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4176, "employeeId": 366, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4721, "employeeId": 366, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4910, "employeeId": 366, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5100, "employeeId": 366, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5238, "employeeId": 366, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5422, "employeeId": 366, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5597, "employeeId": 366, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5742, "employeeId": 366, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5879, "employeeId": 366, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6768, "employeeId": 366, "customDate": "2022-11-01", "customAmount": "120000.00 SEK", "customBonusReason": "Performance", "customComment": "One-time spot bonus for great performance", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6793, "employeeId": 366, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7683, "employeeId": 366, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8213, "employeeId": 366, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8260, "employeeId": 366, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8400, "employeeId": 366, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9146, "employeeId": 366, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9991, "employeeId": 366, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10099, "employeeId": 366, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10290, "employeeId": 366, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10407, "employeeId": 366, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10579, "employeeId": 366, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11123, "employeeId": 366, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11305, "employeeId": 366, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11545, "employeeId": 366, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15972, "employeeId": 366, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17009, "employeeId": 366, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17372, "employeeId": 366, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2875, "employeeId": 367, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2876, "employeeId": 378, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16836, "employeeId": 380, "customDate": "2024-02-01", "customAmount": "700.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Reason: In lieu of EOY Closing SPIF for MOD Israel closed in Q4'23 (achieving deal closure during the unprecedented geopolitical situation in their region - usually only awarded to AE's).", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 404, "employeeId": 383, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 411, "employeeId": 383, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 412, "employeeId": 383, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1595, "employeeId": 383, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1660, "employeeId": 383, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1704, "employeeId": 383, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1737, "employeeId": 383, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1917, "employeeId": 383, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1956, "employeeId": 383, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1991, "employeeId": 383, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2430, "employeeId": 383, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2531, "employeeId": 383, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2554, "employeeId": 383, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2617, "employeeId": 383, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2675, "employeeId": 383, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2839, "employeeId": 383, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2904, "employeeId": 383, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2960, "employeeId": 383, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3026, "employeeId": 383, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3092, "employeeId": 383, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3243, "employeeId": 383, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3290, "employeeId": 383, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3361, "employeeId": 383, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3503, "employeeId": 383, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3811, "employeeId": 383, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3929, "employeeId": 383, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4074, "employeeId": 383, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4189, "employeeId": 383, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4732, "employeeId": 383, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4919, "employeeId": 383, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5111, "employeeId": 383, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5248, "employeeId": 383, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5431, "employeeId": 383, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5608, "employeeId": 383, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5754, "employeeId": 383, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5888, "employeeId": 383, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6802, "employeeId": 383, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7692, "employeeId": 383, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8222, "employeeId": 383, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8269, "employeeId": 383, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8407, "employeeId": 383, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9154, "employeeId": 383, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9999, "employeeId": 383, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10106, "employeeId": 383, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10297, "employeeId": 383, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10414, "employeeId": 383, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10561, "employeeId": 383, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11136, "employeeId": 383, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11313, "employeeId": 383, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11535, "employeeId": 383, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15980, "employeeId": 383, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17000, "employeeId": 383, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17380, "employeeId": 383, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 381, "employeeId": 385, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 382, "employeeId": 385, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 400, "employeeId": 385, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1592, "employeeId": 385, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1657, "employeeId": 385, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1701, "employeeId": 385, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1734, "employeeId": 385, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1914, "employeeId": 385, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1953, "employeeId": 385, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1988, "employeeId": 385, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2427, "employeeId": 385, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2528, "employeeId": 385, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2551, "employeeId": 385, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2614, "employeeId": 385, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2672, "employeeId": 385, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2836, "employeeId": 385, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2901, "employeeId": 385, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2957, "employeeId": 385, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3023, "employeeId": 385, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3089, "employeeId": 385, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3240, "employeeId": 385, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3287, "employeeId": 385, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3358, "employeeId": 385, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3500, "employeeId": 385, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3808, "employeeId": 385, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3926, "employeeId": 385, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4071, "employeeId": 385, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4186, "employeeId": 385, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4729, "employeeId": 385, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4916, "employeeId": 385, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5108, "employeeId": 385, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5245, "employeeId": 385, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5428, "employeeId": 385, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5605, "employeeId": 385, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5751, "employeeId": 385, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5883, "employeeId": 385, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6797, "employeeId": 385, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7687, "employeeId": 385, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8217, "employeeId": 385, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8264, "employeeId": 385, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8404, "employeeId": 385, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9150, "employeeId": 385, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9995, "employeeId": 385, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10103, "employeeId": 385, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10294, "employeeId": 385, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10411, "employeeId": 385, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10557, "employeeId": 385, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11132, "employeeId": 385, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11309, "employeeId": 385, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11530, "employeeId": 385, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15977, "employeeId": 385, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16997, "employeeId": 385, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17378, "employeeId": 385, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2808, "employeeId": 391, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5017, "employeeId": 391, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4248, "employeeId": 393, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 395, "employeeId": 394, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1535, "employeeId": 394, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1536, "employeeId": 394, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1587, "employeeId": 394, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1651, "employeeId": 394, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1695, "employeeId": 394, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1727, "employeeId": 394, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1905, "employeeId": 394, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1944, "employeeId": 394, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1979, "employeeId": 394, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2418, "employeeId": 394, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 369, "employeeId": 395, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 370, "employeeId": 395, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 401, "employeeId": 395, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1593, "employeeId": 395, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1658, "employeeId": 395, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1702, "employeeId": 395, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1735, "employeeId": 395, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1915, "employeeId": 395, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1954, "employeeId": 395, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1989, "employeeId": 395, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2428, "employeeId": 395, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2529, "employeeId": 395, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2552, "employeeId": 395, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2615, "employeeId": 395, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2673, "employeeId": 395, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2837, "employeeId": 395, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2902, "employeeId": 395, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2958, "employeeId": 395, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3024, "employeeId": 395, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3090, "employeeId": 395, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3241, "employeeId": 395, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3288, "employeeId": 395, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3359, "employeeId": 395, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3501, "employeeId": 395, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3809, "employeeId": 395, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3927, "employeeId": 395, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4072, "employeeId": 395, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4187, "employeeId": 395, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4730, "employeeId": 395, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4917, "employeeId": 395, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5109, "employeeId": 395, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5246, "employeeId": 395, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5429, "employeeId": 395, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5606, "employeeId": 395, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5752, "employeeId": 395, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5885, "employeeId": 395, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6799, "employeeId": 395, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7689, "employeeId": 395, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8219, "employeeId": 395, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8266, "employeeId": 395, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8406, "employeeId": 395, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9152, "employeeId": 395, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9997, "employeeId": 395, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10104, "employeeId": 395, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10295, "employeeId": 395, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10412, "employeeId": 395, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10558, "employeeId": 395, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11130, "employeeId": 395, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11308, "employeeId": 395, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11531, "employeeId": 395, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15978, "employeeId": 395, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16995, "employeeId": 395, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1968, "employeeId": 397, "customDate": "2020-08-25", "customAmount": "25000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "Ex gratia payment.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 394, "employeeId": 398, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 439, "employeeId": 398, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 440, "employeeId": 398, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1586, "employeeId": 398, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1650, "employeeId": 398, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1694, "employeeId": 398, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1726, "employeeId": 398, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1904, "employeeId": 398, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1943, "employeeId": 398, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1978, "employeeId": 398, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2417, "employeeId": 398, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2520, "employeeId": 398, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2543, "employeeId": 398, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2605, "employeeId": 398, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2663, "employeeId": 398, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2827, "employeeId": 398, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2893, "employeeId": 398, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2949, "employeeId": 398, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3015, "employeeId": 398, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3081, "employeeId": 398, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3230, "employeeId": 398, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3279, "employeeId": 398, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3350, "employeeId": 398, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3491, "employeeId": 398, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3798, "employeeId": 398, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3917, "employeeId": 398, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4060, "employeeId": 398, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4175, "employeeId": 398, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4720, "employeeId": 398, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4909, "employeeId": 398, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5099, "employeeId": 398, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5237, "employeeId": 398, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5421, "employeeId": 398, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5596, "employeeId": 398, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5741, "employeeId": 398, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5873, "employeeId": 398, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6787, "employeeId": 398, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7677, "employeeId": 398, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8207, "employeeId": 398, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8254, "employeeId": 398, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8394, "employeeId": 398, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9139, "employeeId": 398, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9984, "employeeId": 398, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10092, "employeeId": 398, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10283, "employeeId": 398, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10400, "employeeId": 398, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10550, "employeeId": 398, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11119, "employeeId": 398, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11296, "employeeId": 398, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11541, "employeeId": 398, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15965, "employeeId": 398, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17005, "employeeId": 398, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17365, "employeeId": 398, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4077, "employeeId": 400, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4192, "employeeId": 400, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4735, "employeeId": 400, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4922, "employeeId": 400, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5114, "employeeId": 400, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5251, "employeeId": 400, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5437, "employeeId": 400, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5610, "employeeId": 400, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5756, "employeeId": 400, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5889, "employeeId": 400, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6804, "employeeId": 400, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7694, "employeeId": 400, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8224, "employeeId": 400, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8271, "employeeId": 400, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8410, "employeeId": 400, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9156, "employeeId": 400, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10001, "employeeId": 400, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10108, "employeeId": 400, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10299, "employeeId": 400, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10416, "employeeId": 400, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10567, "employeeId": 400, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1652, "employeeId": 412, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1696, "employeeId": 412, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1728, "employeeId": 412, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1906, "employeeId": 412, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1945, "employeeId": 412, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1980, "employeeId": 412, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2419, "employeeId": 412, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4249, "employeeId": 413, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3001, "employeeId": 419, "customDate": "2020-03-12", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on Bamboo launch!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3002, "employeeId": 419, "customDate": "2021-03-01", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on TriNet rolloff and ABD & Paylocity launch!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2606, "employeeId": 533, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2669, "employeeId": 533, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2833, "employeeId": 533, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2899, "employeeId": 533, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2955, "employeeId": 533, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3021, "employeeId": 533, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3087, "employeeId": 533, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3235, "employeeId": 533, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3284, "employeeId": 533, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3354, "employeeId": 533, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3495, "employeeId": 533, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3802, "employeeId": 533, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3921, "employeeId": 533, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4064, "employeeId": 533, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4179, "employeeId": 533, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4724, "employeeId": 533, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4913, "employeeId": 533, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5103, "employeeId": 533, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5241, "employeeId": 533, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5425, "employeeId": 533, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5600, "employeeId": 533, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5745, "employeeId": 533, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5875, "employeeId": 533, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6789, "employeeId": 533, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7679, "employeeId": 533, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8210, "employeeId": 533, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8257, "employeeId": 533, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8397, "employeeId": 533, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9142, "employeeId": 533, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9987, "employeeId": 533, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10095, "employeeId": 533, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10286, "employeeId": 533, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10403, "employeeId": 533, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10572, "employeeId": 533, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11125, "employeeId": 533, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11297, "employeeId": 533, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11547, "employeeId": 533, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15968, "employeeId": 533, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17011, "employeeId": 533, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17368, "employeeId": 533, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1948, "employeeId": 570, "customDate": "2020-07-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May & June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1983, "employeeId": 570, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2422, "employeeId": 570, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2523, "employeeId": 570, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2546, "employeeId": 570, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2609, "employeeId": 570, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2668, "employeeId": 570, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2832, "employeeId": 570, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2898, "employeeId": 570, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2954, "employeeId": 570, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3020, "employeeId": 570, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3086, "employeeId": 570, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3234, "employeeId": 570, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3283, "employeeId": 570, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3353, "employeeId": 570, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3494, "employeeId": 570, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3801, "employeeId": 570, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3920, "employeeId": 570, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4063, "employeeId": 570, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4178, "employeeId": 570, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4723, "employeeId": 570, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4912, "employeeId": 570, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5102, "employeeId": 570, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5240, "employeeId": 570, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5424, "employeeId": 570, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5599, "employeeId": 570, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5744, "employeeId": 570, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5878, "employeeId": 570, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6792, "employeeId": 570, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7682, "employeeId": 570, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8212, "employeeId": 570, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8259, "employeeId": 570, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8399, "employeeId": 570, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9145, "employeeId": 570, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9990, "employeeId": 570, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10098, "employeeId": 570, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10289, "employeeId": 570, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10406, "employeeId": 570, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10578, "employeeId": 570, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11122, "employeeId": 570, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11304, "employeeId": 570, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11544, "employeeId": 570, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15971, "employeeId": 570, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17008, "employeeId": 570, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17371, "employeeId": 570, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5016, "employeeId": 572, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9197, "employeeId": 572, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4252, "employeeId": 573, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1729, "employeeId": 574, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1908, "employeeId": 574, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1947, "employeeId": 574, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1982, "employeeId": 574, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2421, "employeeId": 574, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2522, "employeeId": 574, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2545, "employeeId": 574, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2608, "employeeId": 574, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2666, "employeeId": 574, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2830, "employeeId": 574, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2896, "employeeId": 574, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2952, "employeeId": 574, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3018, "employeeId": 574, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3084, "employeeId": 574, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3233, "employeeId": 574, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3282, "employeeId": 574, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3352, "employeeId": 574, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3493, "employeeId": 574, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3800, "employeeId": 574, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3919, "employeeId": 574, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4062, "employeeId": 574, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4177, "employeeId": 574, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4722, "employeeId": 574, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4911, "employeeId": 574, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5101, "employeeId": 574, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5239, "employeeId": 574, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5423, "employeeId": 574, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5598, "employeeId": 574, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5743, "employeeId": 574, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5876, "employeeId": 574, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6790, "employeeId": 574, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7680, "employeeId": 574, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8211, "employeeId": 574, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8258, "employeeId": 574, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8398, "employeeId": 574, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9144, "employeeId": 574, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9989, "employeeId": 574, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10097, "employeeId": 574, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10288, "employeeId": 574, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10405, "employeeId": 574, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10577, "employeeId": 574, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11121, "employeeId": 574, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11303, "employeeId": 574, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11543, "employeeId": 574, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15970, "employeeId": 574, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17007, "employeeId": 574, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17370, "employeeId": 574, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1907, "employeeId": 575, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1946, "employeeId": 575, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1981, "employeeId": 575, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2420, "employeeId": 575, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2521, "employeeId": 575, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2544, "employeeId": 575, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2607, "employeeId": 575, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2667, "employeeId": 575, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2831, "employeeId": 575, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2897, "employeeId": 575, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2953, "employeeId": 575, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3019, "employeeId": 575, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3085, "employeeId": 575, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3499, "employeeId": 575, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3806, "employeeId": 575, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3925, "employeeId": 575, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4068, "employeeId": 575, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4183, "employeeId": 575, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4728, "employeeId": 575, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4915, "employeeId": 575, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5105, "employeeId": 575, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5243, "employeeId": 575, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5427, "employeeId": 575, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1676, "employeeId": 579, "customDate": "2020-04-01", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "BambooHR Release Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2866, "employeeId": 582, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2972, "employeeId": 590, "customDate": "2021-04-09", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17410, "employeeId": 590, "customDate": "2024-03-29", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4250, "employeeId": 603, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2810, "employeeId": 607, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11241, "employeeId": 616, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8250, "employeeId": 619, "customDate": "2023-02-01", "customAmount": "2500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q3'22 Professional Services Booking Consistency Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11249, "employeeId": 627, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2864, "employeeId": 652, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11242, "employeeId": 656, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3413, "employeeId": 663, "customDate": "2021-10-25", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus for AsiaPac", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11227, "employeeId": 664, "customDate": "2023-10-31", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4251, "employeeId": 670, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3807, "employeeId": 674, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4714, "employeeId": 685, "customDate": "2022-02-25", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4715, "employeeId": 685, "customDate": "2022-01-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5124, "employeeId": 685, "customDate": "2022-06-25", "customAmount": "125.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus to be paid in June run 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5128, "employeeId": 685, "customDate": "2022-05-25", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5446, "employeeId": 685, "customDate": "2022-07-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "On Call Comp for June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5763, "employeeId": 685, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6815, "employeeId": 685, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9160, "employeeId": 685, "customDate": "2023-04-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10114, "employeeId": 685, "customDate": "2023-06-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16971, "employeeId": 685, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11232, "employeeId": 688, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5030, "employeeId": 704, "customDate": "2022-04-29", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SDR of the Year 2021", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5031, "employeeId": 705, "customDate": "2022-04-29", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales MVP 2021 Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3029, "employeeId": 710, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3095, "employeeId": 710, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3238, "employeeId": 710, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3293, "employeeId": 710, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3364, "employeeId": 710, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3507, "employeeId": 710, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3815, "employeeId": 710, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3933, "employeeId": 710, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4070, "employeeId": 710, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4185, "employeeId": 710, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4737, "employeeId": 710, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4924, "employeeId": 710, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5107, "employeeId": 710, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5254, "employeeId": 710, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5434, "employeeId": 710, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5604, "employeeId": 710, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5750, "employeeId": 710, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5882, "employeeId": 710, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6796, "employeeId": 710, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7686, "employeeId": 710, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8216, "employeeId": 710, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8263, "employeeId": 710, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8403, "employeeId": 710, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9149, "employeeId": 710, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9994, "employeeId": 710, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10102, "employeeId": 710, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10293, "employeeId": 710, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10410, "employeeId": 710, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10552, "employeeId": 710, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11131, "employeeId": 710, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11306, "employeeId": 710, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11528, "employeeId": 710, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15975, "employeeId": 710, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16991, "employeeId": 710, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17375, "employeeId": 710, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5519, "employeeId": 714, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5525, "employeeId": 714, "customDate": "2022-06-02", "customAmount": "875.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5766, "employeeId": 714, "customDate": "2022-08-13", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5871, "employeeId": 714, "customDate": "2022-10-04", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6809, "employeeId": 714, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Oct on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7700, "employeeId": 714, "customDate": "2022-12-07", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8177, "employeeId": 714, "customDate": "2023-01-05", "customAmount": "3500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8288, "employeeId": 714, "customDate": "2023-02-06", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8361, "employeeId": 714, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9129, "employeeId": 714, "customDate": "2023-04-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9228, "employeeId": 714, "customDate": "2023-05-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10141, "employeeId": 714, "customDate": "2023-06-07", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10424, "employeeId": 714, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10542, "employeeId": 714, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11092, "employeeId": 714, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10304, "employeeId": 718, "customDate": "2023-08-25", "customAmount": "5000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5029, "employeeId": 725, "customDate": "2022-04-29", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "RevOps Department Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9196, "employeeId": 726, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8247, "employeeId": 727, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9209, "employeeId": 727, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3357, "employeeId": 735, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3498, "employeeId": 735, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3805, "employeeId": 735, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3924, "employeeId": 735, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4067, "employeeId": 735, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4182, "employeeId": 735, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4727, "employeeId": 735, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4914, "employeeId": 735, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5104, "employeeId": 735, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5242, "employeeId": 735, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5426, "employeeId": 735, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5601, "employeeId": 735, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5746, "employeeId": 735, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5872, "employeeId": 735, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6786, "employeeId": 735, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7676, "employeeId": 735, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8206, "employeeId": 735, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8253, "employeeId": 735, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8393, "employeeId": 735, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9138, "employeeId": 735, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9983, "employeeId": 735, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10091, "employeeId": 735, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10282, "employeeId": 735, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10399, "employeeId": 735, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10570, "employeeId": 735, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11118, "employeeId": 735, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11294, "employeeId": 735, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11540, "employeeId": 735, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15964, "employeeId": 735, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17004, "employeeId": 735, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17364, "employeeId": 735, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5080, "employeeId": 741, "customDate": "2022-03-17", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5083, "employeeId": 741, "customDate": "2022-03-17", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5084, "employeeId": 741, "customDate": "2022-04-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5515, "employeeId": 741, "customDate": "2022-07-05", "customAmount": "1900.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5530, "employeeId": 741, "customDate": "2022-06-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5587, "employeeId": 741, "customDate": "2022-08-04", "customAmount": "3500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5771, "employeeId": 741, "customDate": "2022-09-06", "customAmount": "3400.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6813, "employeeId": 741, "customDate": "2022-11-04", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7703, "employeeId": 741, "customDate": "2022-12-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8179, "employeeId": 741, "customDate": "2023-01-05", "customAmount": "2050.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8278, "employeeId": 741, "customDate": "2023-02-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9133, "employeeId": 741, "customDate": "2023-04-06", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9231, "employeeId": 741, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10134, "employeeId": 741, "customDate": "2023-06-06", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10232, "employeeId": 741, "customDate": "2023-07-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10427, "employeeId": 741, "customDate": "2023-08-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10537, "employeeId": 741, "customDate": "2023-09-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11089, "employeeId": 741, "customDate": "2023-10-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11272, "employeeId": 741, "customDate": "2023-11-01", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15921, "employeeId": 741, "customDate": "2024-01-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16839, "employeeId": 741, "customDate": "2024-02-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17248, "employeeId": 741, "customDate": "2024-03-01", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5011, "employeeId": 744, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5081, "employeeId": 744, "customDate": "2022-03-17", "customAmount": "3200.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5082, "employeeId": 744, "customDate": "2022-03-17", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5085, "employeeId": 744, "customDate": "2022-04-04", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5516, "employeeId": 744, "customDate": "2022-07-05", "customAmount": "3600.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5531, "employeeId": 744, "customDate": "2022-06-02", "customAmount": "4400.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5588, "employeeId": 744, "customDate": "2022-08-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5772, "employeeId": 744, "customDate": "2022-09-06", "customAmount": "3300.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6814, "employeeId": 744, "customDate": "2022-11-04", "customAmount": "2100.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7702, "employeeId": 744, "customDate": "2022-12-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8181, "employeeId": 744, "customDate": "2023-01-05", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8249, "employeeId": 744, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8280, "employeeId": 744, "customDate": "2023-02-06", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8356, "employeeId": 744, "customDate": "2023-03-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9132, "employeeId": 744, "customDate": "2023-04-02", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9233, "employeeId": 744, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10136, "employeeId": 744, "customDate": "2023-06-06", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10230, "employeeId": 744, "customDate": "2023-07-03", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10429, "employeeId": 744, "customDate": "2023-08-07", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11091, "employeeId": 744, "customDate": "2023-10-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11271, "employeeId": 744, "customDate": "2023-11-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11577, "employeeId": 744, "customDate": "2023-12-05", "customAmount": "3600.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15920, "employeeId": 744, "customDate": "2024-01-03", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16841, "employeeId": 744, "customDate": "2024-02-02", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17249, "employeeId": 744, "customDate": "2024-03-01", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3505, "employeeId": 748, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3813, "employeeId": 748, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3931, "employeeId": 748, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4076, "employeeId": 748, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4191, "employeeId": 748, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4734, "employeeId": 748, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4921, "employeeId": 748, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5113, "employeeId": 748, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5250, "employeeId": 748, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5433, "employeeId": 748, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5609, "employeeId": 748, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5755, "employeeId": 748, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5884, "employeeId": 748, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6798, "employeeId": 748, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7688, "employeeId": 748, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8218, "employeeId": 748, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8265, "employeeId": 748, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8405, "employeeId": 748, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9151, "employeeId": 748, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9996, "employeeId": 748, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4995, "employeeId": 751, "customDate": "2022-05-25", "customAmount": "20000.00 GBP", "customBonusReason": "Spot Bonus", "customComment": "One-time bonus - to be paid in May run 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5116, "employeeId": 752, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5253, "employeeId": 752, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5435, "employeeId": 752, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5612, "employeeId": 752, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5012, "employeeId": 775, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9211, "employeeId": 775, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4213, "employeeId": 792, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5536, "employeeId": 792, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5087, "employeeId": 794, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5518, "employeeId": 794, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5765, "employeeId": 794, "customDate": "2022-08-20", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6811, "employeeId": 794, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10219, "employeeId": 794, "customDate": "2023-06-28", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10426, "employeeId": 794, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11094, "employeeId": 794, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11575, "employeeId": 794, "customDate": "2023-12-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15926, "employeeId": 794, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2869, "employeeId": 801, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5602, "employeeId": 803, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5747, "employeeId": 803, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5877, "employeeId": 803, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6791, "employeeId": 803, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7681, "employeeId": 803, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2860, "employeeId": 818, "customDate": "2021-03-15", "customAmount": "10000.00 USD", "customBonusReason": "", "customComment": "You will be paid a one-time relocation bonus in the amount of $10,000 (USD) payable upon initiating relocation. If your employment is terminated by the Company for Cause or if you terminate your employment voluntarily prior to one year of your relocation date, you agree to repay the pro-rated amount of the signing bonus within 30 days following your termination date.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3013, "employeeId": 820, "customDate": "2021-04-30", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work and extra hours working on transition to ABD & Paylocity from TriNet", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5302, "employeeId": 822, "customDate": "2022-07-25", "customAmount": "15000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Mid-year bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3047, "employeeId": 823, "customDate": "2021-05-07", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on the implementation of Paylocity and Tipalti!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11229, "employeeId": 827, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5874, "employeeId": 836, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6788, "employeeId": 836, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7678, "employeeId": 836, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8208, "employeeId": 836, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8255, "employeeId": 836, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8395, "employeeId": 836, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9140, "employeeId": 836, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9985, "employeeId": 836, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10093, "employeeId": 836, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10284, "employeeId": 836, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10401, "employeeId": 836, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10571, "employeeId": 836, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11124, "employeeId": 836, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11298, "employeeId": 836, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11546, "employeeId": 836, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15966, "employeeId": 836, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17010, "employeeId": 836, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17366, "employeeId": 836, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5647, "employeeId": 846, "customDate": "2022-08-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot bonus awarded on 8/19", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8209, "employeeId": 847, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8256, "employeeId": 847, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8396, "employeeId": 847, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9141, "employeeId": 847, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9986, "employeeId": 847, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10094, "employeeId": 847, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10285, "employeeId": 847, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10402, "employeeId": 847, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10576, "employeeId": 847, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11120, "employeeId": 847, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11302, "employeeId": 847, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11542, "employeeId": 847, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15967, "employeeId": 847, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17006, "employeeId": 847, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17367, "employeeId": 847, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3125, "employeeId": 861, "customDate": "2021-06-09", "customAmount": "60000.00 USD", "customBonusReason": "Sign On", "customComment": "One-time signing bonus in the amount of $60,000 (USD) as soon as practicable following the Start Date, and in no event more than 30 days thereafter on the first payroll date following the Start Date.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11245, "employeeId": 867, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4716, "employeeId": 870, "customDate": "2022-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5126, "employeeId": 870, "customDate": "2022-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5762, "employeeId": 870, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6817, "employeeId": 870, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8160, "employeeId": 870, "customDate": "2023-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8161, "employeeId": 870, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8275, "employeeId": 870, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9242, "employeeId": 870, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10115, "employeeId": 870, "customDate": "2023-06-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10389, "employeeId": 870, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10519, "employeeId": 870, "customDate": "2023-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11111, "employeeId": 870, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16972, "employeeId": 870, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5014, "employeeId": 871, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5115, "employeeId": 883, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5252, "employeeId": 883, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5436, "employeeId": 883, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5611, "employeeId": 883, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5757, "employeeId": 883, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5887, "employeeId": 883, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6801, "employeeId": 883, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7691, "employeeId": 883, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8221, "employeeId": 883, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8268, "employeeId": 883, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8408, "employeeId": 883, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9153, "employeeId": 883, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9998, "employeeId": 883, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10105, "employeeId": 883, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10296, "employeeId": 883, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10413, "employeeId": 883, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10560, "employeeId": 883, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11135, "employeeId": 883, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11312, "employeeId": 883, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11534, "employeeId": 883, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15979, "employeeId": 883, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16999, "employeeId": 883, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17379, "employeeId": 883, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4713, "employeeId": 884, "customDate": "2022-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5581, "employeeId": 884, "customDate": "2022-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5761, "employeeId": 884, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5894, "employeeId": 884, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8163, "employeeId": 884, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8277, "employeeId": 884, "customDate": "2023-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8349, "employeeId": 884, "customDate": "2023-03-25", "customAmount": "350.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Global Services Award Spot Bonus February 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8368, "employeeId": 884, "customDate": "2023-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9240, "employeeId": 884, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10113, "employeeId": 884, "customDate": "2023-06-25", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10391, "employeeId": 884, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10394, "employeeId": 884, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10520, "employeeId": 884, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11110, "employeeId": 884, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11280, "employeeId": 884, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11527, "employeeId": 884, "customDate": "2023-12-22", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15911, "employeeId": 884, "customDate": "2024-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16974, "employeeId": 884, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9204, "employeeId": 888, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5244, "employeeId": 893, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5603, "employeeId": 893, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5748, "employeeId": 893, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5849, "employeeId": 893, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June. Late payout (October)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5880, "employeeId": 893, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6794, "employeeId": 893, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7684, "employeeId": 893, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8214, "employeeId": 893, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8261, "employeeId": 893, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8401, "employeeId": 893, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9147, "employeeId": 893, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9992, "employeeId": 893, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10100, "employeeId": 893, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10291, "employeeId": 893, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10408, "employeeId": 893, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10574, "employeeId": 893, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11116, "employeeId": 893, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11300, "employeeId": 893, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11538, "employeeId": 893, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15973, "employeeId": 893, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17002, "employeeId": 893, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17373, "employeeId": 893, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9205, "employeeId": 901, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5028, "employeeId": 904, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4775, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for Feb 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4776, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for Jan 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4905, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for March 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5129, "employeeId": 929, "customDate": "2022-05-25", "customAmount": "300.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot award for Support March 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5130, "employeeId": 929, "customDate": "2022-05-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5262, "employeeId": 929, "customDate": "2022-06-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5451, "employeeId": 929, "customDate": "2022-07-25", "customAmount": "3700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5707, "employeeId": 929, "customDate": "2022-08-25", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5735, "employeeId": 929, "customDate": "2022-09-25", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Aug 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5892, "employeeId": 929, "customDate": "2022-10-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Sep 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6821, "employeeId": 929, "customDate": "2022-11-25", "customAmount": "1600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Oct 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7695, "employeeId": 929, "customDate": "2022-12-25", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Nov 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8182, "employeeId": 929, "customDate": "2023-01-25", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Dec 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8273, "employeeId": 929, "customDate": "2023-02-25", "customAmount": "1800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8353, "employeeId": 929, "customDate": "2023-03-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9161, "employeeId": 929, "customDate": "2023-04-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9237, "employeeId": 929, "customDate": "2023-05-25", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10110, "employeeId": 929, "customDate": "2023-06-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10236, "employeeId": 929, "customDate": "2023-07-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10383, "employeeId": 929, "customDate": "2023-08-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10515, "employeeId": 929, "customDate": "2023-09-25", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11055, "employeeId": 929, "customDate": "2023-10-25", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11276, "employeeId": 929, "customDate": "2023-11-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15913, "employeeId": 929, "customDate": "2024-01-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16954, "employeeId": 929, "customDate": "2024-02-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5078, "employeeId": 938, "customDate": "2022-03-16", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5088, "employeeId": 938, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5526, "employeeId": 938, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5764, "employeeId": 938, "customDate": "2022-08-27", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6808, "employeeId": 938, "customDate": "2022-11-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7699, "employeeId": 938, "customDate": "2022-12-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8176, "employeeId": 938, "customDate": "2023-01-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8285, "employeeId": 938, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8360, "employeeId": 938, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9128, "employeeId": 938, "customDate": "2023-04-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9227, "employeeId": 938, "customDate": "2023-05-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10140, "employeeId": 938, "customDate": "2023-06-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10216, "employeeId": 938, "customDate": "2023-06-28", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10423, "employeeId": 938, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10541, "employeeId": 938, "customDate": "2023-09-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11095, "employeeId": 938, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11268, "employeeId": 938, "customDate": "2023-11-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11572, "employeeId": 938, "customDate": "2023-12-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15925, "employeeId": 938, "customDate": "2024-01-03", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17252, "employeeId": 938, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5749, "employeeId": 944, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5881, "employeeId": 944, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6795, "employeeId": 944, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7685, "employeeId": 944, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8215, "employeeId": 944, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8262, "employeeId": 944, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8402, "employeeId": 944, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9148, "employeeId": 944, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9993, "employeeId": 944, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10101, "employeeId": 944, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10292, "employeeId": 944, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10409, "employeeId": 944, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10573, "employeeId": 944, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11115, "employeeId": 944, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11299, "employeeId": 944, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11537, "employeeId": 944, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15974, "employeeId": 944, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17001, "employeeId": 944, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17374, "employeeId": 944, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5076, "employeeId": 955, "customDate": "2022-03-16", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5513, "employeeId": 955, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5529, "employeeId": 955, "customDate": "2022-06-02", "customAmount": "1125.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5583, "employeeId": 955, "customDate": "2022-08-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5804, "employeeId": 955, "customDate": "2022-09-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8284, "employeeId": 955, "customDate": "2023-02-06", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8365, "employeeId": 955, "customDate": "2023-03-03", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9165, "employeeId": 955, "customDate": "2023-04-06", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9236, "employeeId": 955, "customDate": "2023-05-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10226, "employeeId": 955, "customDate": "2023-07-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10432, "employeeId": 955, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10539, "employeeId": 955, "customDate": "2023-09-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11085, "employeeId": 955, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11251, "employeeId": 955, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11580, "employeeId": 955, "customDate": "2023-12-05", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "November 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15916, "employeeId": 955, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16837, "employeeId": 955, "customDate": "2024-02-02", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17250, "employeeId": 955, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10553, "employeeId": 961, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11129, "employeeId": 961, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11307, "employeeId": 961, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11529, "employeeId": 961, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15976, "employeeId": 961, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16994, "employeeId": 961, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17377, "employeeId": 961, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8246, "employeeId": 963, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9210, "employeeId": 963, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9208, "employeeId": 977, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11250, "employeeId": 977, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5075, "employeeId": 983, "customDate": "2022-03-16", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5514, "employeeId": 983, "customDate": "2022-07-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5528, "employeeId": 983, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5584, "employeeId": 983, "customDate": "2022-08-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5803, "employeeId": 983, "customDate": "2022-09-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7706, "employeeId": 983, "customDate": "2022-12-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8283, "employeeId": 983, "customDate": "2023-02-06", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8364, "employeeId": 983, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9166, "employeeId": 983, "customDate": "2023-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9235, "employeeId": 983, "customDate": "2023-05-05", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10143, "employeeId": 983, "customDate": "2023-06-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10227, "employeeId": 983, "customDate": "2023-07-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10540, "employeeId": 983, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11086, "employeeId": 983, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11270, "employeeId": 983, "customDate": "2023-11-01", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11581, "employeeId": 983, "customDate": "2023-12-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15917, "employeeId": 983, "customDate": "2024-01-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "December on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16838, "employeeId": 983, "customDate": "2024-02-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17251, "employeeId": 983, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11236, "employeeId": 985, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8239, "employeeId": 986, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Star Global Services Award Q4 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5535, "employeeId": 1000, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5537, "employeeId": 1016, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3881, "employeeId": 1025, "customDate": "2022-01-04", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3896, "employeeId": 1040, "customDate": "2022-01-04", "customAmount": "30000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11246, "employeeId": 1041, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4059, "employeeId": 1044, "customDate": "2022-01-10", "customAmount": "25000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15962, "employeeId": 1048, "customDate": "2024-01-15", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5890, "employeeId": 1051, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6803, "employeeId": 1051, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7693, "employeeId": 1051, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8223, "employeeId": 1051, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8270, "employeeId": 1051, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8409, "employeeId": 1051, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9155, "employeeId": 1051, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10000, "employeeId": 1051, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10107, "employeeId": 1051, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10298, "employeeId": 1051, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10415, "employeeId": 1051, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10559, "employeeId": 1051, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11133, "employeeId": 1051, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11310, "employeeId": 1051, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11532, "employeeId": 1051, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15981, "employeeId": 1051, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16996, "employeeId": 1051, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17381, "employeeId": 1051, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11239, "employeeId": 1066, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8238, "employeeId": 1075, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Star Global Services Award Q4 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5532, "employeeId": 1076, "customDate": "2022-06-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5534, "employeeId": 1076, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5586, "employeeId": 1076, "customDate": "2022-08-04", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5768, "employeeId": 1076, "customDate": "2022-09-06", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8281, "employeeId": 1076, "customDate": "2023-02-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8357, "employeeId": 1076, "customDate": "2023-03-02", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10137, "employeeId": 1076, "customDate": "2023-06-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10228, "employeeId": 1076, "customDate": "2023-07-03", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10430, "employeeId": 1076, "customDate": "2023-08-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10535, "employeeId": 1076, "customDate": "2023-09-05", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11087, "employeeId": 1076, "customDate": "2023-10-02", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11274, "employeeId": 1076, "customDate": "2023-11-01", "customAmount": "400.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11578, "employeeId": 1076, "customDate": "2023-12-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15918, "employeeId": 1076, "customDate": "2024-01-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16842, "employeeId": 1076, "customDate": "2024-02-01", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17257, "employeeId": 1076, "customDate": "2024-03-01", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11205, "employeeId": 1084, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11238, "employeeId": 1085, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11247, "employeeId": 1090, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11198, "employeeId": 1092, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11199, "employeeId": 1092, "customDate": "2024-01-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11237, "employeeId": 1099, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5770, "employeeId": 1102, "customDate": "2022-09-06", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6812, "employeeId": 1102, "customDate": "2022-11-04", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7704, "employeeId": 1102, "customDate": "2022-12-07", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8180, "employeeId": 1102, "customDate": "2023-01-05", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8279, "employeeId": 1102, "customDate": "2023-02-06", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8355, "employeeId": 1102, "customDate": "2023-03-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9134, "employeeId": 1102, "customDate": "2023-04-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9232, "employeeId": 1102, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10135, "employeeId": 1102, "customDate": "2023-06-06", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10231, "employeeId": 1102, "customDate": "2023-07-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10428, "employeeId": 1102, "customDate": "2023-08-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10538, "employeeId": 1102, "customDate": "2023-09-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11090, "employeeId": 1102, "customDate": "2023-10-02", "customAmount": "900.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11273, "employeeId": 1102, "customDate": "2023-11-01", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11576, "employeeId": 1102, "customDate": "2023-12-05", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15922, "employeeId": 1102, "customDate": "2024-01-03", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16840, "employeeId": 1102, "customDate": "2024-02-02", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17247, "employeeId": 1102, "customDate": "2024-03-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11240, "employeeId": 1114, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7696, "employeeId": 1122, "customDate": "2022-12-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8183, "employeeId": 1122, "customDate": "2023-01-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8274, "employeeId": 1122, "customDate": "2023-02-25", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8354, "employeeId": 1122, "customDate": "2023-03-25", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9162, "employeeId": 1122, "customDate": "2023-04-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9239, "employeeId": 1122, "customDate": "2023-05-25", "customAmount": "1900.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10112, "employeeId": 1122, "customDate": "2023-06-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10238, "employeeId": 1122, "customDate": "2023-07-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10385, "employeeId": 1122, "customDate": "2023-08-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10517, "employeeId": 1122, "customDate": "2023-09-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11053, "employeeId": 1122, "customDate": "2023-10-25", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11278, "employeeId": 1122, "customDate": "2023-11-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15915, "employeeId": 1122, "customDate": "2024-01-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16953, "employeeId": 1122, "customDate": "2024-02-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17345, "employeeId": 1122, "customDate": "2024-03-25", "customAmount": "800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8145, "employeeId": 1124, "customDate": "2022-12-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Nov 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8282, "employeeId": 1124, "customDate": "2023-02-06", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8358, "employeeId": 1124, "customDate": "2023-03-02", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9164, "employeeId": 1124, "customDate": "2023-04-06", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9234, "employeeId": 1124, "customDate": "2023-05-05", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10138, "employeeId": 1124, "customDate": "2023-06-06", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10229, "employeeId": 1124, "customDate": "2023-07-03", "customAmount": "800.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10431, "employeeId": 1124, "customDate": "2023-08-07", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10536, "employeeId": 1124, "customDate": "2023-09-05", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11088, "employeeId": 1124, "customDate": "2023-10-02", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11275, "employeeId": 1124, "customDate": "2023-11-01", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11579, "employeeId": 1124, "customDate": "2023-12-05", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15919, "employeeId": 1124, "customDate": "2024-01-03", "customAmount": "3900.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16843, "employeeId": 1124, "customDate": "2024-02-01", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17256, "employeeId": 1124, "customDate": "2024-03-01", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10390, "employeeId": 1138, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11109, "employeeId": 1138, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11281, "employeeId": 1138, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11526, "employeeId": 1138, "customDate": "2023-12-22", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15910, "employeeId": 1138, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17342, "employeeId": 1138, "customDate": "2024-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5907, "employeeId": 1143, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5906, "employeeId": 1147, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5123, "employeeId": 1151, "customDate": "2022-06-25", "customAmount": "125.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11267, "employeeId": 1156, "customDate": "2023-11-01", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11573, "employeeId": 1156, "customDate": "2023-12-05", "customAmount": "375.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16844, "employeeId": 1156, "customDate": "2024-02-01", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17254, "employeeId": 1156, "customDate": "2024-03-01", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9124, "employeeId": 1157, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q123 Global Services Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11226, "employeeId": 1176, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8147, "employeeId": 1209, "customDate": "2022-12-22", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9221, "employeeId": 1209, "customDate": "2023-05-15", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5377, "employeeId": 1219, "customDate": "2022-07-05", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10433, "employeeId": 1228, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5418, "employeeId": 1230, "customDate": "2022-06-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8411, "employeeId": 1252, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9143, "employeeId": 1252, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9988, "employeeId": 1252, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10096, "employeeId": 1252, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10287, "employeeId": 1252, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10404, "employeeId": 1252, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10575, "employeeId": 1252, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11117, "employeeId": 1252, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11301, "employeeId": 1252, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11539, "employeeId": 1252, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15969, "employeeId": 1252, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17003, "employeeId": 1252, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17369, "employeeId": 1252, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11225, "employeeId": 1272, "customDate": "2023-10-31", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9198, "employeeId": 1274, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5445, "employeeId": 1280, "customDate": "2022-07-05", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11248, "employeeId": 1293, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9157, "employeeId": 1302, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10002, "employeeId": 1302, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10109, "employeeId": 1302, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10300, "employeeId": 1302, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10417, "employeeId": 1302, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10569, "employeeId": 1302, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11137, "employeeId": 1302, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11314, "employeeId": 1302, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11536, "employeeId": 1302, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15983, "employeeId": 1302, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16993, "employeeId": 1302, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17383, "employeeId": 1302, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9212, "employeeId": 1305, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9123, "employeeId": 1306, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q123 Global Services Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11230, "employeeId": 1308, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11234, "employeeId": 1313, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9238, "employeeId": 1320, "customDate": "2023-05-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10111, "employeeId": 1320, "customDate": "2023-06-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10237, "employeeId": 1320, "customDate": "2023-07-25", "customAmount": "1600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10384, "employeeId": 1320, "customDate": "2023-08-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10516, "employeeId": 1320, "customDate": "2023-09-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11054, "employeeId": 1320, "customDate": "2023-10-25", "customAmount": "3350.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11277, "employeeId": 1320, "customDate": "2023-11-25", "customAmount": "950.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15914, "employeeId": 1320, "customDate": "2024-01-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17344, "employeeId": 1320, "customDate": "2024-03-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5705, "employeeId": 1329, "customDate": "2022-09-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5807, "employeeId": 1343, "customDate": "2022-10-17", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11231, "employeeId": 1344, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10568, "employeeId": 1355, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11134, "employeeId": 1355, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11311, "employeeId": 1355, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11533, "employeeId": 1355, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15982, "employeeId": 1355, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16998, "employeeId": 1355, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17382, "employeeId": 1355, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6715, "employeeId": 1362, "customDate": "2022-10-31", "customAmount": "15000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9207, "employeeId": 1363, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16992, "employeeId": 1374, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17376, "employeeId": 1374, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6832, "employeeId": 1375, "customDate": "2022-11-21", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9222, "employeeId": 1392, "customDate": "2023-05-15", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7740, "employeeId": 1394, "customDate": "2023-01-23", "customAmount": "150000.00 USD", "customBonusReason": "Sign On", "customComment": "He will receive $75,000 on his first paycheck with a 12 month claw back and $75,000 on his 1 year anniversary with a 12 month clawback", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8329, "employeeId": 1406, "customDate": "2023-02-22", "customAmount": "5000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11228, "employeeId": 1497, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10366, "employeeId": 1522, "customDate": "2023-08-07", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11524, "employeeId": 1624, "customDate": "2023-12-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11562, "employeeId": 1627, "customDate": "2024-01-08", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16040, "employeeId": 1656, "customDate": "2024-02-26", "customAmount": "15000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17276, "employeeId": 1699, "customDate": "2024-04-01", "customAmount": "50000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 213, "employeeId": 114, "customDate1": "2019-09-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11192, "employeeId": 114, "customDate1": "2023-10-23", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11286, "employeeId": 114, "customDate1": "2023-11-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3653, "employeeId": 116, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4446, "employeeId": 116, "customDate1": "2022-01-01", "customAmount1": "92000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11185, "employeeId": 116, "customDate1": "2023-10-23", "customAmount1": "92000.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3554, "employeeId": 117, "customDate1": "2021-03-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 147, "employeeId": 118, "customDate1": "2019-05-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 148, "employeeId": 118, "customDate1": "2018-04-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 149, "employeeId": 119, "customDate1": "2019-01-01", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 150, "employeeId": 119, "customDate1": "2018-01-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 151, "employeeId": 119, "customDate1": "2016-04-01", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 152, "employeeId": 119, "customDate1": "2012-02-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3010, "employeeId": 119, "customDate1": "2021-04-01", "customAmount1": "220000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 153, "employeeId": 120, "customDate1": "2016-01-01", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 154, "employeeId": 120, "customDate1": "2011-04-04", "customAmount1": "175000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1649, "employeeId": 120, "customDate1": "2020-01-01", "customAmount1": "250000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Per Mike Asher 3/1/2020 Slack message, the Comp Committee approved a $50K increase to Lars 2020 variable plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1937, "employeeId": 120, "customDate1": "2020-05-01", "customAmount1": "1892727.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Transferred from Neo4j Inc to Neo4j AB", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5090, "employeeId": 120, "customDate1": "2022-01-01", "customAmount1": "2500000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5185, "employeeId": 121, "customDate1": "2022-01-01", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Prev variable eff 1/1/22 was $20,000", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11175, "employeeId": 121, "customDate1": null, "customAmount1": null, "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11188, "employeeId": 121, "customDate1": "2023-10-23", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 155, "employeeId": 125, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 156, "employeeId": 125, "customDate1": "2017-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 474, "employeeId": 125, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 50, "employeeId": 126, "customDate1": "2018-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 51, "employeeId": 126, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 52, "employeeId": 126, "customDate1": "2016-04-01", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 53, "employeeId": 126, "customDate1": "2013-11-04", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2748, "employeeId": 126, "customDate1": "2021-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4423, "employeeId": 126, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9023, "employeeId": 126, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 157, "employeeId": 127, "customDate1": "2019-01-01", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 158, "employeeId": 127, "customDate1": "2018-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 159, "employeeId": 127, "customDate1": "2017-07-01", "customAmount1": "22500 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion (increase in base, decrease in variable)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 160, "employeeId": 127, "customDate1": "2017-01-01", "customAmount1": "37500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 161, "employeeId": 127, "customDate1": "2014-02-25", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3148, "employeeId": 127, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3210, "employeeId": 127, "customDate1": "2021-07-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase to Variable Eff. 7/1", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 162, "employeeId": 128, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 163, "employeeId": 128, "customDate1": "2014-03-10", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 453, "employeeId": 128, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 54, "employeeId": 129, "customDate1": "2019-07-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 55, "employeeId": 129, "customDate1": "2017-05-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 56, "employeeId": 129, "customDate1": "2014-10-25", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2728, "employeeId": 129, "customDate1": "2021-01-01", "customAmount1": "24000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 57, "employeeId": 130, "customDate1": "2019-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 58, "employeeId": 130, "customDate1": "2016-01-01", "customAmount1": "31000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 59, "employeeId": 130, "customDate1": "2014-08-18", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3146, "employeeId": 130, "customDate1": "2021-06-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3218, "employeeId": 130, "customDate1": "2021-07-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3596, "employeeId": 131, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 164, "employeeId": 132, "customDate1": "2018-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 165, "employeeId": 132, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 166, "employeeId": 132, "customDate1": "2014-12-01", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4429, "employeeId": 132, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 167, "employeeId": 133, "customDate1": "2014-12-08", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 168, "employeeId": 134, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 169, "employeeId": 134, "customDate1": "2017-03-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 170, "employeeId": 134, "customDate1": "2014-12-15", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4405, "employeeId": 134, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 60, "employeeId": 135, "customDate1": "2019-01-01", "customAmount1": "23000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 61, "employeeId": 135, "customDate1": "2015-04-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 465, "employeeId": 135, "customDate1": "2020-01-01", "customAmount1": "43000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2789, "employeeId": 135, "customDate1": "2021-01-01", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4393, "employeeId": 135, "customDate1": "2022-01-01", "customAmount1": "47840 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8168, "employeeId": 135, "customDate1": "2023-01-01", "customAmount1": "47840.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9052, "employeeId": 135, "customDate1": "2023-01-01", "customAmount1": "48219 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 172, "employeeId": 138, "customDate1": "2016-04-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 173, "employeeId": 138, "customDate1": "2015-05-04", "customAmount1": "12000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1620, "employeeId": 138, "customDate1": "2017-02-16", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Title & Comp Change to align to new team transfer", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2171, "employeeId": 138, "customDate1": "2020-02-16", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Title & Comp Change to align to new team transfer to Bus Dev", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 174, "employeeId": 139, "customDate1": "2019-07-01", "customAmount1": "9200 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 62, "employeeId": 141, "customDate1": "2019-01-01", "customAmount1": "27500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 63, "employeeId": 141, "customDate1": "2015-06-29", "customAmount1": "22500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 466, "employeeId": 141, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2792, "employeeId": 141, "customDate1": "2021-01-01", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4385, "employeeId": 141, "customDate1": "2022-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9053, "employeeId": 141, "customDate1": "2023-01-01", "customAmount1": "49145.37 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 64, "employeeId": 142, "customDate1": "2019-04-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 455, "employeeId": 142, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2752, "employeeId": 142, "customDate1": "2021-01-01", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 65, "employeeId": 143, "customDate1": "2018-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5680, "employeeId": 143, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 175, "employeeId": 145, "customDate1": "2018-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 176, "employeeId": 145, "customDate1": "2015-10-05", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1599, "employeeId": 145, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 66, "employeeId": 146, "customDate1": "2019-01-01", "customAmount1": "33000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 67, "employeeId": 146, "customDate1": "2015-10-05", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 456, "employeeId": 146, "customDate1": "2020-01-01", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4373, "employeeId": 146, "customDate1": "2022-01-01", "customAmount1": "37440 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 68, "employeeId": 147, "customDate1": "2019-01-01", "customAmount1": "19000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 69, "employeeId": 147, "customDate1": "2017-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 70, "employeeId": 147, "customDate1": "2015-11-02", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 467, "employeeId": 147, "customDate1": "2020-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2741, "employeeId": 147, "customDate1": "2021-01-01", "customAmount1": "22000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4378, "employeeId": 147, "customDate1": "2022-01-01", "customAmount1": "23100 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9037, "employeeId": 147, "customDate1": "2023-01-01", "customAmount1": "23850 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 177, "employeeId": 148, "customDate1": "2019-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 71, "employeeId": 150, "customDate1": "2019-01-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 72, "employeeId": 150, "customDate1": "2018-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 73, "employeeId": 150, "customDate1": "2017-07-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 74, "employeeId": 150, "customDate1": "2016-05-09", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1598, "employeeId": 150, "customDate1": "2020-01-01", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2977, "employeeId": 150, "customDate1": "2021-01-01", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Retro adjustment (1/1/21) for Promotion on 4/1/21", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4415, "employeeId": 150, "customDate1": "2022-01-01", "customAmount1": "225000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9035, "employeeId": 150, "customDate1": "2023-01-01", "customAmount1": "230000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 75, "employeeId": 152, "customDate1": "2019-04-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 76, "employeeId": 152, "customDate1": "2019-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 77, "employeeId": 152, "customDate1": "2018-01-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 78, "employeeId": 152, "customDate1": "2016-10-05", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4418, "employeeId": 152, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 79, "employeeId": 153, "customDate1": "2019-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 80, "employeeId": 153, "customDate1": "2016-11-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4419, "employeeId": 153, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9027, "employeeId": 153, "customDate1": "2023-01-01", "customAmount1": "172500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 178, "employeeId": 154, "customDate1": "2019-01-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 179, "employeeId": 154, "customDate1": "2018-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2733, "employeeId": 154, "customDate1": "2021-01-01", "customAmount1": "28000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 180, "employeeId": 155, "customDate1": "2016-12-19", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3130, "employeeId": 155, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4352, "employeeId": 155, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 181, "employeeId": 156, "customDate1": "2019-01-01", "customAmount1": "85000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 182, "employeeId": 156, "customDate1": "2017-01-03", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4410, "employeeId": 156, "customDate1": "2022-01-01", "customAmount1": "88230 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 81, "employeeId": 157, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 82, "employeeId": 157, "customDate1": "2017-01-11", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2408, "employeeId": 157, "customDate1": "2020-10-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6710, "employeeId": 157, "customDate1": "2022-10-17", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 183, "employeeId": 158, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 184, "employeeId": 158, "customDate1": "2017-01-17", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3143, "employeeId": 158, "customDate1": "2021-06-07", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4357, "employeeId": 158, "customDate1": "2022-01-01", "customAmount1": "44000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 185, "employeeId": 159, "customDate1": "2019-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 186, "employeeId": 159, "customDate1": "2017-01-25", "customAmount1": "65000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 463, "employeeId": 159, "customDate1": "2020-01-01", "customAmount1": "77000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2793, "employeeId": 159, "customDate1": "2021-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3267, "employeeId": 159, "customDate1": "2021-07-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4430, "employeeId": 159, "customDate1": "2022-01-01", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9013, "employeeId": 159, "customDate1": "2023-01-01", "customAmount1": "110000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16045, "employeeId": 159, "customDate1": "2024-01-01", "customAmount1": "130000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 83, "employeeId": 160, "customDate1": "2017-02-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1604, "employeeId": 160, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4416, "employeeId": 160, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9026, "employeeId": 160, "customDate1": "2023-01-01", "customAmount1": "170500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 84, "employeeId": 161, "customDate1": "2017-02-06", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 457, "employeeId": 161, "customDate1": "2020-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 85, "employeeId": 162, "customDate1": "2019-07-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2184, "employeeId": 162, "customDate1": "2020-07-01", "customAmount1": "35000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3211, "employeeId": 162, "customDate1": "2017-03-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3264, "employeeId": 162, "customDate1": "2021-07-01", "customAmount1": "41000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 187, "employeeId": 163, "customDate1": "2019-07-01", "customAmount1": "6000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2185, "employeeId": 163, "customDate1": "2020-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2723, "employeeId": 163, "customDate1": "2021-01-01", "customAmount1": "24000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5669, "employeeId": 163, "customDate1": "2021-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 188, "employeeId": 164, "customDate1": "2019-01-01", "customAmount1": "8000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 189, "employeeId": 164, "customDate1": "2017-05-01", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 468, "employeeId": 164, "customDate1": "2020-01-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2740, "employeeId": 164, "customDate1": "2021-01-01", "customAmount1": "12000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4377, "employeeId": 164, "customDate1": "2022-01-01", "customAmount1": "13200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9020, "employeeId": 164, "customDate1": "2023-01-01", "customAmount1": "15600 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 86, "employeeId": 165, "customDate1": "2019-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 87, "employeeId": 165, "customDate1": "2017-05-15", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2722, "employeeId": 165, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2882, "employeeId": 165, "customDate1": "2021-03-01", "customAmount1": "17000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5556, "employeeId": 165, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 190, "employeeId": 166, "customDate1": "2018-06-04", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 191, "employeeId": 167, "customDate1": "2019-06-01", "customAmount1": "90000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 192, "employeeId": 167, "customDate1": "2017-06-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2847, "employeeId": 167, "customDate1": "2021-01-01", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 193, "employeeId": 168, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 194, "employeeId": 168, "customDate1": "2018-06-25", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 88, "employeeId": 169, "customDate1": "2017-07-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1603, "employeeId": 169, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 89, "employeeId": 170, "customDate1": "2017-07-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3160, "employeeId": 170, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 90, "employeeId": 171, "customDate1": "2017-07-19", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "new hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 458, "employeeId": 171, "customDate1": "2020-01-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4432, "employeeId": 171, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9015, "employeeId": 171, "customDate1": "2023-01-01", "customAmount1": "141000 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 91, "employeeId": 172, "customDate1": "2017-08-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3145, "employeeId": 172, "customDate1": "2021-06-07", "customAmount1": "150000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4433, "employeeId": 172, "customDate1": "2022-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9028, "employeeId": 172, "customDate1": "2023-01-01", "customAmount1": "174000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 195, "employeeId": 173, "customDate1": "2017-08-24", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3133, "employeeId": 173, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4346, "employeeId": 173, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 196, "employeeId": 174, "customDate1": "2017-08-28", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2734, "employeeId": 174, "customDate1": "2021-01-01", "customAmount1": "32500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4386, "employeeId": 174, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 92, "employeeId": 176, "customDate1": "2019-05-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 93, "employeeId": 176, "customDate1": "2017-09-18", "customAmount1": "32000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1681, "employeeId": 176, "customDate1": "2020-03-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Retention (base, job title, & variable)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9060, "employeeId": 176, "customDate1": "2023-01-01", "customAmount1": "65000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 94, "employeeId": 177, "customDate1": "2017-09-18", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1602, "employeeId": 177, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2754, "employeeId": 177, "customDate1": "2021-01-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4437, "employeeId": 177, "customDate1": "2022-01-01", "customAmount1": "190000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9030, "employeeId": 177, "customDate1": "2023-01-01", "customAmount1": "195000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11283, "employeeId": 177, "customDate1": "2023-11-01", "customAmount1": "220000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 95, "employeeId": 179, "customDate1": "2017-10-23", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 454, "employeeId": 179, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4417, "employeeId": 179, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 96, "employeeId": 180, "customDate1": "2019-01-01", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 97, "employeeId": 180, "customDate1": "2017-10-23", "customAmount1": "55000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3165, "employeeId": 180, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4398, "employeeId": 180, "customDate1": "2022-01-01", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 98, "employeeId": 181, "customDate1": "2017-10-25", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3161, "employeeId": 181, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4397, "employeeId": 181, "customDate1": "2022-01-01", "customAmount1": "90000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 99, "employeeId": 182, "customDate1": "2017-11-06", "customAmount1": "42000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1723, "employeeId": 182, "customDate1": "2020-07-01", "customAmount1": "45000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Merit", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3796, "employeeId": 182, "customDate1": "2021-10-15", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 197, "employeeId": 184, "customDate1": "2017-12-18", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2749, "employeeId": 184, "customDate1": "2021-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3156, "employeeId": 184, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 100, "employeeId": 185, "customDate1": "2017-12-18", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2751, "employeeId": 185, "customDate1": "2021-01-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3154, "employeeId": 185, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 101, "employeeId": 186, "customDate1": "2019-01-01", "customAmount1": "27000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 102, "employeeId": 186, "customDate1": "2018-01-02", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 459, "employeeId": 186, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2790, "employeeId": 186, "customDate1": "2021-01-01", "customAmount1": "32000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4383, "employeeId": 186, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 103, "employeeId": 187, "customDate1": "2019-04-01", "customAmount1": "23000 USD", "customTargetVariableReason": "MBO", "customComment1": "Transfer from consulting engineer to Account Manager", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 104, "employeeId": 187, "customDate1": "2019-01-01", "customAmount1": "18000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 105, "employeeId": 187, "customDate1": "2018-01-08", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4384, "employeeId": 187, "customDate1": "2022-01-01", "customAmount1": "27500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5288, "employeeId": 187, "customDate1": "2022-08-01", "customAmount1": "21000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 198, "employeeId": 188, "customDate1": "2018-01-22", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1597, "employeeId": 188, "customDate1": "2020-01-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 106, "employeeId": 189, "customDate1": "2018-02-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3151, "employeeId": 189, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 199, "employeeId": 190, "customDate1": "2018-02-20", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3222, "employeeId": 190, "customDate1": "2021-07-01", "customAmount1": "225000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion eff. 7/1", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9036, "employeeId": 190, "customDate1": "2023-01-01", "customAmount1": "230000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 107, "employeeId": 194, "customDate1": "2018-02-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "new hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 464, "employeeId": 194, "customDate1": "2020-01-01", "customAmount1": "39000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3174, "employeeId": 194, "customDate1": "2021-01-01", "customAmount1": "42000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4376, "employeeId": 194, "customDate1": "2022-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9055, "employeeId": 194, "customDate1": "2023-01-01", "customAmount1": "55000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 200, "employeeId": 195, "customDate1": "2018-04-09", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5020, "employeeId": 195, "customDate1": "2022-01-01", "customAmount1": "175000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Initial comp adjustment 165,000 effective 1/1/22. Additional adjustment approved 4/25 to 175,000 retroactive to 1/1/22.", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9029, "employeeId": 195, "customDate1": "2023-01-01", "customAmount1": "180000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 108, "employeeId": 197, "customDate1": "2018-04-30", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2720, "employeeId": 197, "customDate1": "2021-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3785, "employeeId": 197, "customDate1": "2021-10-01", "customAmount1": "13000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Base/Variable Adjustment (OTE remaining the same)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4403, "employeeId": 197, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 109, "employeeId": 198, "customDate1": "2018-05-07", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3166, "employeeId": 198, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3512, "employeeId": 198, "customDate1": "2021-10-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 110, "employeeId": 199, "customDate1": "2019-07-01", "customAmount1": "7000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 111, "employeeId": 199, "customDate1": "2018-05-16", "customAmount1": "6300 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2725, "employeeId": 199, "customDate1": "2021-01-01", "customAmount1": "10700.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4356, "employeeId": 199, "customDate1": "2022-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 201, "employeeId": 200, "customDate1": "2018-05-21", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2721, "employeeId": 200, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4355, "employeeId": 200, "customDate1": "2022-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 202, "employeeId": 201, "customDate1": "2018-06-18", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 112, "employeeId": 202, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 113, "employeeId": 202, "customDate1": "2018-06-25", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 470, "employeeId": 202, "customDate1": "2020-01-01", "customAmount1": "23000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2732, "employeeId": 202, "customDate1": "2021-01-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4362, "employeeId": 202, "customDate1": "2022-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10311, "employeeId": 202, "customDate1": "2023-08-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 203, "employeeId": 204, "customDate1": "2018-07-09", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 114, "employeeId": 205, "customDate1": "2018-07-16", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5687, "employeeId": 205, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 115, "employeeId": 207, "customDate1": "2018-07-23", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 469, "employeeId": 207, "customDate1": "2020-01-01", "customAmount1": "42800.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4381, "employeeId": 207, "customDate1": "2022-01-01", "customAmount1": "45000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 204, "employeeId": 208, "customDate1": "2018-07-30", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4944, "employeeId": 208, "customDate1": "2022-01-01", "customAmount1": "110000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10224, "employeeId": 208, "customDate1": "2023-01-01", "customAmount1": "113190.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11178, "employeeId": 208, "customDate1": "2023-10-23", "customAmount1": "113190.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 116, "employeeId": 210, "customDate1": "2018-09-10", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 471, "employeeId": 210, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2801, "employeeId": 210, "customDate1": "2021-01-01", "customAmount1": "19800.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4367, "employeeId": 210, "customDate1": "2022-01-01", "customAmount1": "20493 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 117, "employeeId": 211, "customDate1": "2018-09-20", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 118, "employeeId": 212, "customDate1": "2018-10-15", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 460, "employeeId": 212, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2737, "employeeId": 212, "customDate1": "2021-01-01", "customAmount1": "20700.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4414, "employeeId": 212, "customDate1": "2022-01-01", "customAmount1": "21735 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 119, "employeeId": 213, "customDate1": "2018-10-29", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2750, "employeeId": 213, "customDate1": "2021-01-01", "customAmount1": "110000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3223, "employeeId": 213, "customDate1": "2021-07-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3962, "employeeId": 213, "customDate1": "2021-11-01", "customAmount1": "137500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9016, "employeeId": 213, "customDate1": "2023-01-01", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 120, "employeeId": 214, "customDate1": "2018-11-12", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1601, "employeeId": 214, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2742, "employeeId": 214, "customDate1": "2021-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5019, "employeeId": 214, "customDate1": "2022-01-01", "customAmount1": "162500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Initial comp adjustment 152,500 effective 1/1/22. Additional adjustment approved 4/25 to 162,500 retroactive to 1/1/22.", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 205, "employeeId": 215, "customDate1": "2018-11-27", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 206, "employeeId": 216, "customDate1": "2018-12-03", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3152, "employeeId": 216, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 121, "employeeId": 217, "customDate1": "2019-01-07", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 472, "employeeId": 217, "customDate1": "2020-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2731, "employeeId": 217, "customDate1": "2021-01-01", "customAmount1": "22000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4361, "employeeId": 217, "customDate1": "2022-01-01", "customAmount1": "22880 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 207, "employeeId": 218, "customDate1": "2019-01-07", "customAmount1": "63000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 122, "employeeId": 219, "customDate1": "2019-01-11", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 461, "employeeId": 219, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2794, "employeeId": 219, "customDate1": "2021-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4366, "employeeId": 219, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 208, "employeeId": 220, "customDate1": "2019-01-14", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 123, "employeeId": 221, "customDate1": "2019-01-14", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 473, "employeeId": 221, "customDate1": "2020-01-01", "customAmount1": "29000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2745, "employeeId": 221, "customDate1": "2021-01-01", "customAmount1": "32500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 124, "employeeId": 223, "customDate1": "2019-01-28", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 125, "employeeId": 225, "customDate1": "2019-02-04", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1600, "employeeId": 225, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2798, "employeeId": 225, "customDate1": "2021-01-25", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4422, "employeeId": 225, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 126, "employeeId": 227, "customDate1": "2019-03-18", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2787, "employeeId": 227, "customDate1": "2021-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4391, "employeeId": 227, "customDate1": "2022-01-01", "customAmount1": "19800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9032, "employeeId": 227, "customDate1": "2023-01-01", "customAmount1": "20500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 127, "employeeId": 228, "customDate1": "2019-03-25", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3155, "employeeId": 228, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4401, "employeeId": 228, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 128, "employeeId": 229, "customDate1": "2019-04-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 462, "employeeId": 229, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4372, "employeeId": 229, "customDate1": "2022-01-01", "customAmount1": "20700 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 129, "employeeId": 230, "customDate1": "2019-04-08", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 130, "employeeId": 232, "customDate1": "2019-04-16", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3168, "employeeId": 232, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4399, "employeeId": 232, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 131, "employeeId": 233, "customDate1": "2019-04-22", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2744, "employeeId": 233, "customDate1": "2021-01-01", "customAmount1": "17500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4364, "employeeId": 233, "customDate1": "2022-01-01", "customAmount1": "18200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 132, "employeeId": 234, "customDate1": "2019-04-29", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3162, "employeeId": 234, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4395, "employeeId": 234, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 133, "employeeId": 235, "customDate1": "2019-04-29", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2803, "employeeId": 235, "customDate1": "2021-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4370, "employeeId": 235, "customDate1": "2022-01-01", "customAmount1": "20160 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 209, "employeeId": 236, "customDate1": "2019-04-29", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2172, "employeeId": 236, "customDate1": "2020-07-01", "customAmount1": "34000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2719, "employeeId": 236, "customDate1": "2021-01-01", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3294, "employeeId": 236, "customDate1": "2021-07-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 210, "employeeId": 237, "customDate1": "2019-05-01", "customAmount1": "64500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2783, "employeeId": 237, "customDate1": "2021-01-01", "customAmount1": "72500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 134, "employeeId": 238, "customDate1": "2019-05-20", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 135, "employeeId": 239, "customDate1": "2019-05-20", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 136, "employeeId": 241, "customDate1": "2019-10-04", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2739, "employeeId": 241, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 137, "employeeId": 242, "customDate1": "2019-06-03", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2727, "employeeId": 242, "customDate1": "2021-01-01", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5682, "employeeId": 242, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 138, "employeeId": 243, "customDate1": "2019-06-10", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2738, "employeeId": 243, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4363, "employeeId": 243, "customDate1": "2022-01-01", "customAmount1": "19055 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3213, "employeeId": 245, "customDate1": "2021-07-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 211, "employeeId": 246, "customDate1": "2019-06-24", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 139, "employeeId": 247, "customDate1": "2019-07-22", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2802, "employeeId": 247, "customDate1": "2021-01-01", "customAmount1": "17000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4368, "employeeId": 247, "customDate1": "2022-01-01", "customAmount1": "18360 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 140, "employeeId": 248, "customDate1": "2019-07-22", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 212, "employeeId": 249, "customDate1": "2019-07-29", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2785, "employeeId": 249, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 658, "employeeId": 250, "customDate1": "2020-01-27", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE conversion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4375, "employeeId": 250, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 141, "employeeId": 251, "customDate1": "2019-08-12", "customAmount1": "6000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3219, "employeeId": 251, "customDate1": "2021-07-01", "customAmount1": "8000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 142, "employeeId": 252, "customDate1": "2019-08-19", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2804, "employeeId": 252, "customDate1": "2021-01-01", "customAmount1": "12000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4380, "employeeId": 252, "customDate1": "2022-01-01", "customAmount1": "13200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9017, "employeeId": 252, "customDate1": "2023-01-01", "customAmount1": "14800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 143, "employeeId": 254, "customDate1": "2019-08-28", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 144, "employeeId": 255, "customDate1": "2019-09-03", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2730, "employeeId": 255, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4360, "employeeId": 255, "customDate1": "2022-01-01", "customAmount1": "20720 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 145, "employeeId": 256, "customDate1": "2019-09-30", "customAmount1": "13500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2726, "employeeId": 256, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 146, "employeeId": 257, "customDate1": "2019-10-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2788, "employeeId": 257, "customDate1": "2021-01-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3164, "employeeId": 257, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4400, "employeeId": 257, "customDate1": "2022-01-01", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 214, "employeeId": 258, "customDate1": "2019-10-14", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2743, "employeeId": 258, "customDate1": "2021-01-01", "customAmount1": "8000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3609, "employeeId": 260, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2412, "employeeId": 261, "customDate1": "2020-07-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4948, "employeeId": 261, "customDate1": "2022-01-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No Variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11191, "employeeId": 261, "customDate1": "2023-10-23", "customAmount1": "41000.00 GBP", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11290, "employeeId": 261, "customDate1": "2023-10-01", "customAmount1": "41000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 24, "employeeId": 262, "customDate1": "2018-01-01", "customAmount1": "10000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2687, "employeeId": 262, "customDate1": "2021-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8944, "employeeId": 262, "customDate1": "2023-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2848, "employeeId": 263, "customDate1": "2021-01-01", "customAmount1": "492000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5135, "employeeId": 263, "customDate1": "2022-01-01", "customAmount1": "738400.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10420, "employeeId": 263, "customDate1": "2023-01-01", "customAmount1": "777615.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11182, "employeeId": 263, "customDate1": "2023-10-23", "customAmount1": "777615.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3655, "employeeId": 264, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 20, "employeeId": 265, "customDate1": "2019-01-01", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 383, "employeeId": 265, "customDate1": "2012-07-03", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 384, "employeeId": 265, "customDate1": "2017-01-01", "customAmount1": "69500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 413, "employeeId": 265, "customDate1": "2020-01-01", "customAmount1": "94300.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4477, "employeeId": 265, "customDate1": "2022-01-01", "customAmount1": "110000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6, "employeeId": 266, "customDate1": "2019-01-01", "customAmount1": "18000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 366, "employeeId": 266, "customDate1": "2018-01-01", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 420, "employeeId": 266, "customDate1": "2020-01-01", "customAmount1": "23000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10064, "employeeId": 266, "customDate1": "2021-03-07", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 47, "employeeId": 267, "customDate1": "2018-01-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2437, "employeeId": 267, "customDate1": "2016-01-01", "customAmount1": "129250.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2438, "employeeId": 267, "customDate1": "2012-08-01", "customAmount1": "117500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4483, "employeeId": 267, "customDate1": "2022-01-01", "customAmount1": "170000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3563, "employeeId": 268, "customDate1": "2021-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3754, "employeeId": 269, "customDate1": "2019-01-01", "customAmount1": "0.00 DKK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3753, "employeeId": 273, "customDate1": "2021-01-01", "customAmount1": "0.00 DKK", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4949, "employeeId": 273, "customDate1": "2022-01-01", "customAmount1": "324852.00 DKK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10309, "employeeId": 273, "customDate1": "2023-01-01", "customAmount1": "354738.38 DKK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11190, "employeeId": 273, "customDate1": "2023-10-23", "customAmount1": "354738.38 DKK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 37, "employeeId": 274, "customDate1": "2019-05-01", "customAmount1": "25000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1557, "employeeId": 274, "customDate1": "2017-05-01", "customAmount1": "21000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2591, "employeeId": 274, "customDate1": "2020-01-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2682, "employeeId": 274, "customDate1": "2021-01-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 33, "employeeId": 275, "customDate1": "2016-01-01", "customAmount1": "50000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Paid quarterly based on comp plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12, "employeeId": 276, "customDate1": "2018-01-01", "customAmount1": "100000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 378, "employeeId": 276, "customDate1": "2014-05-19", "customAmount1": "95000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 22, "employeeId": 277, "customDate1": "2014-05-19", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 19, "employeeId": 278, "customDate1": "2016-10-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Paid quarterly.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2683, "employeeId": 278, "customDate1": "2021-01-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3296, "employeeId": 278, "customDate1": "2021-11-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role and salary", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3633, "employeeId": 280, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3687, "employeeId": 281, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3749, "employeeId": 283, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3730, "employeeId": 286, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 48, "employeeId": 287, "customDate1": "2019-01-01", "customAmount1": "28000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 421, "employeeId": 287, "customDate1": "2020-01-01", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1580, "employeeId": 287, "customDate1": "2017-07-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Moved to MBO plan and no long on a comp plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1581, "employeeId": 287, "customDate1": "2017-01-01", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3121, "employeeId": 287, "customDate1": "2021-06-07", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3320, "employeeId": 287, "customDate1": "2021-07-01", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8954, "employeeId": 287, "customDate1": "2023-01-01", "customAmount1": "31110 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8, "employeeId": 288, "customDate1": "2019-07-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 371, "employeeId": 288, "customDate1": "2015-01-01", "customAmount1": "75000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 372, "employeeId": 288, "customDate1": "2017-01-01", "customAmount1": "82500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 373, "employeeId": 288, "customDate1": "2019-01-01", "customAmount1": "85000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2627, "employeeId": 288, "customDate1": "2018-01-01", "customAmount1": "82500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable/base change. Only adding 5K Stock", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 28, "employeeId": 289, "customDate1": "2018-01-01", "customAmount1": "80000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 422, "employeeId": 289, "customDate1": "2020-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 482, "employeeId": 289, "customDate1": "2017-07-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Promotion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 483, "employeeId": 289, "customDate1": "2015-01-01", "customAmount1": "68000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 484, "employeeId": 289, "customDate1": "2017-01-01", "customAmount1": "70340.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Annually paid out in four installments.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3110, "employeeId": 289, "customDate1": "2021-06-07", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3226, "employeeId": 289, "customDate1": "2021-07-01", "customAmount1": "110000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4481, "employeeId": 289, "customDate1": "2022-01-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8949, "employeeId": 289, "customDate1": "2023-01-01", "customAmount1": "146000 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 46, "employeeId": 290, "customDate1": "2018-01-01", "customAmount1": "108000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 414, "employeeId": 290, "customDate1": "2020-01-01", "customAmount1": "118000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1577, "employeeId": 290, "customDate1": "2015-01-07", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3256, "employeeId": 290, "customDate1": "2021-07-01", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4476, "employeeId": 290, "customDate1": "2022-01-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3725, "employeeId": 291, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 385, "employeeId": 292, "customDate1": "2015-05-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 386, "employeeId": 292, "customDate1": "2017-07-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 387, "employeeId": 292, "customDate1": "2018-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1611, "employeeId": 292, "customDate1": "2019-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role and salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3597, "employeeId": 293, "customDate1": "2021-02-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3676, "employeeId": 294, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7, "employeeId": 295, "customDate1": "2017-01-01", "customAmount1": "14500 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 365, "employeeId": 295, "customDate1": "2020-01-01", "customAmount1": "32500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 367, "employeeId": 295, "customDate1": "2015-07-01", "customAmount1": "14000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2639, "employeeId": 295, "customDate1": "2021-01-01", "customAmount1": "66000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Retention", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3099, "employeeId": 295, "customDate1": "2021-06-07", "customAmount1": "66000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4456, "employeeId": 295, "customDate1": "2022-01-01", "customAmount1": "73500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4642, "employeeId": 295, "customDate1": "2022-03-01", "customAmount1": "77500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17, "employeeId": 296, "customDate1": "2016-10-01", "customAmount1": "2500 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2684, "employeeId": 296, "customDate1": "2021-01-01", "customAmount1": "2500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5648, "employeeId": 296, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3698, "employeeId": 297, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3763, "employeeId": 298, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3710, "employeeId": 299, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 27, "employeeId": 300, "customDate1": "2015-10-01", "customAmount1": "720000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 476, "employeeId": 300, "customDate1": "2018-01-01", "customAmount1": "820000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2690, "employeeId": 300, "customDate1": "2021-01-01", "customAmount1": "900000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3212, "employeeId": 300, "customDate1": "2021-07-01", "customAmount1": "990000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4473, "employeeId": 300, "customDate1": "2022-01-01", "customAmount1": "1300000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3649, "employeeId": 301, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3771, "employeeId": 302, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3582, "employeeId": 304, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 26, "employeeId": 305, "customDate1": "2019-01-01", "customAmount1": "13000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 418, "employeeId": 305, "customDate1": "2020-01-01", "customAmount1": "15500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 441, "employeeId": 305, "customDate1": "2016-03-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 442, "employeeId": 305, "customDate1": "2018-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3321, "employeeId": 305, "customDate1": "2021-07-01", "customAmount1": "15500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3713, "employeeId": 307, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 32, "employeeId": 309, "customDate1": "2019-07-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 417, "employeeId": 309, "customDate1": "2020-01-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1372, "employeeId": 309, "customDate1": "2016-10-03", "customAmount1": "120000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3225, "employeeId": 309, "customDate1": "2021-07-01", "customAmount1": "160000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4479, "employeeId": 309, "customDate1": "2022-01-01", "customAmount1": "190000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3719, "employeeId": 310, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3746, "employeeId": 311, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 34, "employeeId": 312, "customDate1": "2016-12-05", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 428, "employeeId": 312, "customDate1": "2020-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2691, "employeeId": 312, "customDate1": "2021-01-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4452, "employeeId": 312, "customDate1": "2022-01-01", "customAmount1": "25000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8984, "employeeId": 312, "customDate1": "2023-01-01", "customAmount1": "26000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3665, "employeeId": 313, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3701, "employeeId": 314, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 423, "employeeId": 315, "customDate1": "2020-01-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3119, "employeeId": 315, "customDate1": "2021-06-07", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3552, "employeeId": 316, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3715, "employeeId": 317, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3703, "employeeId": 318, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3750, "employeeId": 319, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 424, "employeeId": 320, "customDate1": "2020-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3106, "employeeId": 320, "customDate1": "2021-06-07", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3319, "employeeId": 320, "customDate1": "2021-07-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3667, "employeeId": 321, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 41, "employeeId": 322, "customDate1": "2019-01-01", "customAmount1": "55000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 416, "employeeId": 322, "customDate1": "2020-01-01", "customAmount1": "60500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1564, "employeeId": 322, "customDate1": "2017-05-01", "customAmount1": "50000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2587, "employeeId": 322, "customDate1": "2021-01-01", "customAmount1": "59400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3220, "employeeId": 322, "customDate1": "2021-07-01", "customAmount1": "49500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Re-balancing base/Variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4467, "employeeId": 322, "customDate1": "2022-01-01", "customAmount1": "53213.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8990, "employeeId": 322, "customDate1": "2023-01-01", "customAmount1": "57000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10, "employeeId": 323, "customDate1": "2019-10-01", "customAmount1": "30000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 377, "employeeId": 323, "customDate1": "2017-05-08", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3656, "employeeId": 324, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3714, "employeeId": 326, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3663, "employeeId": 327, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3702, "employeeId": 328, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14, "employeeId": 329, "customDate1": "2019-01-01", "customAmount1": "8000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 379, "employeeId": 329, "customDate1": "2017-07-15", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 419, "employeeId": 329, "customDate1": "2020-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1623, "employeeId": 329, "customDate1": "2020-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3631, "employeeId": 330, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3684, "employeeId": 331, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3705, "employeeId": 332, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 489, "employeeId": 333, "customDate1": "2017-08-01", "customAmount1": "12600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 490, "employeeId": 333, "customDate1": "2019-01-01", "customAmount1": "20600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 491, "employeeId": 333, "customDate1": "2019-10-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "New role, Variable changed", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2688, "employeeId": 333, "customDate1": "2021-01-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2689, "employeeId": 333, "customDate1": "2020-07-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3664, "employeeId": 334, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3640, "employeeId": 335, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 44, "employeeId": 336, "customDate1": "2017-08-21", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2681, "employeeId": 336, "customDate1": "2021-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3038, "employeeId": 336, "customDate1": "2021-07-01", "customAmount1": "40000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3118, "employeeId": 336, "customDate1": "2021-06-07", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5575, "employeeId": 336, "customDate1": "2022-07-01", "customAmount1": "60000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8992, "employeeId": 336, "customDate1": "2023-01-01", "customAmount1": "67500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10242, "employeeId": 336, "customDate1": "2023-07-01", "customAmount1": "77500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3736, "employeeId": 337, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3685, "employeeId": 339, "customDate1": "2020-12-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 31, "employeeId": 340, "customDate1": "2019-01-01", "customAmount1": "6000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 429, "employeeId": 340, "customDate1": "2020-01-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1563, "employeeId": 340, "customDate1": "2017-09-05", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2692, "employeeId": 340, "customDate1": "2021-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8969, "employeeId": 340, "customDate1": "2023-01-01", "customAmount1": "11800 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 18, "employeeId": 341, "customDate1": "2019-01-01", "customAmount1": "25400 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 380, "employeeId": 341, "customDate1": "2017-09-18", "customAmount1": "21400.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 425, "employeeId": 341, "customDate1": "2020-01-01", "customAmount1": "28400.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3103, "employeeId": 341, "customDate1": "2021-06-07", "customAmount1": "28400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4453, "employeeId": 341, "customDate1": "2022-01-01", "customAmount1": "33400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3629, "employeeId": 342, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1721, "employeeId": 343, "customDate1": "2020-01-01", "customAmount1": "104000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3186, "employeeId": 343, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "Variable removed, incorporated in salary instead.", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4480, "employeeId": 343, "customDate1": "2022-01-01", "customAmount1": "200000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11179, "employeeId": 343, "customDate1": "2023-10-23", "customAmount1": "200000.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3752, "employeeId": 346, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3610, "employeeId": 347, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11, "employeeId": 348, "customDate1": "2019-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 426, "employeeId": 348, "customDate1": "2020-01-01", "customAmount1": "12000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2693, "employeeId": 348, "customDate1": "2021-01-01", "customAmount1": "17000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 30, "employeeId": 349, "customDate1": "2018-05-07", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4, "employeeId": 350, "customDate1": "2018-05-14", "customAmount1": "80000 SEK", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3758, "employeeId": 351, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3747, "employeeId": 352, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3668, "employeeId": 353, "customDate1": "2018-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8234, "employeeId": 353, "customDate1": "2022-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3733, "employeeId": 354, "customDate1": "2021-07-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3659, "employeeId": 355, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 427, "employeeId": 356, "customDate1": "2020-01-01", "customAmount1": "100000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2694, "employeeId": 356, "customDate1": "2021-01-01", "customAmount1": "127000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4447, "employeeId": 356, "customDate1": "2022-01-01", "customAmount1": "130810.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5, "employeeId": 357, "customDate1": "2018-09-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2695, "employeeId": 357, "customDate1": "2021-01-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4460, "employeeId": 357, "customDate1": "2022-01-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change, only base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3764, "employeeId": 358, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3561, "employeeId": 359, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3, "employeeId": 360, "customDate1": "2018-09-24", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3680, "employeeId": 361, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3707, "employeeId": 362, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3722, "employeeId": 363, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3654, "employeeId": 365, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3712, "employeeId": 366, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 43, "employeeId": 367, "customDate1": "2018-11-27", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3547, "employeeId": 367, "customDate1": "2021-11-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3678, "employeeId": 368, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3740, "employeeId": 369, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 25, "employeeId": 370, "customDate1": "2019-01-07", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2685, "employeeId": 370, "customDate1": "2021-01-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2941, "employeeId": 370, "customDate1": "2021-04-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8983, "employeeId": 370, "customDate1": "2023-01-01", "customAmount1": "25440 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3585, "employeeId": 371, "customDate1": "2019-01-14", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3652, "employeeId": 372, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3732, "employeeId": 373, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3559, "employeeId": 374, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3955, "employeeId": 374, "customDate1": "2021-12-29", "customAmount1": "0.00 AUD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3729, "employeeId": 375, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 38, "employeeId": 376, "customDate1": "2019-02-01", "customAmount1": "92000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3257, "employeeId": 376, "customDate1": "2021-07-01", "customAmount1": "105000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 42, "employeeId": 378, "customDate1": "2019-02-11", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3117, "employeeId": 378, "customDate1": "2021-06-07", "customAmount1": "15000 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 35, "employeeId": 379, "customDate1": "2019-02-18", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2696, "employeeId": 380, "customDate1": "2021-01-01", "customAmount1": "48100.00 ILS", "customTargetVariableReason": "MBO", "customComment1": "Added variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3100, "employeeId": 380, "customDate1": "2021-06-07", "customAmount1": "48100.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4454, "employeeId": 380, "customDate1": "2022-01-01", "customAmount1": "80100.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3601, "employeeId": 381, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7731, "employeeId": 381, "customDate1": "2023-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 49, "employeeId": 382, "customDate1": "2019-05-01", "customAmount1": "427540.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 485, "employeeId": 382, "customDate1": "2019-03-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4470, "employeeId": 382, "customDate1": "2022-01-01", "customAmount1": "470294.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8996, "employeeId": 382, "customDate1": "2023-01-01", "customAmount1": "484402.82 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3645, "employeeId": 383, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3573, "employeeId": 384, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3604, "employeeId": 385, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3671, "employeeId": 386, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 23, "employeeId": 387, "customDate1": "2019-04-08", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3724, "employeeId": 388, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3669, "employeeId": 389, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15, "employeeId": 391, "customDate1": "2019-05-07", "customAmount1": "40000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2717, "employeeId": 391, "customDate1": "2021-01-01", "customAmount1": "35000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Modification to 70/30 base/commission split", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4469, "employeeId": 391, "customDate1": "2022-01-01", "customAmount1": "37625.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8986, "employeeId": 391, "customDate1": "2023-01-01", "customAmount1": "39521 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3556, "employeeId": 392, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9, "employeeId": 393, "customDate1": "2019-05-13", "customAmount1": "19000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4637, "employeeId": 393, "customDate1": "2022-03-01", "customAmount1": "30000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8939, "employeeId": 393, "customDate1": "2023-01-01", "customAmount1": "36000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3577, "employeeId": 395, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3608, "employeeId": 396, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3647, "employeeId": 398, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 36, "employeeId": 399, "customDate1": "2019-07-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4462, "employeeId": 399, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8945, "employeeId": 399, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3741, "employeeId": 400, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3711, "employeeId": 401, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 39, "employeeId": 402, "customDate1": "2019-09-01", "customAmount1": "20000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2697, "employeeId": 402, "customDate1": "2021-01-01", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3115, "employeeId": 402, "customDate1": "2021-06-07", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4455, "employeeId": 402, "customDate1": "2022-01-01", "customAmount1": "34500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3571, "employeeId": 403, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 40, "employeeId": 405, "customDate1": "2019-09-09", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2735, "employeeId": 405, "customDate1": "2021-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3116, "employeeId": 405, "customDate1": "2021-06-07", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5290, "employeeId": 405, "customDate1": "2022-07-01", "customAmount1": "23800.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Relocating to Spain", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8953, "employeeId": 405, "customDate1": "2023-01-01", "customAmount1": "24514 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13, "employeeId": 406, "customDate1": "2019-10-01", "customAmount1": "90000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2698, "employeeId": 406, "customDate1": "2021-01-01", "customAmount1": "90000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4471, "employeeId": 406, "customDate1": "2022-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5414, "employeeId": 408, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3682, "employeeId": 409, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3699, "employeeId": 410, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3643, "employeeId": 411, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5779, "employeeId": 412, "customDate1": "2022-11-14", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 45, "employeeId": 413, "customDate1": "2019-10-14", "customAmount1": "10000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2699, "employeeId": 413, "customDate1": "2021-01-01", "customAmount1": "11000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4465, "employeeId": 413, "customDate1": "2022-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new base salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3662, "employeeId": 414, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 21, "employeeId": 415, "customDate1": "2019-11-01", "customAmount1": "15000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3105, "employeeId": 415, "customDate1": "2021-06-07", "customAmount1": "15000 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3745, "employeeId": 416, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3624, "employeeId": 418, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3661, "employeeId": 421, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1901, "employeeId": 452, "customDate1": "2017-05-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1540, "employeeId": 499, "customDate1": "2020-02-03", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2747, "employeeId": 499, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3551, "employeeId": 533, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3737, "employeeId": 546, "customDate1": "2021-09-06", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3626, "employeeId": 569, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3688, "employeeId": 570, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16, "employeeId": 572, "customDate1": "2019-11-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2701, "employeeId": 572, "customDate1": "2021-01-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4464, "employeeId": 572, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8946, "employeeId": 572, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1565, "employeeId": 573, "customDate1": "2019-10-21", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2700, "employeeId": 573, "customDate1": "2021-01-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5639, "employeeId": 573, "customDate1": "2022-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8970, "employeeId": 573, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3681, "employeeId": 574, "customDate1": "2021-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3658, "employeeId": 575, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3768, "employeeId": 576, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3670, "employeeId": 577, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3696, "employeeId": 578, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1662, "employeeId": 580, "customDate1": "2019-11-18", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4431, "employeeId": 580, "customDate1": "2022-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9014, "employeeId": 580, "customDate1": "2023-01-01", "customAmount1": "121500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10026, "employeeId": 580, "customDate1": "2023-07-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 659, "employeeId": 581, "customDate1": "2019-10-29", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 364, "employeeId": 582, "customDate1": "2019-10-21", "customAmount1": "37500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3253, "employeeId": 582, "customDate1": "2021-07-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 390, "employeeId": 583, "customDate1": "2019-11-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2620, "employeeId": 583, "customDate1": "2020-12-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "No target variable", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3634, "employeeId": 587, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3973, "employeeId": 587, "customDate1": "2021-12-16", "customAmount1": "35000.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Transfer from UK to Canada", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8359, "employeeId": 587, "customDate1": "2022-12-01", "customAmount1": "0.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Moved variable into base", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 430, "employeeId": 588, "customDate1": "2020-01-13", "customAmount1": "87500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4478, "employeeId": 588, "customDate1": "2022-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 432, "employeeId": 589, "customDate1": "2019-11-11", "customAmount1": "130000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 434, "employeeId": 591, "customDate1": "2020-01-21", "customAmount1": "130000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 435, "employeeId": 592, "customDate1": "2020-01-13", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Your first 2 quota carrying quarters are considered ramping quarters. For these quarters you will have a cap of 150% and floor of 50% for your variable payout. All bookings will be paid at the standard base payout rate.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4428, "employeeId": 592, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5615, "employeeId": 592, "customDate1": "2022-07-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Comp Adj 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9024, "employeeId": 592, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 436, "employeeId": 593, "customDate1": "2020-01-13", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 437, "employeeId": 594, "customDate1": "2020-01-13", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3171, "employeeId": 594, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 438, "employeeId": 595, "customDate1": "2020-01-07", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9031, "employeeId": 595, "customDate1": "2023-01-01", "customAmount1": "196000 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 448, "employeeId": 599, "customDate1": "2019-12-09", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3169, "employeeId": 599, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4396, "employeeId": 599, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9063, "employeeId": 599, "customDate1": "2023-01-01", "customAmount1": "75000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 451, "employeeId": 601, "customDate1": "2019-12-30", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3150, "employeeId": 601, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3673, "employeeId": 602, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 475, "employeeId": 603, "customDate1": "2019-12-12", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2702, "employeeId": 603, "customDate1": "2021-01-01", "customAmount1": "13000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4451, "employeeId": 603, "customDate1": "2022-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8980, "employeeId": 603, "customDate1": "2023-01-01", "customAmount1": "22500 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3717, "employeeId": 604, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3720, "employeeId": 605, "customDate1": "2021-05-03", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 477, "employeeId": 606, "customDate1": "2020-02-01", "customAmount1": "720000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4474, "employeeId": 606, "customDate1": "2022-01-01", "customAmount1": "900000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 478, "employeeId": 607, "customDate1": "2020-02-01", "customAmount1": "168000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3111, "employeeId": 607, "customDate1": "2021-06-07", "customAmount1": "168000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3258, "employeeId": 607, "customDate1": "2021-07-01", "customAmount1": "250000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 479, "employeeId": 608, "customDate1": "2020-03-01", "customAmount1": "110000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3574, "employeeId": 609, "customDate1": "2020-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3742, "employeeId": 610, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3557, "employeeId": 611, "customDate1": "2021-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3765, "employeeId": 613, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 480, "employeeId": 614, "customDate1": "2020-01-20", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3144, "employeeId": 614, "customDate1": "2021-06-07", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 492, "employeeId": 615, "customDate1": "2020-01-27", "customAmount1": "46500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2753, "employeeId": 615, "customDate1": "2021-01-01", "customAmount1": "56500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4411, "employeeId": 615, "customDate1": "2022-01-01", "customAmount1": "60625 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9056, "employeeId": 615, "customDate1": "2023-01-01", "customAmount1": "57903 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1075, "employeeId": 616, "customDate1": "2020-02-03", "customAmount1": "54000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3216, "employeeId": 616, "customDate1": "2021-07-01", "customAmount1": "55620.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9058, "employeeId": 616, "customDate1": "2023-01-01", "customAmount1": "58500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1076, "employeeId": 617, "customDate1": "2020-02-03", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1077, "employeeId": 618, "customDate1": "2020-02-03", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3227, "employeeId": 618, "customDate1": "2021-07-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4413, "employeeId": 618, "customDate1": "2022-01-01", "customAmount1": "157500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9022, "employeeId": 618, "customDate1": "2023-01-01", "customAmount1": "162500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1078, "employeeId": 619, "customDate1": "2020-02-24", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2791, "employeeId": 619, "customDate1": "2021-01-01", "customAmount1": "53000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4390, "employeeId": 619, "customDate1": "2022-01-01", "customAmount1": "57240 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9059, "employeeId": 619, "customDate1": "2023-01-01", "customAmount1": "60674.4 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1537, "employeeId": 620, "customDate1": "2020-02-10", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5661, "employeeId": 620, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1538, "employeeId": 621, "customDate1": "2020-02-24", "customAmount1": "55500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4409, "employeeId": 621, "customDate1": "2022-01-01", "customAmount1": "59552 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1542, "employeeId": 622, "customDate1": "2020-02-24", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2746, "employeeId": 622, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9054, "employeeId": 622, "customDate1": "2023-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1548, "employeeId": 625, "customDate1": "2020-01-02", "customAmount1": "700000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2800, "employeeId": 625, "customDate1": "2021-01-01", "customAmount1": "765000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4374, "employeeId": 625, "customDate1": "2022-01-01", "customAmount1": "879750 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1550, "employeeId": 626, "customDate1": "2020-01-06", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2619, "employeeId": 626, "customDate1": "2021-01-01", "customAmount1": "202000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": "updating salary and variable from USD to AUD per new change order.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4436, "employeeId": 626, "customDate1": "2022-01-01", "customAmount1": "265000 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1619, "employeeId": 627, "customDate1": "2020-01-01", "customAmount1": "15000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2799, "employeeId": 627, "customDate1": "2021-01-01", "customAmount1": "65000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3262, "employeeId": 627, "customDate1": "2021-07-01", "customAmount1": "95000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1554, "employeeId": 629, "customDate1": "2017-01-10", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1605, "employeeId": 629, "customDate1": "2020-01-01", "customAmount1": "35000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1606, "employeeId": 629, "customDate1": "2019-01-01", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2786, "employeeId": 629, "customDate1": "2021-01-01", "customAmount1": "37500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4389, "employeeId": 629, "customDate1": "2022-01-01", "customAmount1": "45000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5553, "employeeId": 629, "customDate1": "2022-07-01", "customAmount1": "56250.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Conversion/ Relo from FTE to Contractor", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8943, "employeeId": 629, "customDate1": "2023-01-01", "customAmount1": "59296 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1568, "employeeId": 633, "customDate1": "2020-03-02", "customAmount1": "55500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3215, "employeeId": 633, "customDate1": "2021-07-01", "customAmount1": "57165.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9057, "employeeId": 633, "customDate1": "2023-01-01", "customAmount1": "58000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1571, "employeeId": 634, "customDate1": "2020-04-01", "customAmount1": "147000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4475, "employeeId": 634, "customDate1": "2022-01-01", "customAmount1": "152500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3642, "employeeId": 635, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1574, "employeeId": 636, "customDate1": "2020-03-02", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2992, "employeeId": 636, "customDate1": "2021-05-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4448, "employeeId": 636, "customDate1": "2022-01-01", "customAmount1": "22000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8981, "employeeId": 636, "customDate1": "2023-01-01", "customAmount1": "23500 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1576, "employeeId": 637, "customDate1": "2020-03-02", "customAmount1": "35000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3221, "employeeId": 637, "customDate1": "2021-07-01", "customAmount1": "36750.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8987, "employeeId": 637, "customDate1": "2023-01-01", "customAmount1": "40935 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1583, "employeeId": 638, "customDate1": "2020-02-24", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4371, "employeeId": 638, "customDate1": "2022-01-01", "customAmount1": "15500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1585, "employeeId": 639, "customDate1": "2020-03-02", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3129, "employeeId": 639, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3378, "employeeId": 639, "customDate1": "2021-09-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4031, "employeeId": 639, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion Eff. 1/1/22 to Corporate Account Executive", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9062, "employeeId": 639, "customDate1": "2023-01-01", "customAmount1": "72500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1610, "employeeId": 640, "customDate1": "2020-03-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1664, "employeeId": 642, "customDate1": "2020-04-20", "customAmount1": "12500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1666, "employeeId": 643, "customDate1": "2020-03-16", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3738, "employeeId": 644, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3637, "employeeId": 645, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3594, "employeeId": 646, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3636, "employeeId": 647, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3599, "employeeId": 648, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1941, "employeeId": 649, "customDate1": "2020-04-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4461, "employeeId": 649, "customDate1": "2022-01-01", "customAmount1": "8700.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3679, "employeeId": 650, "customDate1": "2020-05-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1678, "employeeId": 651, "customDate1": "2020-03-23", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2485, "employeeId": 651, "customDate1": "2020-10-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3131, "employeeId": 651, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4358, "employeeId": 651, "customDate1": "2022-01-01", "customAmount1": "34000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1680, "employeeId": 652, "customDate1": "2020-03-23", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3134, "employeeId": 652, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4347, "employeeId": 652, "customDate1": "2022-01-01", "customAmount1": "28000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1683, "employeeId": 653, "customDate1": "2020-09-01", "customAmount1": "127500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4482, "employeeId": 653, "customDate1": "2022-01-01", "customAmount1": "150000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8973, "employeeId": 653, "customDate1": "2023-01-01", "customAmount1": "159750 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1688, "employeeId": 655, "customDate1": "2020-04-06", "customAmount1": "129000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1690, "employeeId": 656, "customDate1": "2020-04-06", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3147, "employeeId": 656, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3731, "employeeId": 658, "customDate1": "2020-05-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3639, "employeeId": 659, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3598, "employeeId": 662, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1709, "employeeId": 663, "customDate1": "2020-05-18", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2686, "employeeId": 663, "customDate1": "2021-01-01", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3112, "employeeId": 663, "customDate1": "2021-06-07", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4445, "employeeId": 663, "customDate1": "2022-01-01", "customAmount1": "52000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1719, "employeeId": 665, "customDate1": "2020-04-20", "customAmount1": "40000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3261, "employeeId": 665, "customDate1": "2021-07-01", "customAmount1": "70000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1725, "employeeId": 667, "customDate1": "2020-04-27", "customAmount1": "90000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": "90,000 RMB ($12,741 per year)\nVariable component with taxes: $17,072", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3657, "employeeId": 668, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2967, "employeeId": 669, "customDate1": "2021-06-09", "customAmount1": "10500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5676, "employeeId": 669, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1903, "employeeId": 670, "customDate1": "2020-06-08", "customAmount1": "23000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4450, "employeeId": 670, "customDate1": "2022-01-01", "customAmount1": "25000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3592, "employeeId": 671, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17211, "employeeId": 671, "customDate1": "2024-05-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1921, "employeeId": 672, "customDate1": "2020-06-08", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3153, "employeeId": 672, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3217, "employeeId": 672, "customDate1": "2021-07-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4402, "employeeId": 672, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3723, "employeeId": 674, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1933, "employeeId": 676, "customDate1": "2020-07-06", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3761, "employeeId": 677, "customDate1": "2021-08-23", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5163, "employeeId": 677, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3568, "employeeId": 678, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3660, "employeeId": 679, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3674, "employeeId": 681, "customDate1": "2021-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1959, "employeeId": 682, "customDate1": "2020-07-06", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3214, "employeeId": 682, "customDate1": "2021-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5673, "employeeId": 682, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3675, "employeeId": 684, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1942, "employeeId": 685, "customDate1": "2020-08-03", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4449, "employeeId": 685, "customDate1": "2022-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8964, "employeeId": 685, "customDate1": "2023-01-01", "customAmount1": "11000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1972, "employeeId": 686, "customDate1": "2020-08-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2540, "employeeId": 686, "customDate1": "2020-12-01", "customAmount1": "3000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3379, "employeeId": 686, "customDate1": "2021-10-28", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3672, "employeeId": 687, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1966, "employeeId": 688, "customDate1": "2020-07-20", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1961, "employeeId": 689, "customDate1": "2020-07-13", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1964, "employeeId": 691, "customDate1": "2020-07-13", "customAmount1": "17500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4749, "employeeId": 691, "customDate1": "2022-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5664, "employeeId": 691, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1974, "employeeId": 693, "customDate1": "2020-09-15", "customAmount1": "13400.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3581, "employeeId": 694, "customDate1": "2020-07-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1977, "employeeId": 695, "customDate1": "2020-08-03", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4426, "employeeId": 695, "customDate1": "2022-01-01", "customAmount1": "157500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2175, "employeeId": 696, "customDate1": "2020-10-01", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3109, "employeeId": 696, "customDate1": "2021-06-07", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4457, "employeeId": 696, "customDate1": "2022-01-01", "customAmount1": "29500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3739, "employeeId": 697, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2181, "employeeId": 698, "customDate1": "2020-09-02", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3104, "employeeId": 698, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3322, "employeeId": 698, "customDate1": "2021-07-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4444, "employeeId": 698, "customDate1": "2022-01-01", "customAmount1": "17000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8977, "employeeId": 698, "customDate1": "2023-01-01", "customAmount1": "17850 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2177, "employeeId": 699, "customDate1": "2020-08-24", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3167, "employeeId": 699, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9061, "employeeId": 699, "customDate1": "2023-01-01", "customAmount1": "65000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2401, "employeeId": 700, "customDate1": "2020-09-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per month for the first 4 months (remainder of this year) during the 2020 plan year.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9018, "employeeId": 700, "customDate1": "2023-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2400, "employeeId": 701, "customDate1": "2020-09-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per month for the first 4 months (remainder of this year) during the 2020 plan year.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3562, "employeeId": 702, "customDate1": "2020-08-14", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3625, "employeeId": 703, "customDate1": "2020-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2413, "employeeId": 704, "customDate1": "2020-09-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3140, "employeeId": 704, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4035, "employeeId": 704, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3008, "employeeId": 705, "customDate1": "2021-05-03", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5672, "employeeId": 705, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3766, "employeeId": 707, "customDate1": "2020-11-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3651, "employeeId": 708, "customDate1": "2020-09-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2415, "employeeId": 709, "customDate1": "2020-09-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3138, "employeeId": 709, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3602, "employeeId": 710, "customDate1": "2020-11-02", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2436, "employeeId": 711, "customDate1": "2020-09-14", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5665, "employeeId": 711, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3580, "employeeId": 712, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3576, "employeeId": 713, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2447, "employeeId": 714, "customDate1": "2020-09-28", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4379, "employeeId": 714, "customDate1": "2022-01-01", "customAmount1": "15750 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2516, "employeeId": 715, "customDate1": "2020-10-05", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4343, "employeeId": 715, "customDate1": "2022-01-01", "customAmount1": "17560 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5663, "employeeId": 715, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2445, "employeeId": 716, "customDate1": "2020-09-21", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4392, "employeeId": 716, "customDate1": "2022-01-01", "customAmount1": "30900 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9047, "employeeId": 716, "customDate1": "2023-01-01", "customAmount1": "33372 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3770, "employeeId": 718, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2443, "employeeId": 719, "customDate1": "2020-09-21", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9009, "employeeId": 719, "customDate1": "2023-01-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3627, "employeeId": 721, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3158, "employeeId": 722, "customDate1": "2021-06-14", "customAmount1": "29550.00 USD", "customTargetVariableReason": "MBO", "customComment1": "FTE conversion. MBO added", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3756, "employeeId": 723, "customDate1": "2020-10-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2622, "employeeId": 725, "customDate1": "2020-12-14", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4404, "employeeId": 725, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2513, "employeeId": 726, "customDate1": "2020-12-01", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3101, "employeeId": 726, "customDate1": "2021-06-07", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4458, "employeeId": 726, "customDate1": "2022-01-01", "customAmount1": "19500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8952, "employeeId": 726, "customDate1": "2023-01-01", "customAmount1": "20085 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2483, "employeeId": 727, "customDate1": "2020-10-05", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4382, "employeeId": 727, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9039, "employeeId": 727, "customDate1": "2023-01-01", "customAmount1": "29100 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3693, "employeeId": 728, "customDate1": "2020-11-02", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3743, "employeeId": 729, "customDate1": "2020-11-02", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2518, "employeeId": 731, "customDate1": "2020-10-05", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3748, "employeeId": 734, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3644, "employeeId": 735, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3061, "employeeId": 736, "customDate1": "2021-06-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3113, "employeeId": 736, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4459, "employeeId": 736, "customDate1": "2022-01-01", "customAmount1": "22500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5576, "employeeId": 736, "customDate1": "2022-07-01", "customAmount1": "30000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2538, "employeeId": 737, "customDate1": "2020-10-12", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "$7,500 per quarter", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3578, "employeeId": 739, "customDate1": "2021-01-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15994, "employeeId": 739, "customDate1": "2024-02-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3600, "employeeId": 740, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2556, "employeeId": 741, "customDate1": "2020-11-02", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3603, "employeeId": 742, "customDate1": "2021-08-21", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2576, "employeeId": 743, "customDate1": "2020-11-16", "customAmount1": "44000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2590, "employeeId": 744, "customDate1": "2020-11-16", "customAmount1": "29450.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2936, "employeeId": 744, "customDate1": "2021-04-05", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "12,669.66 CAD (converted from USD to CAD)\n1USD = 1.266966 CAD", "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4620, "employeeId": 744, "customDate1": "2022-01-01", "customAmount1": "12700.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Adjustment with rate. Converting USD to CAD amount with updated SOW.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8942, "employeeId": 744, "customDate1": "2023-01-01", "customAmount1": "14700 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2573, "employeeId": 745, "customDate1": "2020-11-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3755, "employeeId": 746, "customDate1": "2021-01-18", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3560, "employeeId": 747, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3575, "employeeId": 748, "customDate1": "2020-12-14", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16010, "employeeId": 748, "customDate1": "2024-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2570, "employeeId": 749, "customDate1": "2020-11-09", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3751, "employeeId": 751, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3690, "employeeId": 752, "customDate1": "2020-12-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2563, "employeeId": 753, "customDate1": "2020-12-01", "customAmount1": "73000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4472, "employeeId": 753, "customDate1": "2022-01-01", "customAmount1": "76650.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5168, "employeeId": 753, "customDate1": "2022-06-01", "customAmount1": "92000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8995, "employeeId": 753, "customDate1": "2023-01-01", "customAmount1": "95000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2579, "employeeId": 754, "customDate1": "2020-11-09", "customAmount1": "949000.00 INR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4365, "employeeId": 754, "customDate1": "2022-01-01", "customAmount1": "995663.00 INR", "customTargetVariableReason": "MBO", "customComment1": "$13,400.00 USD", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2584, "employeeId": 755, "customDate1": "2020-12-14", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3170, "employeeId": 755, "customDate1": "2021-06-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3043, "employeeId": 756, "customDate1": "2021-05-17", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3558, "employeeId": 757, "customDate1": "2020-11-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3760, "employeeId": 758, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2589, "employeeId": 759, "customDate1": "2020-11-23", "customAmount1": "210000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Annual variable Component to be paid to consultant: US $155,679(paid in quarterly instalments).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4607, "employeeId": 759, "customDate1": "2022-01-01", "customAmount1": "180000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion eff. 1/1/22", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3666, "employeeId": 760, "customDate1": "2021-02-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2716, "employeeId": 761, "customDate1": "2021-01-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2646, "employeeId": 762, "customDate1": "2020-12-21", "customAmount1": "105000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3975, "employeeId": 763, "customDate1": "2022-01-24", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Previously an intern. Hired as FTE", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2599, "employeeId": 765, "customDate1": "2020-12-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per\nmonth for the first 4 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2623, "employeeId": 766, "customDate1": "2020-12-14", "customAmount1": "43500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4468, "employeeId": 766, "customDate1": "2022-01-01", "customAmount1": "46197.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8988, "employeeId": 766, "customDate1": "2023-01-01", "customAmount1": "49223 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2596, "employeeId": 767, "customDate1": "2021-01-01", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3120, "employeeId": 767, "customDate1": "2021-06-07", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5799, "employeeId": 767, "customDate1": "2022-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3721, "employeeId": 768, "customDate1": "2021-02-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2630, "employeeId": 769, "customDate1": "2020-12-14", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4425, "employeeId": 769, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2634, "employeeId": 770, "customDate1": "2021-01-04", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3163, "employeeId": 770, "customDate1": "2021-06-07", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2637, "employeeId": 771, "customDate1": "2021-01-04", "customAmount1": "270000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8413, "employeeId": 771, "customDate1": "2023-03-16", "customAmount1": "65000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Converting to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16028, "employeeId": 771, "customDate1": "2024-01-01", "customAmount1": "48000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3191, "employeeId": 772, "customDate1": "2021-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE Conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2632, "employeeId": 773, "customDate1": "2021-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3137, "employeeId": 773, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4353, "employeeId": 773, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9050, "employeeId": 773, "customDate1": "2023-01-01", "customAmount1": "36750 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2680, "employeeId": 774, "customDate1": "2021-01-11", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3139, "employeeId": 774, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4351, "employeeId": 774, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9048, "employeeId": 774, "customDate1": "2023-01-01", "customAmount1": "33600 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10591, "employeeId": 774, "customDate1": "2023-09-18", "customAmount1": "52000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2651, "employeeId": 775, "customDate1": "2021-01-04", "customAmount1": "87190.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4438, "employeeId": 775, "customDate1": "2022-01-01", "customAmount1": "97190 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9005, "employeeId": 775, "customDate1": "2023-01-01", "customAmount1": "100000 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2626, "employeeId": 778, "customDate1": "2020-12-14", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4943, "employeeId": 778, "customDate1": "2022-01-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10225, "employeeId": 778, "customDate1": "2023-01-01", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11189, "employeeId": 778, "customDate1": "2023-10-23", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2644, "employeeId": 780, "customDate1": "2020-12-17", "customAmount1": "44100.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3937, "employeeId": 783, "customDate1": "2021-12-06", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FTE conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4406, "employeeId": 783, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3728, "employeeId": 785, "customDate1": "2021-05-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3546, "employeeId": 786, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3570, "employeeId": 787, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2659, "employeeId": 788, "customDate1": "2021-02-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2707, "employeeId": 790, "customDate1": "2021-01-11", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4421, "employeeId": 790, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2709, "employeeId": 791, "customDate1": "2021-01-11", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3135, "employeeId": 791, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4354, "employeeId": 791, "customDate1": "2022-01-01", "customAmount1": "33000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9049, "employeeId": 791, "customDate1": "2023-01-01", "customAmount1": "34320 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2705, "employeeId": 792, "customDate1": "2021-01-11", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4388, "employeeId": 792, "customDate1": "2022-01-01", "customAmount1": "32000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5569, "employeeId": 792, "customDate1": "2022-07-01", "customAmount1": "43000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion Eff. 7/1/22", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9051, "employeeId": 792, "customDate1": "2023-01-01", "customAmount1": "46000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2713, "employeeId": 793, "customDate1": "2021-01-11", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2711, "employeeId": 794, "customDate1": "2021-01-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2715, "employeeId": 795, "customDate1": "2021-01-11", "customAmount1": "208000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4434, "employeeId": 795, "customDate1": "2022-01-01", "customAmount1": "220000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9007, "employeeId": 795, "customDate1": "2023-01-01", "customAmount1": "232000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3588, "employeeId": 796, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2780, "employeeId": 797, "customDate1": "2021-01-19", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5677, "employeeId": 797, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2821, "employeeId": 798, "customDate1": "2021-02-08", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5686, "employeeId": 798, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3635, "employeeId": 799, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2784, "employeeId": 800, "customDate1": "2021-04-19", "customAmount1": "14000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3107, "employeeId": 800, "customDate1": "2021-06-07", "customAmount1": "14000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8951, "employeeId": 800, "customDate1": "2023-01-01", "customAmount1": "20000 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10241, "employeeId": 800, "customDate1": "2023-07-01", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2819, "employeeId": 801, "customDate1": "2021-02-08", "customAmount1": "16000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5685, "employeeId": 801, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3611, "employeeId": 802, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3692, "employeeId": 803, "customDate1": "2021-03-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2796, "employeeId": 805, "customDate1": "2021-03-15", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5638, "employeeId": 805, "customDate1": "2022-07-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8947, "employeeId": 805, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4016, "employeeId": 806, "customDate1": "2022-01-04", "customAmount1": "16500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5683, "employeeId": 806, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2806, "employeeId": 807, "customDate1": "2021-02-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3132, "employeeId": 807, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4348, "employeeId": 807, "customDate1": "2022-01-01", "customAmount1": "31000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2846, "employeeId": 808, "customDate1": "2021-02-08", "customAmount1": "32000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3141, "employeeId": 808, "customDate1": "2021-06-07", "customAmount1": "32000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4350, "employeeId": 808, "customDate1": "2022-01-01", "customAmount1": "34000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2813, "employeeId": 809, "customDate1": "2021-02-01", "customAmount1": "949000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4369, "employeeId": 809, "customDate1": "2022-01-01", "customAmount1": "977470 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2817, "employeeId": 810, "customDate1": "2021-04-01", "customAmount1": "144000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3114, "employeeId": 810, "customDate1": "2021-06-07", "customAmount1": "144000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3648, "employeeId": 812, "customDate1": "2021-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3553, "employeeId": 813, "customDate1": "2021-02-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3564, "employeeId": 814, "customDate1": "2021-04-08", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2852, "employeeId": 815, "customDate1": "2021-04-05", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2855, "employeeId": 816, "customDate1": "2021-03-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4387, "employeeId": 816, "customDate1": "2022-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9034, "employeeId": 816, "customDate1": "2023-01-01", "customAmount1": "21000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2857, "employeeId": 817, "customDate1": "2021-03-15", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3149, "employeeId": 817, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2859, "employeeId": 818, "customDate1": "2021-03-15", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5666, "employeeId": 818, "customDate1": "2021-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2862, "employeeId": 819, "customDate1": "2021-03-22", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2877, "employeeId": 820, "customDate1": "2021-03-15", "customAmount1": "14500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4359, "employeeId": 820, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3579, "employeeId": 822, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2883, "employeeId": 824, "customDate1": "2021-03-08", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) for the first 3 months of your employment in the total amount of $9000, followed by a recoverable draw for the second 3 months in the total amount of $9,000. The Draw will be paid, pro rata, in the second regularly scheduled pay period following the end of each calendar quarter. After such 6 month period, incentives will be based and paid solely under the terms and scope of the commissions and sales revenue attained.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4427, "employeeId": 824, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2889, "employeeId": 825, "customDate1": "2021-03-08", "customAmount1": "151000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2885, "employeeId": 826, "customDate1": "2021-03-15", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4435, "employeeId": 826, "customDate1": "2022-01-01", "customAmount1": "110000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2909, "employeeId": 827, "customDate1": "2021-03-08", "customAmount1": "15000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4394, "employeeId": 827, "customDate1": "2022-01-01", "customAmount1": "29000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5384, "employeeId": 827, "customDate1": "2022-04-01", "customAmount1": "50000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9008, "employeeId": 827, "customDate1": "2023-01-01", "customAmount1": "55000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3591, "employeeId": 828, "customDate1": "2021-06-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2910, "employeeId": 829, "customDate1": "2021-03-15", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3136, "employeeId": 829, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4033, "employeeId": 829, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3586, "employeeId": 830, "customDate1": "2021-06-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3695, "employeeId": 831, "customDate1": "2021-05-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3709, "employeeId": 833, "customDate1": "2021-04-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3691, "employeeId": 834, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3726, "employeeId": 836, "customDate1": "2021-06-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3769, "employeeId": 837, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3735, "employeeId": 839, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2932, "employeeId": 842, "customDate1": "2021-05-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3108, "employeeId": 842, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4443, "employeeId": 842, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3686, "employeeId": 844, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2930, "employeeId": 845, "customDate1": "2021-04-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4463, "employeeId": 845, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8948, "employeeId": 845, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4013, "employeeId": 846, "customDate1": "2022-01-04", "customAmount1": "18750.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5691, "employeeId": 846, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3650, "employeeId": 847, "customDate1": "2021-04-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3541, "employeeId": 848, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3615, "employeeId": 849, "customDate1": "2021-04-05", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3646, "employeeId": 850, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2942, "employeeId": 851, "customDate1": "2021-05-03", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) for the first 3 months of your employment in the total amount of $18,000.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2965, "employeeId": 852, "customDate1": "2021-06-01", "customAmount1": "6100.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4466, "employeeId": 852, "customDate1": "2022-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new base salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2946, "employeeId": 853, "customDate1": "2021-04-19", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3102, "employeeId": 853, "customDate1": "2021-06-07", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4439, "employeeId": 853, "customDate1": "2022-01-01", "customAmount1": "11000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8966, "employeeId": 853, "customDate1": "2023-01-01", "customAmount1": "11440 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3694, "employeeId": 854, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2947, "employeeId": 855, "customDate1": "2021-04-12", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9033, "employeeId": 855, "customDate1": "2023-01-01", "customAmount1": "20800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3584, "employeeId": 856, "customDate1": "2021-05-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2969, "employeeId": 857, "customDate1": "2021-04-26", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2981, "employeeId": 858, "customDate1": "2021-06-07", "customAmount1": "43500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8989, "employeeId": 858, "customDate1": "2023-01-01", "customAmount1": "50000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2974, "employeeId": 859, "customDate1": "2021-04-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4344, "employeeId": 859, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9046, "employeeId": 859, "customDate1": "2023-01-01", "customAmount1": "33280 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2976, "employeeId": 860, "customDate1": "2021-05-03", "customAmount1": "152000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) earned in the first 3 months of your employment in the total amount of $15,000. One third of the draw ($5,000) will be paid, for each full month of employment, in the second regularly scheduled pay period following the end of each calendar quarter.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9021, "employeeId": 860, "customDate1": "2023-01-01", "customAmount1": "162000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2982, "employeeId": 861, "customDate1": "2021-06-09", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2986, "employeeId": 862, "customDate1": "2021-06-14", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8993, "employeeId": 862, "customDate1": "2023-01-01", "customAmount1": "92000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3572, "employeeId": 864, "customDate1": "2020-06-26", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2996, "employeeId": 865, "customDate1": "2021-04-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3142, "employeeId": 865, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4345, "employeeId": 865, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9252, "employeeId": 865, "customDate1": "2023-05-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3700, "employeeId": 866, "customDate1": "2021-05-17", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3009, "employeeId": 867, "customDate1": "2021-07-01", "customAmount1": "3500000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9002, "employeeId": 867, "customDate1": "2023-01-01", "customAmount1": "5000000 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3697, "employeeId": 869, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3031, "employeeId": 870, "customDate1": "2021-06-28", "customAmount1": "18000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3033, "employeeId": 871, "customDate1": "2021-05-17", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9025, "employeeId": 871, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3734, "employeeId": 872, "customDate1": "2021-08-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3036, "employeeId": 874, "customDate1": "2021-05-17", "customAmount1": "1100000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3727, "employeeId": 875, "customDate1": "2021-08-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3950, "employeeId": 876, "customDate1": "2021-06-01", "customAmount1": "0.00 CAD", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3051, "employeeId": 877, "customDate1": "2021-07-26", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8994, "employeeId": 877, "customDate1": "2023-01-01", "customAmount1": "92500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3044, "employeeId": 878, "customDate1": "2021-06-01", "customAmount1": "13000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5667, "employeeId": 878, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3049, "employeeId": 879, "customDate1": "2021-08-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3053, "employeeId": 880, "customDate1": "2021-06-30", "customAmount1": "120000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3565, "employeeId": 881, "customDate1": "2021-08-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3055, "employeeId": 882, "customDate1": "2021-08-02", "customAmount1": "48000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9004, "employeeId": 882, "customDate1": "2023-01-01", "customAmount1": "53000 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3638, "employeeId": 883, "customDate1": "2021-07-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3059, "employeeId": 884, "customDate1": "2021-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8971, "employeeId": 884, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3595, "employeeId": 887, "customDate1": "2021-05-24", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3066, "employeeId": 888, "customDate1": "2021-06-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9038, "employeeId": 888, "customDate1": "2023-01-01", "customAmount1": "27000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3069, "employeeId": 889, "customDate1": "2021-06-01", "customAmount1": "60000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3767, "employeeId": 890, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3632, "employeeId": 891, "customDate1": "2021-06-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3072, "employeeId": 892, "customDate1": "2021-06-01", "customAmount1": "25500", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3605, "employeeId": 893, "customDate1": "2021-08-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3628, "employeeId": 894, "customDate1": "2021-08-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3079, "employeeId": 895, "customDate1": "2021-09-01", "customAmount1": "1080000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3080, "employeeId": 896, "customDate1": "2021-06-07", "customAmount1": "90000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3097, "employeeId": 897, "customDate1": "2021-07-05", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4349, "employeeId": 897, "customDate1": "2022-01-01", "customAmount1": "36000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3124, "employeeId": 898, "customDate1": "2021-07-05", "customAmount1": "110000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8967, "employeeId": 898, "customDate1": "2023-01-01", "customAmount1": "115000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3126, "employeeId": 900, "customDate1": "2021-07-06", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3127, "employeeId": 901, "customDate1": "2021-06-16", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4132, "employeeId": 901, "customDate1": "2022-01-01", "customAmount1": "743032.00 INR", "customTargetVariableReason": "MBO", "customComment1": "Per contract, converted to INR (1 USD = 74.3032 INR)\n$10,000.00 USD / year", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9003, "employeeId": 901, "customDate1": "2023-01-01", "customAmount1": "800000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3175, "employeeId": 903, "customDate1": "2021-08-02", "customAmount1": "27750.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5668, "employeeId": 903, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3176, "employeeId": 904, "customDate1": "2021-07-06", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Non-Recoverable Draw\nYou will receive $3,000 per month for the first 3 months, paid as a lump sum less applicable tax and withholdings, in the last payroll run in October. This is on top of any earned commissions for transactions that close in your accounts during the July-September quarter (Q3).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4420, "employeeId": 904, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3183, "employeeId": 905, "customDate1": "2021-11-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8972, "employeeId": 905, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4761, "employeeId": 907, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8338, "employeeId": 907, "customDate1": "2023-06-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4939, "employeeId": 908, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3762, "employeeId": 909, "customDate1": "2021-10-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3566, "employeeId": 910, "customDate1": "2021-10-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3188, "employeeId": 911, "customDate1": "2021-08-02", "customAmount1": "130000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3744, "employeeId": 912, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3203, "employeeId": 913, "customDate1": "2021-08-02", "customAmount1": "2000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3593, "employeeId": 914, "customDate1": "2021-09-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3194, "employeeId": 915, "customDate1": "2021-09-01", "customAmount1": "15000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3704, "employeeId": 916, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3205, "employeeId": 918, "customDate1": "2021-07-26", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3689, "employeeId": 921, "customDate1": "2021-09-20", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3718, "employeeId": 922, "customDate1": "2021-07-15", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3246, "employeeId": 923, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4442, "employeeId": 923, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8974, "employeeId": 923, "customDate1": "2023-01-01", "customAmount1": "16480 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3229, "employeeId": 924, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4441, "employeeId": 924, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5382, "employeeId": 924, "customDate1": "2022-07-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3248, "employeeId": 925, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4440, "employeeId": 925, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8975, "employeeId": 925, "customDate1": "2023-01-01", "customAmount1": "16800 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3716, "employeeId": 926, "customDate1": "2021-09-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3587, "employeeId": 927, "customDate1": "2021-09-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3252, "employeeId": 928, "customDate1": "2021-07-26", "customAmount1": "97000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5895, "employeeId": 928, "customDate1": "2022-07-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3255, "employeeId": 929, "customDate1": "2021-09-27", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3555, "employeeId": 930, "customDate1": "2021-08-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3607, "employeeId": 931, "customDate1": "2021-08-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3271, "employeeId": 932, "customDate1": "2021-10-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8958, "employeeId": 932, "customDate1": "2023-01-01", "customAmount1": "60900 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3583, "employeeId": 933, "customDate1": "2022-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3277, "employeeId": 934, "customDate1": "2021-08-17", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3278, "employeeId": 935, "customDate1": "2021-08-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3311, "employeeId": 936, "customDate1": "2021-08-23", "customAmount1": "22500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5684, "employeeId": 936, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3297, "employeeId": 937, "customDate1": "2021-09-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5311, "employeeId": 937, "customDate1": "2022-07-01", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Internal Transfer / Comp Adj eff. 7/1", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3299, "employeeId": 938, "customDate1": "2021-08-23", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3300, "employeeId": 939, "customDate1": "2021-08-30", "customAmount1": "150000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10214, "employeeId": 939, "customDate1": "2023-07-01", "customAmount1": "140000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3304, "employeeId": 940, "customDate1": "2021-08-23", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3306, "employeeId": 941, "customDate1": "2021-08-30", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5662, "employeeId": 941, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3641, "employeeId": 942, "customDate1": "2021-09-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3606, "employeeId": 943, "customDate1": "2021-08-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3567, "employeeId": 944, "customDate1": "2021-09-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3677, "employeeId": 947, "customDate1": "2021-10-18", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3318, "employeeId": 948, "customDate1": "2021-10-18", "customAmount1": "63000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3616, "employeeId": 951, "customDate1": "2021-08-30", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3327, "employeeId": 952, "customDate1": "2021-09-13", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5688, "employeeId": 952, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3759, "employeeId": 953, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3335, "employeeId": 954, "customDate1": "2021-10-04", "customAmount1": "1225830.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5896, "employeeId": 954, "customDate1": "2022-07-01", "customAmount1": "0.00 INR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3337, "employeeId": 955, "customDate1": "2021-09-27", "customAmount1": "370550.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8999, "employeeId": 955, "customDate1": "2023-01-01", "customAmount1": "389000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3590, "employeeId": 957, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3341, "employeeId": 958, "customDate1": "2021-10-11", "customAmount1": "17250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3589, "employeeId": 960, "customDate1": "2022-01-03", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3569, "employeeId": 961, "customDate1": "2021-11-22", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3630, "employeeId": 962, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3365, "employeeId": 963, "customDate1": "2021-09-27", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4042, "employeeId": 965, "customDate1": "2022-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3370, "employeeId": 967, "customDate1": "2021-09-27", "customAmount1": "30000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3371, "employeeId": 968, "customDate1": "2021-09-20", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9041, "employeeId": 968, "customDate1": "2023-01-01", "customAmount1": "30900 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3375, "employeeId": 971, "customDate1": "2021-09-13", "customAmount1": "20000.00 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3617, "employeeId": 972, "customDate1": "2021-12-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3708, "employeeId": 973, "customDate1": "2021-11-08", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3380, "employeeId": 974, "customDate1": "2021-09-27", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9042, "employeeId": 974, "customDate1": "2023-01-01", "customAmount1": "31500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3383, "employeeId": 975, "customDate1": "2021-10-04", "customAmount1": "179000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3387, "employeeId": 977, "customDate1": "2021-10-20", "customAmount1": "54000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3388, "employeeId": 978, "customDate1": "2021-09-21", "customAmount1": "200000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9006, "employeeId": 978, "customDate1": "2023-01-01", "customAmount1": "220000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3683, "employeeId": 979, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3396, "employeeId": 980, "customDate1": "2021-11-01", "customAmount1": "112625.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3549, "employeeId": 982, "customDate1": "2021-11-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3398, "employeeId": 983, "customDate1": "2021-12-01", "customAmount1": "370550.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9000, "employeeId": 983, "customDate1": "2023-01-01", "customAmount1": "407600 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3399, "employeeId": 984, "customDate1": "2021-10-17", "customAmount1": "4004237.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3400, "employeeId": 985, "customDate1": "2021-10-04", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9040, "employeeId": 985, "customDate1": "2023-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3418, "employeeId": 986, "customDate1": "2021-11-02", "customAmount1": "17250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8979, "employeeId": 986, "customDate1": "2023-01-01", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3402, "employeeId": 987, "customDate1": "2021-11-30", "customAmount1": "735123.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3405, "employeeId": 989, "customDate1": "2021-11-01", "customAmount1": "27000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3406, "employeeId": 990, "customDate1": "2021-10-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9010, "employeeId": 990, "customDate1": "2023-01-01", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3409, "employeeId": 991, "customDate1": "2021-10-04", "customAmount1": "41000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3416, "employeeId": 992, "customDate1": "2021-11-01", "customAmount1": "109500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8965, "employeeId": 992, "customDate1": "2023-01-01", "customAmount1": "112785 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9220, "employeeId": 992, "customDate1": "2023-05-01", "customAmount1": "137000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3550, "employeeId": 994, "customDate1": "2021-11-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3442, "employeeId": 995, "customDate1": "2021-10-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3483, "employeeId": 997, "customDate1": "2021-10-18", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Target variable is split: 50% ($30,000) will be paid as sales commissions, as outlined in a compensation plan, and 50% ($30,000) will be paid as MBO", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3454, "employeeId": 999, "customDate1": "2021-11-15", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3477, "employeeId": 1000, "customDate1": "2022-01-05", "customAmount1": "1113657.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8997, "employeeId": 1000, "customDate1": "2023-01-01", "customAmount1": "1202749.56 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3484, "employeeId": 1002, "customDate1": "2021-10-18", "customAmount1": "50000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3485, "employeeId": 1003, "customDate1": "2021-10-18", "customAmount1": "1250000000.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3487, "employeeId": 1004, "customDate1": "2021-10-18", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5649, "employeeId": 1004, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3757, "employeeId": 1006, "customDate1": "2022-01-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3527, "employeeId": 1007, "customDate1": "2021-10-18", "customAmount1": "256695414.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3534, "employeeId": 1009, "customDate1": "2022-01-04", "customAmount1": "71285.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11183, "employeeId": 1009, "customDate1": "2023-10-23", "customAmount1": "71285.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3706, "employeeId": 1010, "customDate1": "2021-11-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3612, "employeeId": 1011, "customDate1": "2021-10-25", "customAmount1": "60000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3619, "employeeId": 1012, "customDate1": "2021-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3622, "employeeId": 1013, "customDate1": "2021-11-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will receive a monthly guaranteed payment of $3,000, less the applicable tax and withholdings, for the first three (3) months of employment. In addition, beginning on month four (4) [February] of your employment, you will be advanced a recoverable draw equivalent to $3,000 per month, for three (3) months (the \u201cDraw\u201d).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3777, "employeeId": 1014, "customDate1": "2021-11-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3772, "employeeId": 1015, "customDate1": "2021-11-08", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9019, "employeeId": 1015, "customDate1": "2023-01-01", "customAmount1": "153000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3774, "employeeId": 1016, "customDate1": "2021-11-15", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3780, "employeeId": 1017, "customDate1": "2022-01-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3782, "employeeId": 1018, "customDate1": "2021-11-01", "customAmount1": "566320.00 CNY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3820, "employeeId": 1020, "customDate1": "2022-04-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3823, "employeeId": 1021, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3826, "employeeId": 1022, "customDate1": "2022-01-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3829, "employeeId": 1024, "customDate1": "2022-01-04", "customAmount1": "128000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3832, "employeeId": 1025, "customDate1": "2022-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5689, "employeeId": 1025, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3844, "employeeId": 1027, "customDate1": "2021-12-13", "customAmount1": "120000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3839, "employeeId": 1028, "customDate1": "2022-01-10", "customAmount1": "110000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3848, "employeeId": 1029, "customDate1": "2022-01-03", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "R$780,472.00 / year\nExchange rate R$ - 5,5748", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3850, "employeeId": 1030, "customDate1": "2021-11-15", "customAmount1": "27000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3853, "employeeId": 1031, "customDate1": "2022-01-04", "customAmount1": "115000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8968, "employeeId": 1031, "customDate1": "2023-01-01", "customAmount1": "117000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3856, "employeeId": 1032, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3858, "employeeId": 1033, "customDate1": "2021-11-22", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9011, "employeeId": 1033, "customDate1": "2023-01-01", "customAmount1": "105000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3862, "employeeId": 1034, "customDate1": "2022-01-17", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5650, "employeeId": 1034, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3865, "employeeId": 1035, "customDate1": "2022-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3867, "employeeId": 1036, "customDate1": "2021-12-09", "customAmount1": "40000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8940, "employeeId": 1036, "customDate1": "2023-01-01", "customAmount1": "41600.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": "April SDR Commission: $1,914.55 AUD\nMay SDR Commission: $2,682.73 AUD\nJuly SDR Commission: $2,304.55 AUD\nOctober SDR Commission: $6,933.33 AUD\nNovember SDR Commission: $6,366.86 AUD", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3871, "employeeId": 1037, "customDate1": "2021-12-13", "customAmount1": "109500.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3875, "employeeId": 1038, "customDate1": "2022-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3884, "employeeId": 1039, "customDate1": "2022-01-15", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8959, "employeeId": 1039, "customDate1": "2023-01-01", "customAmount1": "7500 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3886, "employeeId": 1040, "customDate1": "2022-01-04", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9064, "employeeId": 1040, "customDate1": "2023-01-01", "customAmount1": "77250 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3888, "employeeId": 1041, "customDate1": "2022-02-07", "customAmount1": "210000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3891, "employeeId": 1042, "customDate1": "2021-12-15", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8955, "employeeId": 1042, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3897, "employeeId": 1043, "customDate1": "2021-12-06", "customAmount1": "22500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5675, "employeeId": 1043, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3899, "employeeId": 1044, "customDate1": "2022-01-10", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11180, "employeeId": 1044, "customDate1": "2023-10-23", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3901, "employeeId": 1045, "customDate1": "2022-01-10", "customAmount1": "70000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3903, "employeeId": 1046, "customDate1": "2021-12-09", "customAmount1": "12500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4408, "employeeId": 1046, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3905, "employeeId": 1047, "customDate1": "2021-12-13", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4407, "employeeId": 1047, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3912, "employeeId": 1048, "customDate1": "2022-01-25", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3914, "employeeId": 1049, "customDate1": "2021-12-13", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3934, "employeeId": 1050, "customDate1": "2021-12-28", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5690, "employeeId": 1050, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3940, "employeeId": 1051, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3943, "employeeId": 1052, "customDate1": "2022-01-10", "customAmount1": "111212.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": "1 USD = 5.5606 BRL currency conversion\n20,000 USD", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3948, "employeeId": 1053, "customDate1": "2022-01-04", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9012, "employeeId": 1053, "customDate1": "2023-01-01", "customAmount1": "11000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3952, "employeeId": 1054, "customDate1": "2022-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3957, "employeeId": 1055, "customDate1": "2022-01-10", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3959, "employeeId": 1056, "customDate1": "2022-02-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3969, "employeeId": 1058, "customDate1": "2022-02-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3982, "employeeId": 1059, "customDate1": "2022-09-01", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3988, "employeeId": 1060, "customDate1": "2022-01-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3990, "employeeId": 1061, "customDate1": "2022-01-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5626, "employeeId": 1061, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3992, "employeeId": 1062, "customDate1": "2022-01-24", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3996, "employeeId": 1063, "customDate1": "2022-02-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4000, "employeeId": 1064, "customDate1": "2022-03-01", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4003, "employeeId": 1065, "customDate1": "2022-01-03", "customAmount1": "168000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8976, "employeeId": 1065, "customDate1": "2023-01-01", "customAmount1": "174000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4005, "employeeId": 1066, "customDate1": "2022-01-04", "customAmount1": "87500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4008, "employeeId": 1068, "customDate1": "2022-01-04", "customAmount1": "55000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8171, "employeeId": 1068, "customDate1": "2023-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4010, "employeeId": 1069, "customDate1": "2022-02-07", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4026, "employeeId": 1072, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4028, "employeeId": 1073, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9043, "employeeId": 1073, "customDate1": "2023-01-01", "customAmount1": "31500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4045, "employeeId": 1074, "customDate1": "2022-01-10", "customAmount1": "34500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8985, "employeeId": 1074, "customDate1": "2023-01-01", "customAmount1": "39330 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4080, "employeeId": 1075, "customDate1": "2022-02-15", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8950, "employeeId": 1075, "customDate1": "2023-01-01", "customAmount1": "15000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4037, "employeeId": 1076, "customDate1": "2022-01-04", "customAmount1": "378470.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9001, "employeeId": 1076, "customDate1": "2023-01-01", "customAmount1": "425000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4039, "employeeId": 1077, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4047, "employeeId": 1078, "customDate1": "2022-02-07", "customAmount1": "175000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4088, "employeeId": 1079, "customDate1": "2022-03-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4057, "employeeId": 1083, "customDate1": "2022-06-01", "customAmount1": "75000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4083, "employeeId": 1085, "customDate1": "2022-01-18", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Target variable of $100,000 (USD) per annum. \n 80% will be paid as sales commissions, and 20% will be paid as MBO.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4096, "employeeId": 1088, "customDate1": "2022-03-01", "customAmount1": "80000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4099, "employeeId": 1089, "customDate1": "2022-02-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4101, "employeeId": 1090, "customDate1": "2022-01-24", "customAmount1": "138660.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8941, "employeeId": 1090, "customDate1": "2023-01-01", "customAmount1": "145593.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": "April commission: R$20,708.57 BRL\nMay commission: R$11,789.87 BRL\nJuly commission: R$25,094.45 BRL\nOctober '23 Commission: R$16,985.85 BRL\nNovember '23 SDR Commission: R$16,985.85 BRL\nJanuary '24 SDR Commissions: R$9,706.20 BRL", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4115, "employeeId": 1091, "customDate1": "2022-04-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4106, "employeeId": 1092, "customDate1": "2022-02-14", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "He will receive a monthly payment of $5,000, less the applicable tax and withholdings, for\nthe first 6 months of employment.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4118, "employeeId": 1093, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4228, "employeeId": 1095, "customDate1": "2022-03-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4674, "employeeId": 1096, "customDate1": "2022-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4124, "employeeId": 1097, "customDate1": "2022-04-04", "customAmount1": "185000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4129, "employeeId": 1099, "customDate1": "2022-01-31", "customAmount1": "96000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17244, "employeeId": 1099, "customDate1": "2024-03-01", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4136, "employeeId": 1100, "customDate1": "2022-03-01", "customAmount1": "11250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4141, "employeeId": 1101, "customDate1": "2022-02-07", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4138, "employeeId": 1102, "customDate1": "2022-02-14", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17230, "employeeId": 1102, "customDate1": "2024-03-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4145, "employeeId": 1103, "customDate1": "2022-05-10", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": "On-target variable compensation will be SEK 10,000 per month (equal to SEK 120,000 per year)", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5657, "employeeId": 1103, "customDate1": "2022-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4149, "employeeId": 1104, "customDate1": "2022-04-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4154, "employeeId": 1105, "customDate1": "2022-02-22", "customAmount1": "26550.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5674, "employeeId": 1105, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4205, "employeeId": 1107, "customDate1": "2022-03-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4207, "employeeId": 1109, "customDate1": "2022-02-15", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5850, "employeeId": 1109, "customDate1": "2022-07-01", "customAmount1": "0.00 BRL", "customTargetVariableReason": "N/A", "customComment1": "Moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4211, "employeeId": 1111, "customDate1": "2022-02-28", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5660, "employeeId": 1111, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4231, "employeeId": 1112, "customDate1": "2022-05-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4245, "employeeId": 1113, "customDate1": "2022-03-21", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8956, "employeeId": 1113, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4221, "employeeId": 1114, "customDate1": "2022-02-28", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4628, "employeeId": 1117, "customDate1": "2022-03-01", "customAmount1": "132000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11187, "employeeId": 1117, "customDate1": "2023-10-23", "customAmount1": "132000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "60% = Corporate MBO; 40% = Sales Incentive", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4233, "employeeId": 1118, "customDate1": "2022-02-28", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "will receive a monthly payment of $13,750 for the first 3 months of employment", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4239, "employeeId": 1119, "customDate1": "2022-03-21", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5679, "employeeId": 1119, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4242, "employeeId": 1121, "customDate1": "2022-04-01", "customAmount1": "4800000.00 JPY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4650, "employeeId": 1122, "customDate1": "2022-03-14", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8991, "employeeId": 1122, "customDate1": "2023-01-01", "customAmount1": "6000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4617, "employeeId": 1124, "customDate1": "2022-02-28", "customAmount1": "376025.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8998, "employeeId": 1124, "customDate1": "2023-01-01", "customAmount1": "387300 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4630, "employeeId": 1126, "customDate1": "2022-03-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4633, "employeeId": 1127, "customDate1": "2022-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4640, "employeeId": 1128, "customDate1": "2022-03-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4647, "employeeId": 1129, "customDate1": "2022-04-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4680, "employeeId": 1130, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4665, "employeeId": 1133, "customDate1": "2022-05-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4677, "employeeId": 1136, "customDate1": "2022-04-25", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8963, "employeeId": 1136, "customDate1": "2023-01-01", "customAmount1": "10500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4683, "employeeId": 1138, "customDate1": "2022-06-06", "customAmount1": "8500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4687, "employeeId": 1139, "customDate1": "2022-03-05", "customAmount1": "1571427750.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": "He will receive 3 months non-recoverable draw 130,952,313 per month (392,856,939 for 3 months)", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4689, "employeeId": 1140, "customDate1": "2022-03-21", "customAmount1": "55000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Of the target variable, 80% ($44,000) will be paid as sales commissions, as outlined in a compensation plan, and 20% ($11,000) will be paid as a variable bonus.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5738, "employeeId": 1140, "customDate1": "2022-09-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Internal Transfer Eff. 9/1/22", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4764, "employeeId": 1142, "customDate1": "2022-04-25", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8961, "employeeId": 1142, "customDate1": "2023-01-01", "customAmount1": "10400 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4693, "employeeId": 1143, "customDate1": "2022-04-25", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4695, "employeeId": 1144, "customDate1": "2022-04-04", "customAmount1": "50000.00 CAD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4699, "employeeId": 1145, "customDate1": "2022-04-18", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5681, "employeeId": 1145, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4707, "employeeId": 1147, "customDate1": "2022-04-04", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4770, "employeeId": 1148, "customDate1": "2022-05-16", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4709, "employeeId": 1149, "customDate1": "2022-06-27", "customAmount1": "63000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4711, "employeeId": 1150, "customDate1": "2022-04-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5671, "employeeId": 1150, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4747, "employeeId": 1151, "customDate1": "2022-03-28", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4767, "employeeId": 1152, "customDate1": "2022-04-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4743, "employeeId": 1155, "customDate1": "2022-04-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6717, "employeeId": 1155, "customDate1": "2022-10-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4744, "employeeId": 1156, "customDate1": "2022-04-18", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4773, "employeeId": 1157, "customDate1": "2022-06-20", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4759, "employeeId": 1158, "customDate1": "2022-04-26", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4778, "employeeId": 1160, "customDate1": "2022-06-01", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4781, "employeeId": 1161, "customDate1": "2022-05-02", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4783, "employeeId": 1162, "customDate1": "2022-05-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5678, "employeeId": 1162, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4788, "employeeId": 1164, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4790, "employeeId": 1165, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8340, "employeeId": 1165, "customDate1": "2023-06-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4792, "employeeId": 1166, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4794, "employeeId": 1167, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4797, "employeeId": 1168, "customDate1": "2022-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4799, "employeeId": 1169, "customDate1": "2022-04-19", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4802, "employeeId": 1171, "customDate1": "2022-04-04", "customAmount1": "2379178.00 MXN", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4806, "employeeId": 1172, "customDate1": "2022-04-18", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4810, "employeeId": 1173, "customDate1": "2022-04-25", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4859, "employeeId": 1176, "customDate1": "2022-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4898, "employeeId": 1178, "customDate1": "2022-05-09", "customAmount1": "50000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4900, "employeeId": 1179, "customDate1": "2022-05-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4903, "employeeId": 1181, "customDate1": "2022-04-25", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9045, "employeeId": 1181, "customDate1": "2023-01-01", "customAmount1": "32960 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4926, "employeeId": 1182, "customDate1": "2022-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4928, "employeeId": 1183, "customDate1": "2022-04-25", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5670, "employeeId": 1183, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4941, "employeeId": 1185, "customDate1": "2022-06-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4930, "employeeId": 1186, "customDate1": "2022-05-02", "customAmount1": "326544.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4951, "employeeId": 1190, "customDate1": "2022-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4959, "employeeId": 1191, "customDate1": "2022-06-20", "customAmount1": "23000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8982, "employeeId": 1191, "customDate1": "2023-01-01", "customAmount1": "24500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4961, "employeeId": 1193, "customDate1": "2022-04-25", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4974, "employeeId": 1194, "customDate1": "2022-05-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4971, "employeeId": 1195, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4980, "employeeId": 1196, "customDate1": "2022-05-02", "customAmount1": "372000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4982, "employeeId": 1197, "customDate1": "2022-05-02", "customAmount1": "155000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4988, "employeeId": 1198, "customDate1": "2022-06-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4990, "employeeId": 1199, "customDate1": "2022-04-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4993, "employeeId": 1200, "customDate1": "2022-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4997, "employeeId": 1201, "customDate1": "2022-05-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5009, "employeeId": 1203, "customDate1": "2022-05-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4999, "employeeId": 1204, "customDate1": "2022-04-25", "customAmount1": "700500.00 CNY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5003, "employeeId": 1205, "customDate1": "2022-05-23", "customAmount1": "66000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5132, "employeeId": 1206, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8326, "employeeId": 1207, "customDate1": "2023-02-21", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5060, "employeeId": 1208, "customDate1": "2022-05-23", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5064, "employeeId": 1211, "customDate1": "2022-06-01", "customAmount1": "48000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5068, "employeeId": 1212, "customDate1": "2022-06-01", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5094, "employeeId": 1213, "customDate1": "2022-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5122, "employeeId": 1217, "customDate1": "2022-05-23", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5139, "employeeId": 1219, "customDate1": "2022-07-05", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5141, "employeeId": 1220, "customDate1": "2022-07-11", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5145, "employeeId": 1222, "customDate1": "2022-06-27", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5147, "employeeId": 1223, "customDate1": "2022-05-31", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9044, "employeeId": 1223, "customDate1": "2023-01-01", "customAmount1": "32640 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5149, "employeeId": 1224, "customDate1": "2022-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5151, "employeeId": 1225, "customDate1": "2022-06-13", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5594, "employeeId": 1227, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5153, "employeeId": 1228, "customDate1": "2022-06-01", "customAmount1": "100900.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5166, "employeeId": 1229, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5156, "employeeId": 1230, "customDate1": "2022-06-06", "customAmount1": "45000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5177, "employeeId": 1231, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5175, "employeeId": 1232, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5171, "employeeId": 1233, "customDate1": "2022-07-01", "customAmount1": "37500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5179, "employeeId": 1234, "customDate1": "2022-06-01", "customAmount1": "175000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8978, "employeeId": 1234, "customDate1": "2023-01-01", "customAmount1": "180000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5199, "employeeId": 1238, "customDate1": "2022-07-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5201, "employeeId": 1241, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5204, "employeeId": 1242, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5206, "employeeId": 1244, "customDate1": "2022-07-18", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5219, "employeeId": 1246, "customDate1": "2022-07-04", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8957, "employeeId": 1246, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5221, "employeeId": 1247, "customDate1": "2022-07-11", "customAmount1": "44000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5224, "employeeId": 1248, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10014, "employeeId": 1248, "customDate1": "2023-06-27", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5226, "employeeId": 1250, "customDate1": "2022-08-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5449, "employeeId": 1251, "customDate1": "2022-07-11", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8962, "employeeId": 1251, "customDate1": "2023-01-01", "customAmount1": "10400 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5233, "employeeId": 1252, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5235, "employeeId": 1254, "customDate1": "2022-07-05", "customAmount1": "44000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5255, "employeeId": 1255, "customDate1": "2022-07-18", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5319, "employeeId": 1258, "customDate1": "2022-07-18", "customAmount1": "1725000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5263, "employeeId": 1260, "customDate1": "2022-07-25", "customAmount1": "544414.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5265, "employeeId": 1261, "customDate1": "2022-06-27", "customAmount1": "612000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5269, "employeeId": 1262, "customDate1": "2023-01-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5277, "employeeId": 1265, "customDate1": "2022-07-11", "customAmount1": "73800.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5280, "employeeId": 1267, "customDate1": "2022-07-11", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5285, "employeeId": 1268, "customDate1": "2022-08-29", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5306, "employeeId": 1270, "customDate1": "2022-08-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5593, "employeeId": 1271, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5307, "employeeId": 1272, "customDate1": "2022-06-28", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5720, "employeeId": 1273, "customDate1": "2022-09-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5312, "employeeId": 1274, "customDate1": "2022-09-01", "customAmount1": "80000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5366, "employeeId": 1276, "customDate1": "2022-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5368, "employeeId": 1277, "customDate1": "2022-06-30", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5370, "employeeId": 1278, "customDate1": "2022-08-08", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5541, "employeeId": 1281, "customDate1": "2022-10-10", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5439, "employeeId": 1283, "customDate1": "2022-08-31", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5441, "employeeId": 1284, "customDate1": "2022-10-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5726, "employeeId": 1285, "customDate1": "2022-10-10", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5460, "employeeId": 1286, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5462, "employeeId": 1287, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5483, "employeeId": 1288, "customDate1": "2022-09-06", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5722, "employeeId": 1289, "customDate1": "2022-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5558, "employeeId": 1290, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5496, "employeeId": 1292, "customDate1": "2022-08-01", "customAmount1": "58500.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5500, "employeeId": 1293, "customDate1": "2022-08-08", "customAmount1": "591428.57 INR", "customTargetVariableReason": "Commissions", "customComment1": "April '23 SDR Commissions: \u20b930,702.10 INR\nMay '23 SDR Commissions: \u20b915,829.41 INR\nJuly '23 SDR Commissions: \u20b938,616.96 INR\nOctober '23 SDR Commissions: \u20b924,642.86 INR\nNovember '23 SDR Commissions: \u20b990,710.73 INR", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5502, "employeeId": 1294, "customDate1": "2022-08-22", "customAmount1": "84000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5506, "employeeId": 1295, "customDate1": "2022-08-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8415, "employeeId": 1295, "customDate1": "2023-04-03", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11341, "employeeId": 1295, "customDate1": "2023-11-16", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5508, "employeeId": 1296, "customDate1": "2022-08-08", "customAmount1": "936000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": "April '23 SDR Commission: \u20b924,440.00 INR\nMay '23 SDR Commission: \u20b96,933.33 INR", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5549, "employeeId": 1297, "customDate1": "2022-08-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5560, "employeeId": 1298, "customDate1": "2022-09-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5716, "employeeId": 1299, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5566, "employeeId": 1300, "customDate1": "2022-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5552, "employeeId": 1301, "customDate1": "2022-08-28", "customAmount1": "50000.40 ILS", "customTargetVariableReason": "MBO", "customComment1": "10% of the Retainer Fee plus VAT (as applicable) per each such fiscal year", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5714, "employeeId": 1302, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5545, "employeeId": 1303, "customDate1": "2022-12-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5562, "employeeId": 1304, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5572, "employeeId": 1306, "customDate1": "2022-08-16", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5730, "employeeId": 1307, "customDate1": "2022-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5579, "employeeId": 1308, "customDate1": "2022-09-12", "customAmount1": "25800.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5590, "employeeId": 1310, "customDate1": "2022-08-08", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5613, "employeeId": 1311, "customDate1": "2022-08-22", "customAmount1": "47750.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5620, "employeeId": 1312, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5621, "employeeId": 1313, "customDate1": "2022-08-29", "customAmount1": "170000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5623, "employeeId": 1314, "customDate1": "2022-08-29", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5628, "employeeId": 1315, "customDate1": "2022-08-22", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5629, "employeeId": 1316, "customDate1": "2022-10-03", "customAmount1": "350000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5632, "employeeId": 1317, "customDate1": "2022-09-12", "customAmount1": "37080.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5728, "employeeId": 1319, "customDate1": "2022-10-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5636, "employeeId": 1320, "customDate1": "2022-09-19", "customAmount1": "10900.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5712, "employeeId": 1321, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5724, "employeeId": 1322, "customDate1": "2022-10-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5653, "employeeId": 1323, "customDate1": "2022-08-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5693, "employeeId": 1326, "customDate1": "2022-09-06", "customAmount1": "155000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5695, "employeeId": 1327, "customDate1": "2022-08-29", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5698, "employeeId": 1328, "customDate1": "2022-09-19", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8960, "employeeId": 1328, "customDate1": "2023-01-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5732, "employeeId": 1331, "customDate1": "2022-09-12", "customAmount1": "103000.00 BRL", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5740, "employeeId": 1333, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5760, "employeeId": 1334, "customDate1": "2022-09-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5774, "employeeId": 1336, "customDate1": "2022-09-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5781, "employeeId": 1338, "customDate1": "2022-09-19", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5786, "employeeId": 1339, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5788, "employeeId": 1340, "customDate1": "2022-10-03", "customAmount1": "52000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5794, "employeeId": 1341, "customDate1": "2022-11-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5796, "employeeId": 1343, "customDate1": "2022-10-17", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5800, "employeeId": 1344, "customDate1": "2022-10-10", "customAmount1": "206000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5809, "employeeId": 1345, "customDate1": "2022-09-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5813, "employeeId": 1346, "customDate1": "2022-10-17", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5868, "employeeId": 1347, "customDate1": "2022-10-17", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5817, "employeeId": 1348, "customDate1": "2022-10-03", "customAmount1": "475000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5841, "employeeId": 1349, "customDate1": "2022-12-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5837, "employeeId": 1350, "customDate1": "2022-10-17", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5845, "employeeId": 1352, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8203, "employeeId": 1354, "customDate1": "2023-01-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6819, "employeeId": 1355, "customDate1": "2022-11-14", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5909, "employeeId": 1360, "customDate1": "2022-10-17", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6753, "employeeId": 1364, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6825, "employeeId": 1365, "customDate1": "2022-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6756, "employeeId": 1366, "customDate1": "2022-11-07", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6760, "employeeId": 1367, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6761, "employeeId": 1368, "customDate1": "2022-11-28", "customAmount1": "84000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6765, "employeeId": 1369, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6807, "employeeId": 1371, "customDate1": "2022-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6826, "employeeId": 1372, "customDate1": "2022-12-12", "customAmount1": "0.00 AUD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8248, "employeeId": 1374, "customDate1": "2023-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8157, "employeeId": 1376, "customDate1": "2023-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7649, "employeeId": 1379, "customDate1": "2023-01-05", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8158, "employeeId": 1382, "customDate1": "2023-01-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7662, "employeeId": 1383, "customDate1": "2022-12-12", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7667, "employeeId": 1384, "customDate1": "2022-12-05", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8298, "employeeId": 1386, "customDate1": "2023-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7673, "employeeId": 1389, "customDate1": "2022-12-05", "customAmount1": "350000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7727, "employeeId": 1391, "customDate1": "2023-02-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7736, "employeeId": 1394, "customDate1": "2023-01-23", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11186, "employeeId": 1394, "customDate1": "2023-10-23", "customAmount1": "75000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7742, "employeeId": 1395, "customDate1": "2023-01-11", "customAmount1": "175000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7750, "employeeId": 1397, "customDate1": "2023-02-09", "customAmount1": "33750.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8155, "employeeId": 1398, "customDate1": "2023-01-09", "customAmount1": "230000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8189, "employeeId": 1399, "customDate1": "2023-02-21", "customAmount1": "83000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11181, "employeeId": 1399, "customDate1": "2023-10-23", "customAmount1": "83000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8170, "employeeId": 1400, "customDate1": "2023-01-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8174, "employeeId": 1401, "customDate1": "2023-01-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8192, "employeeId": 1403, "customDate1": "2023-01-23", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8291, "employeeId": 1404, "customDate1": "2023-02-13", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8295, "employeeId": 1407, "customDate1": "2023-02-13", "customAmount1": "240000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8311, "employeeId": 1408, "customDate1": "2023-02-20", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8302, "employeeId": 1411, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9069, "employeeId": 1412, "customDate1": "2023-02-20", "customAmount1": "550200.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9070, "employeeId": 1413, "customDate1": "2023-02-20", "customAmount1": "550200.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9073, "employeeId": 1414, "customDate1": "2023-02-20", "customAmount1": "408000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9068, "employeeId": 1415, "customDate1": "2023-02-20", "customAmount1": "326000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9071, "employeeId": 1416, "customDate1": "2023-02-20", "customAmount1": "490000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9126, "employeeId": 1417, "customDate1": "2023-05-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8351, "employeeId": 1418, "customDate1": "2023-03-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8314, "employeeId": 1419, "customDate1": "2023-02-20", "customAmount1": "27600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8317, "employeeId": 1420, "customDate1": "2023-02-20", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8320, "employeeId": 1421, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8323, "employeeId": 1422, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8347, "employeeId": 1424, "customDate1": "2023-03-06", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9066, "employeeId": 1425, "customDate1": "2023-04-03", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11184, "employeeId": 1425, "customDate1": "2023-10-23", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8342, "employeeId": 1426, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15954, "employeeId": 1426, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8344, "employeeId": 1427, "customDate1": "2023-06-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9121, "employeeId": 1444, "customDate1": "2023-04-11", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9180, "employeeId": 1448, "customDate1": "2023-04-17", "customAmount1": "30000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9169, "employeeId": 1449, "customDate1": "2023-04-10", "customAmount1": "200000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9173, "employeeId": 1451, "customDate1": "2023-04-17", "customAmount1": "8500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9191, "employeeId": 1456, "customDate1": "2023-04-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10448, "employeeId": 1457, "customDate1": "2023-08-21", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Converted to FTE", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9981, "employeeId": 1460, "customDate1": "2023-06-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10054, "employeeId": 1462, "customDate1": "2023-07-17", "customAmount1": "96000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9248, "employeeId": 1463, "customDate1": "2023-05-29", "customAmount1": "75000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10016, "employeeId": 1464, "customDate1": "2023-08-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10006, "employeeId": 1467, "customDate1": "2023-06-05", "customAmount1": "160000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10048, "employeeId": 1471, "customDate1": "2023-06-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10012, "employeeId": 1472, "customDate1": "2023-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10019, "employeeId": 1473, "customDate1": "2023-06-05", "customAmount1": "68000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10029, "employeeId": 1474, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17300, "employeeId": 1474, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10035, "employeeId": 1476, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10037, "employeeId": 1477, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15985, "employeeId": 1477, "customDate1": "2024-03-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Intern to Full-Time", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10039, "employeeId": 1478, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10081, "employeeId": 1479, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10051, "employeeId": 1480, "customDate1": "2023-07-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10147, "employeeId": 1498, "customDate1": "2023-06-14", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10158, "employeeId": 1503, "customDate1": "2023-06-19", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10169, "employeeId": 1507, "customDate1": "2023-07-05", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10522, "employeeId": 1514, "customDate1": "2023-10-02", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10334, "employeeId": 1524, "customDate1": "2023-07-31", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10337, "employeeId": 1525, "customDate1": "2023-07-31", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10306, "employeeId": 1526, "customDate1": "2023-07-24", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10321, "employeeId": 1527, "customDate1": "2023-07-31", "customAmount1": "31860.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10418, "employeeId": 1528, "customDate1": "2023-08-28", "customAmount1": "31860.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10324, "employeeId": 1529, "customDate1": "2023-08-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10495, "employeeId": 1534, "customDate1": "2023-08-28", "customAmount1": "390980625.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10461, "employeeId": 1536, "customDate1": "2023-08-21", "customAmount1": "26000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10387, "employeeId": 1539, "customDate1": "2023-08-14", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10396, "employeeId": 1540, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16020, "employeeId": 1540, "customDate1": "2024-02-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Intern to Full-Time", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10398, "employeeId": 1541, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10439, "employeeId": 1542, "customDate1": "2023-08-14", "customAmount1": "100000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10454, "employeeId": 1545, "customDate1": "2023-09-04", "customAmount1": "225000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10489, "employeeId": 1546, "customDate1": "2023-08-28", "customAmount1": "220000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10503, "employeeId": 1550, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10525, "employeeId": 1552, "customDate1": "2023-09-25", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10532, "employeeId": 1553, "customDate1": "2023-10-02", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10510, "employeeId": 1554, "customDate1": "2023-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11102, "employeeId": 1555, "customDate1": "2023-10-09", "customAmount1": "679800.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10530, "employeeId": 1556, "customDate1": "2023-09-18", "customAmount1": "122400.00 BRL", "customTargetVariableReason": "MBO", "customComment1": "R$15,759.90 BRL - Q3 '23 Commission Adjustment", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10555, "employeeId": 1557, "customDate1": "2023-11-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11144, "employeeId": 1558, "customDate1": "2023-10-16", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11207, "employeeId": 1559, "customDate1": "2023-11-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10581, "employeeId": 1560, "customDate1": "2023-09-25", "customAmount1": "202500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10584, "employeeId": 1561, "customDate1": "2023-11-01", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11052, "employeeId": 1562, "customDate1": "2023-10-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11023, "employeeId": 1563, "customDate1": "2024-01-02", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11034, "employeeId": 1566, "customDate1": "2023-10-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11048, "employeeId": 1567, "customDate1": "2023-10-16", "customAmount1": "15000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11045, "employeeId": 1568, "customDate1": "2023-10-16", "customAmount1": "5000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11040, "employeeId": 1569, "customDate1": "2023-10-16", "customAmount1": "30000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11106, "employeeId": 1575, "customDate1": "2023-10-16", "customAmount1": "165000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11167, "employeeId": 1576, "customDate1": "2023-10-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11160, "employeeId": 1577, "customDate1": "2023-10-23", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11141, "employeeId": 1578, "customDate1": "2023-11-06", "customAmount1": "144000.00 MYR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11337, "employeeId": 1579, "customDate1": "2024-01-02", "customAmount1": "55469.00 MYR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11151, "employeeId": 1580, "customDate1": "2023-10-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11169, "employeeId": 1582, "customDate1": "2024-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11331, "employeeId": 1584, "customDate1": "2023-11-27", "customAmount1": "2000000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11328, "employeeId": 1585, "customDate1": "2023-11-27", "customAmount1": "95000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11217, "employeeId": 1587, "customDate1": "2023-12-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11221, "employeeId": 1588, "customDate1": "2023-11-06", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11253, "employeeId": 1589, "customDate1": "2023-12-04", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11321, "employeeId": 1591, "customDate1": "2023-11-13", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11317, "employeeId": 1592, "customDate1": "2023-11-13", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11385, "employeeId": 1595, "customDate1": "2023-11-20", "customAmount1": "170000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11358, "employeeId": 1597, "customDate1": "2024-01-15", "customAmount1": "39000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11372, "employeeId": 1601, "customDate1": "2024-01-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11389, "employeeId": 1602, "customDate1": "2023-11-20", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11382, "employeeId": 1605, "customDate1": "2024-01-15", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11393, "employeeId": 1606, "customDate1": "2023-11-27", "customAmount1": "252500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11401, "employeeId": 1608, "customDate1": "2024-01-08", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11407, "employeeId": 1609, "customDate1": "2024-01-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11411, "employeeId": 1610, "customDate1": "2023-11-27", "customAmount1": "29000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11416, "employeeId": 1611, "customDate1": "1900-01-01", "customAmount1": null, "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11422, "employeeId": 1612, "customDate1": "2023-12-04", "customAmount1": "165000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11436, "employeeId": 1613, "customDate1": "2024-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11525, "employeeId": 1614, "customDate1": "2023-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11445, "employeeId": 1615, "customDate1": "2023-12-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11518, "employeeId": 1617, "customDate1": "2023-12-11", "customAmount1": "49000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11451, "employeeId": 1618, "customDate1": "2023-12-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11458, "employeeId": 1620, "customDate1": "2024-01-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11461, "employeeId": 1621, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11511, "employeeId": 1622, "customDate1": "2024-03-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11566, "employeeId": 1623, "customDate1": "2023-12-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11552, "employeeId": 1628, "customDate1": "2024-01-02", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11584, "employeeId": 1630, "customDate1": "2024-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11591, "employeeId": 1631, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11594, "employeeId": 1632, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11597, "employeeId": 1633, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11600, "employeeId": 1634, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11603, "employeeId": 1635, "customDate1": "2024-03-18", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11606, "employeeId": 1636, "customDate1": "2024-03-18", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11614, "employeeId": 1637, "customDate1": "2023-12-18", "customAmount1": "728000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15991, "employeeId": 1638, "customDate1": "2024-01-15", "customAmount1": "425000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11620, "employeeId": 1639, "customDate1": "2024-01-15", "customAmount1": "819000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11628, "employeeId": 1640, "customDate1": "2024-01-02", "customAmount1": "20000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15941, "employeeId": 1643, "customDate1": "2024-01-08", "customAmount1": "142500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12525, "employeeId": 1644, "customDate1": "2024-01-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14704, "employeeId": 1646, "customDate1": "2024-01-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15999, "employeeId": 1647, "customDate1": "2024-02-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15929, "employeeId": 1648, "customDate1": "2024-01-16", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15937, "employeeId": 1650, "customDate1": "2024-01-16", "customAmount1": "202500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15946, "employeeId": 1651, "customDate1": "2024-06-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15950, "employeeId": 1652, "customDate1": "2024-06-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16004, "employeeId": 1653, "customDate1": "2024-03-11", "customAmount1": "127500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16032, "employeeId": 1654, "customDate1": "2024-01-29", "customAmount1": "42750.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16036, "employeeId": 1655, "customDate1": "2024-02-01", "customAmount1": "80000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16054, "employeeId": 1658, "customDate1": "2024-02-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16071, "employeeId": 1661, "customDate1": "2024-04-01", "customAmount1": "127500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17416, "employeeId": 1662, "customDate1": "2024-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16895, "employeeId": 1664, "customDate1": "2024-02-19", "customAmount1": "71375.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16861, "employeeId": 1665, "customDate1": "2024-03-18", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16849, "employeeId": 1666, "customDate1": "2024-02-26", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16857, "employeeId": 1668, "customDate1": "2024-03-18", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16879, "employeeId": 1669, "customDate1": "2024-02-26", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16883, "employeeId": 1670, "customDate1": "2024-02-26", "customAmount1": "104000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16914, "employeeId": 1674, "customDate1": "2024-03-04", "customAmount1": "256286.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16944, "employeeId": 1676, "customDate1": "2024-05-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16925, "employeeId": 1677, "customDate1": "2024-04-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16949, "employeeId": 1680, "customDate1": "2024-04-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16976, "employeeId": 1681, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16956, "employeeId": 1682, "customDate1": "2024-02-26", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16961, "employeeId": 1683, "customDate1": "2024-04-01", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16967, "employeeId": 1684, "customDate1": "2024-02-26", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17139, "employeeId": 1685, "customDate1": "2024-03-04", "customAmount1": "225000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16981, "employeeId": 1686, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16986, "employeeId": 1687, "customDate1": "2024-06-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17193, "employeeId": 1689, "customDate1": "2024-04-08", "customAmount1": "64000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17200, "employeeId": 1691, "customDate1": "2024-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17218, "employeeId": 1694, "customDate1": "2024-05-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17225, "employeeId": 1696, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17270, "employeeId": 1698, "customDate1": "2024-03-18", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17277, "employeeId": 1699, "customDate1": "2024-04-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17289, "employeeId": 1701, "customDate1": "2024-04-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17296, "employeeId": 1702, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17304, "employeeId": 1703, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17308, "employeeId": 1704, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17312, "employeeId": 1705, "customDate1": "2024-05-20", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17317, "employeeId": 1706, "customDate1": "2024-05-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17329, "employeeId": 1708, "customDate1": "2024-04-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17335, "employeeId": 1709, "customDate1": "2024-04-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17353, "employeeId": 1711, "customDate1": "2024-04-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17360, "employeeId": 1712, "customDate1": "2024-06-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17399, "employeeId": 1720, "customDate1": "2024-06-17", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17404, "employeeId": 1721, "customDate1": "2024-04-02", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17412, "employeeId": 1722, "customDate1": "2024-05-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17421, "employeeId": 1723, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2147, "employeeId": 1, "customEffectiveDate": "2019-09-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2170, "employeeId": 114, "customEffectiveDate": "2019-09-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6678, "employeeId": 114, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17192, "employeeId": 114, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2108, "employeeId": 115, "customEffectiveDate": "2019-03-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2284, "employeeId": 116, "customEffectiveDate": "2010-10-15", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4614, "employeeId": 116, "customEffectiveDate": "2022-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6376, "employeeId": 116, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6740, "employeeId": 116, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12144, "employeeId": 116, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2207, "employeeId": 117, "customEffectiveDate": "2017-01-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2656, "employeeId": 117, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5119, "employeeId": 117, "customEffectiveDate": "2022-06-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5913, "employeeId": 117, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6743, "employeeId": 117, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12137, "employeeId": 117, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 218, "employeeId": 118, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2043, "employeeId": 119, "customEffectiveDate": "2012-02-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6634, "employeeId": 119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7754, "employeeId": 119, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1843, "employeeId": 120, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2328, "employeeId": 120, "customEffectiveDate": "2020-05-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6525, "employeeId": 120, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8237, "employeeId": 120, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2122, "employeeId": 121, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6475, "employeeId": 121, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9158, "employeeId": 121, "customEffectiveDate": "2023-04-03", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11846, "employeeId": 121, "customEffectiveDate": "2023-04-03", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "ENG-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1840, "employeeId": 122, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2107, "employeeId": 122, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2034, "employeeId": 123, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2020, "employeeId": 124, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17156, "employeeId": 124, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2071, "employeeId": 125, "customEffectiveDate": "2013-10-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2048, "employeeId": 126, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6592, "employeeId": 126, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7758, "employeeId": 126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11982, "employeeId": 126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2116, "employeeId": 127, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4599, "employeeId": 127, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6315, "employeeId": 127, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7759, "employeeId": 127, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12066, "employeeId": 127, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1527, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1890, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2163, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1529, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1892, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2165, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1416, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1783, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2039, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6288, "employeeId": 130, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7760, "employeeId": 130, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11977, "employeeId": 130, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1778, "employeeId": 131, "customEffectiveDate": "2019-11-15", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1931, "employeeId": 131, "customEffectiveDate": "2020-06-12", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2033, "employeeId": 131, "customEffectiveDate": "2020-06-12", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2892, "employeeId": 131, "customEffectiveDate": "2021-07-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1491, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1858, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2126, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1449, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1815, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2081, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1420, "employeeId": 134, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2044, "employeeId": 134, "customEffectiveDate": "2020-01-18", "customDepartment#": "1200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3816, "employeeId": 134, "customEffectiveDate": "2021-11-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6513, "employeeId": 134, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7762, "employeeId": 134, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2055, "employeeId": 135, "customEffectiveDate": "2020-02-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4984, "employeeId": 135, "customEffectiveDate": "2022-04-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6514, "employeeId": 135, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7765, "employeeId": 135, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8167, "employeeId": 135, "customEffectiveDate": "2023-01-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8332, "employeeId": 135, "customEffectiveDate": "2023-02-21", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11866, "employeeId": 135, "customEffectiveDate": "2023-02-21", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1483, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1850, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2118, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6153, "employeeId": 136, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12301, "employeeId": 136, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1516, "employeeId": 137, "customEffectiveDate": "2019-01-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1897, "employeeId": 137, "customEffectiveDate": "2019-10-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2153, "employeeId": 137, "customEffectiveDate": "2019-10-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2140, "employeeId": 138, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2434, "employeeId": 138, "customEffectiveDate": "2020-09-09", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4174, "employeeId": 138, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1833, "employeeId": 139, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2100, "employeeId": 139, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 321, "employeeId": 140, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2076, "employeeId": 141, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6211, "employeeId": 141, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7722, "employeeId": 141, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7766, "employeeId": 141, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11905, "employeeId": 141, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2125, "employeeId": 142, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2571, "employeeId": 142, "customEffectiveDate": "2020-11-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6628, "employeeId": 142, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7768, "employeeId": 142, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2088, "employeeId": 143, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3470, "employeeId": 143, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4164, "employeeId": 143, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5938, "employeeId": 143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13723, "employeeId": 143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1807, "employeeId": 144, "customEffectiveDate": "2019-11-15", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2068, "employeeId": 144, "customEffectiveDate": "2019-11-15", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6515, "employeeId": 144, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2017, "employeeId": 145, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6630, "employeeId": 145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7770, "employeeId": 145, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1519, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1883, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2155, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6361, "employeeId": 146, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7771, "employeeId": 146, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12113, "employeeId": 146, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1768, "employeeId": 147, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6234, "employeeId": 147, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7772, "employeeId": 147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11681, "employeeId": 147, "customEffectiveDate": "2023-10-19", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 328, "employeeId": 148, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1437, "employeeId": 149, "customEffectiveDate": "2016-03-28", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1801, "employeeId": 149, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2060, "employeeId": 149, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6374, "employeeId": 149, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6730, "employeeId": 149, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2102, "employeeId": 150, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3000, "employeeId": 150, "customEffectiveDate": "2021-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6635, "employeeId": 150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7773, "employeeId": 150, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1408, "employeeId": 151, "customEffectiveDate": "2017-01-03", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1531, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1893, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2168, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6625, "employeeId": 152, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7775, "employeeId": 152, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12125, "employeeId": 152, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2133, "employeeId": 153, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6618, "employeeId": 153, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7776, "employeeId": 153, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12084, "employeeId": 153, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2143, "employeeId": 154, "customEffectiveDate": "2016-12-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2012, "employeeId": 155, "customEffectiveDate": "2016-12-19", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6652, "employeeId": 155, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8100, "employeeId": 155, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2136, "employeeId": 156, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2138, "employeeId": 157, "customEffectiveDate": "2020-01-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2407, "employeeId": 157, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6503, "employeeId": 157, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6708, "employeeId": 157, "customEffectiveDate": "2022-10-17", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7779, "employeeId": 157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12094, "employeeId": 157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2054, "employeeId": 158, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6668, "employeeId": 158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2095, "employeeId": 159, "customEffectiveDate": "2019-11-15", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4105, "employeeId": 159, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6562, "employeeId": 159, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7780, "employeeId": 159, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12042, "employeeId": 159, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16044, "employeeId": 159, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2019, "employeeId": 160, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6581, "employeeId": 160, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7781, "employeeId": 160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11939, "employeeId": 160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1428, "employeeId": 161, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2065, "employeeId": 162, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2045, "employeeId": 163, "customEffectiveDate": "2020-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4602, "employeeId": 163, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6396, "employeeId": 163, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1393, "employeeId": 164, "customEffectiveDate": "2017-05-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1763, "employeeId": 164, "customEffectiveDate": "2017-05-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6232, "employeeId": 164, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7783, "employeeId": 164, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11933, "employeeId": 164, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2015, "employeeId": 165, "customEffectiveDate": "2017-05-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3519, "employeeId": 165, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6443, "employeeId": 165, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1498, "employeeId": 166, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2169, "employeeId": 167, "customEffectiveDate": "2019-11-15", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 229, "employeeId": 168, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2002, "employeeId": 169, "customEffectiveDate": "2017-07-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6578, "employeeId": 169, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7786, "employeeId": 169, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11920, "employeeId": 169, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2030, "employeeId": 170, "customEffectiveDate": "2017-07-05", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6314, "employeeId": 170, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7787, "employeeId": 170, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11955, "employeeId": 170, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2105, "employeeId": 171, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6365, "employeeId": 171, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7788, "employeeId": 171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2119, "employeeId": 172, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6316, "employeeId": 172, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7789, "employeeId": 172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12071, "employeeId": 172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2057, "employeeId": 173, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6658, "employeeId": 173, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8101, "employeeId": 173, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2089, "employeeId": 174, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6213, "employeeId": 174, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7791, "employeeId": 174, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2050, "employeeId": 175, "customEffectiveDate": "2019-11-15", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2135, "employeeId": 176, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4604, "employeeId": 176, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6452, "employeeId": 176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12309, "employeeId": 176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2154, "employeeId": 177, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4596, "employeeId": 177, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6565, "employeeId": 177, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7793, "employeeId": 177, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11282, "employeeId": 177, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11676, "employeeId": 177, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1993, "employeeId": 178, "customEffectiveDate": "2017-10-02", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4619, "employeeId": 178, "customEffectiveDate": "2022-02-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6676, "employeeId": 178, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1489, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1856, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2124, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6617, "employeeId": 179, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7796, "employeeId": 179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12076, "employeeId": 179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2130, "employeeId": 180, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4597, "employeeId": 180, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6312, "employeeId": 180, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7797, "employeeId": 180, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12079, "employeeId": 180, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1492, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1859, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2127, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1995, "employeeId": 182, "customEffectiveDate": "2017-11-06", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3469, "employeeId": 182, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4156, "employeeId": 182, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5932, "employeeId": 182, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1891, "employeeId": 183, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2164, "employeeId": 183, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2082, "employeeId": 184, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6295, "employeeId": 184, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7799, "employeeId": 184, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12024, "employeeId": 184, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1482, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1849, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2117, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6305, "employeeId": 185, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7800, "employeeId": 185, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12068, "employeeId": 185, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2059, "employeeId": 186, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2069, "employeeId": 187, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6601, "employeeId": 187, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7801, "employeeId": 187, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11418, "employeeId": 187, "customEffectiveDate": "2022-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12008, "employeeId": 187, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1526, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1889, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2162, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2046, "employeeId": 189, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4598, "employeeId": 189, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6265, "employeeId": 189, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7802, "employeeId": 189, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11980, "employeeId": 189, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1997, "employeeId": 190, "customEffectiveDate": "2018-02-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6629, "employeeId": 190, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7803, "employeeId": 190, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2022, "employeeId": 191, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6677, "employeeId": 191, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8372, "employeeId": 191, "customEffectiveDate": "2023-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17158, "employeeId": 191, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2123, "employeeId": 192, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3467, "employeeId": 192, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4167, "employeeId": 192, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5941, "employeeId": 192, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12303, "employeeId": 192, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2009, "employeeId": 193, "customEffectiveDate": "2018-02-26", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2103, "employeeId": 194, "customEffectiveDate": "2019-11-15", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4110, "employeeId": 194, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6613, "employeeId": 194, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7804, "employeeId": 194, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12049, "employeeId": 194, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16047, "employeeId": 194, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2086, "employeeId": 195, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6607, "employeeId": 195, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7806, "employeeId": 195, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12032, "employeeId": 195, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1996, "employeeId": 197, "customEffectiveDate": "2018-04-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3443, "employeeId": 197, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4963, "employeeId": 197, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6442, "employeeId": 197, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1458, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1825, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2091, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6298, "employeeId": 198, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7807, "employeeId": 198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12039, "employeeId": 198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2067, "employeeId": 199, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4603, "employeeId": 199, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2014, "employeeId": 200, "customEffectiveDate": "2018-05-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2084, "employeeId": 201, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1747, "employeeId": 202, "customEffectiveDate": "2018-06-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6342, "employeeId": 202, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7808, "employeeId": 202, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10310, "employeeId": 202, "customEffectiveDate": "2023-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11752, "employeeId": 202, "customEffectiveDate": "2023-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1433, "employeeId": 203, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1684, "employeeId": 203, "customEffectiveDate": "2020-04-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1467, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1834, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2101, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2129, "employeeId": 205, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3466, "employeeId": 205, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4168, "employeeId": 205, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5942, "employeeId": 205, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2145, "employeeId": 206, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3543, "employeeId": 206, "customEffectiveDate": "2021-02-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6476, "employeeId": 206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8293, "employeeId": 206, "customEffectiveDate": "2023-02-08", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9118, "employeeId": 206, "customEffectiveDate": "2023-01-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10196, "employeeId": 206, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11850, "employeeId": 206, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Adjustment", "customPosition": "PRD-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2037, "employeeId": 207, "customEffectiveDate": "2019-11-15", "customDepartment#": "3700", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3195, "employeeId": 207, "customEffectiveDate": "2020-01-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6206, "employeeId": 207, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7809, "employeeId": 207, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2004, "employeeId": 208, "customEffectiveDate": "2018-07-30", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6371, "employeeId": 208, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12176, "employeeId": 208, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17152, "employeeId": 208, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2120, "employeeId": 209, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1432, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1798, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2056, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6351, "employeeId": 210, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7812, "employeeId": 210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11990, "employeeId": 210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1447, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1812, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2078, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2405, "employeeId": 212, "customEffectiveDate": "2020-07-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2736, "employeeId": 212, "customEffectiveDate": "2021-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6559, "employeeId": 212, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7814, "employeeId": 212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8187, "employeeId": 212, "customEffectiveDate": "2023-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11884, "employeeId": 212, "customEffectiveDate": "2023-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2097, "employeeId": 213, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6610, "employeeId": 213, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7815, "employeeId": 213, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12044, "employeeId": 213, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1400, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1770, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2023, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6582, "employeeId": 214, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7816, "employeeId": 214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11941, "employeeId": 214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2156, "employeeId": 215, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1418, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1785, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2042, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1745, "employeeId": 217, "customEffectiveDate": "2019-01-07", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6341, "employeeId": 217, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7817, "employeeId": 217, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11830, "employeeId": 217, "customEffectiveDate": "2023-04-06", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2132, "employeeId": 218, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1425, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1792, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2049, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6350, "employeeId": 219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7819, "employeeId": 219, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11983, "employeeId": 219, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2024, "employeeId": 220, "customEffectiveDate": "2019-01-14", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1774, "employeeId": 221, "customEffectiveDate": "2019-01-14", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6363, "employeeId": 221, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7820, "employeeId": 221, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11947, "employeeId": 221, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2104, "employeeId": 222, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1406, "employeeId": 223, "customEffectiveDate": "2019-01-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1879, "employeeId": 224, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2110, "employeeId": 225, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2797, "employeeId": 225, "customEffectiveDate": "2021-01-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2047, "employeeId": 226, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2998, "employeeId": 226, "customEffectiveDate": "2021-01-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1877, "employeeId": 227, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2148, "employeeId": 227, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6242, "employeeId": 227, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7824, "employeeId": 227, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12111, "employeeId": 227, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2093, "employeeId": 228, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6300, "employeeId": 228, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7825, "employeeId": 228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12041, "employeeId": 228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1480, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1847, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2114, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6356, "employeeId": 229, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7826, "employeeId": 229, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12062, "employeeId": 229, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1818, "employeeId": 230, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2121, "employeeId": 231, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1507, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1873, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2144, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6309, "employeeId": 232, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7827, "employeeId": 232, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12106, "employeeId": 232, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1404, "employeeId": 233, "customEffectiveDate": "2019-04-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1773, "employeeId": 233, "customEffectiveDate": "2019-04-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6346, "employeeId": 233, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7828, "employeeId": 233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11944, "employeeId": 233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2040, "employeeId": 234, "customEffectiveDate": "2019-04-29", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6289, "employeeId": 234, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7829, "employeeId": 234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11979, "employeeId": 234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1453, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1819, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2085, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6354, "employeeId": 235, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7830, "employeeId": 235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12028, "employeeId": 235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2141, "employeeId": 236, "customEffectiveDate": "2019-11-15", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4171, "employeeId": 236, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2063, "employeeId": 237, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1378, "employeeId": 238, "customEffectiveDate": "2019-05-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1744, "employeeId": 238, "customEffectiveDate": "2019-05-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1502, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1868, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2137, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2150, "employeeId": 240, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2979, "employeeId": 240, "customEffectiveDate": "2021-04-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6699, "employeeId": 240, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8371, "employeeId": 240, "customEffectiveDate": "2021-06-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17188, "employeeId": 240, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 230, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1150, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1386, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1753, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2007, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2106, "employeeId": 242, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3985, "employeeId": 242, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4601, "employeeId": 242, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6398, "employeeId": 242, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12272, "employeeId": 242, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1749, "employeeId": 243, "customEffectiveDate": "2019-06-10", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6343, "employeeId": 243, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7833, "employeeId": 243, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11921, "employeeId": 243, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1530, "employeeId": 244, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2166, "employeeId": 244, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1429, "employeeId": 245, "customEffectiveDate": "2020-01-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1935, "employeeId": 245, "customEffectiveDate": "2020-06-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2053, "employeeId": 245, "customEffectiveDate": "2020-06-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3063, "employeeId": 245, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5210, "employeeId": 245, "customEffectiveDate": "2022-05-02", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1402, "employeeId": 246, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1440, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1805, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2066, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1524, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1887, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2160, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1523, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1886, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2159, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2094, "employeeId": 250, "customEffectiveDate": "2019-08-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4113, "employeeId": 250, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6609, "employeeId": 250, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7852, "employeeId": 250, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2011, "employeeId": 251, "customEffectiveDate": "2019-08-12", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2984, "employeeId": 251, "customEffectiveDate": "2021-02-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1499, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1865, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2134, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6240, "employeeId": 252, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7835, "employeeId": 252, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12087, "employeeId": 252, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-66", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2161, "employeeId": 253, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6700, "employeeId": 253, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17191, "employeeId": 253, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1470, "employeeId": 254, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1377, "employeeId": 255, "customEffectiveDate": "2019-09-03", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1743, "employeeId": 255, "customEffectiveDate": "2019-09-03", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6340, "employeeId": 255, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7837, "employeeId": 255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11919, "employeeId": 255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-68", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2096, "employeeId": 256, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2157, "employeeId": 257, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4609, "employeeId": 257, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6313, "employeeId": 257, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7839, "employeeId": 257, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1403, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1772, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2025, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1279, "employeeId": 259, "customEffectiveDate": "2009-11-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2306, "employeeId": 259, "customEffectiveDate": "2009-11-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1254, "employeeId": 260, "customEffectiveDate": "2010-02-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2255, "employeeId": 260, "customEffectiveDate": "2010-02-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6098, "employeeId": 260, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12212, "employeeId": 260, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2389, "employeeId": 261, "customEffectiveDate": "2010-10-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2913, "employeeId": 261, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6116, "employeeId": 261, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12329, "employeeId": 261, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "SYS-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 767, "employeeId": 262, "customEffectiveDate": "2011-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2276, "employeeId": 262, "customEffectiveDate": "2011-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2642, "employeeId": 262, "customEffectiveDate": "2021-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3455, "employeeId": 262, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4199, "employeeId": 262, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5945, "employeeId": 262, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8233, "employeeId": 262, "customEffectiveDate": "2023-01-14", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10512, "employeeId": 262, "customEffectiveDate": "2023-09-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11720, "employeeId": 262, "customEffectiveDate": "2023-09-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1559, "employeeId": 263, "customEffectiveDate": "2011-05-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2249, "employeeId": 263, "customEffectiveDate": "2018-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2922, "employeeId": 263, "customEffectiveDate": "2009-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6366, "employeeId": 263, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12207, "employeeId": 263, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17163, "employeeId": 263, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1268, "employeeId": 264, "customEffectiveDate": "2011-08-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2286, "employeeId": 264, "customEffectiveDate": "2011-08-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6124, "employeeId": 264, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10234, "employeeId": 264, "customEffectiveDate": "2023-03-31", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1181, "employeeId": 265, "customEffectiveDate": "2012-07-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2252, "employeeId": 265, "customEffectiveDate": "2012-07-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6537, "employeeId": 265, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7756, "employeeId": 265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11978, "employeeId": 265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1109, "employeeId": 266, "customEffectiveDate": "2012-07-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2213, "employeeId": 266, "customEffectiveDate": "2012-07-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2489, "employeeId": 266, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10063, "employeeId": 266, "customEffectiveDate": "2021-03-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2384, "employeeId": 267, "customEffectiveDate": "2012-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6556, "employeeId": 267, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7757, "employeeId": 267, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2216, "employeeId": 268, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2519, "employeeId": 268, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6033, "employeeId": 268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12178, "employeeId": 268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1315, "employeeId": 269, "customEffectiveDate": "2012-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2393, "employeeId": 269, "customEffectiveDate": "2012-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2757, "employeeId": 269, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6089, "employeeId": 269, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12332, "employeeId": 269, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 999, "employeeId": 270, "customEffectiveDate": "2013-05-13", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2325, "employeeId": 270, "customEffectiveDate": "2013-05-13", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2230, "employeeId": 271, "customEffectiveDate": "2013-09-02", "customDepartment#": "2120", "customJobCode": "Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1310, "employeeId": 272, "customEffectiveDate": "2013-09-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1309, "employeeId": 273, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2386, "employeeId": 273, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6117, "employeeId": 273, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12324, "employeeId": 273, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "ENG-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2351, "employeeId": 274, "customEffectiveDate": "2014-01-20", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2504, "employeeId": 274, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1198, "employeeId": 275, "customEffectiveDate": "2014-03-11", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1173, "employeeId": 276, "customEffectiveDate": "2014-05-19", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2234, "employeeId": 276, "customEffectiveDate": "2014-05-19", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2257, "employeeId": 277, "customEffectiveDate": "2017-11-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2250, "employeeId": 278, "customEffectiveDate": "2014-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2490, "employeeId": 278, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3295, "employeeId": 278, "customEffectiveDate": "2021-11-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4198, "employeeId": 278, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5944, "employeeId": 278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12209, "employeeId": 278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1260, "employeeId": 280, "customEffectiveDate": "2014-08-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2266, "employeeId": 280, "customEffectiveDate": "2014-08-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3172, "employeeId": 280, "customEffectiveDate": "2021-06-14", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4644, "employeeId": 280, "customEffectiveDate": "2021-12-06", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6128, "employeeId": 280, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9226, "employeeId": 280, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11815, "employeeId": 280, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2321, "employeeId": 281, "customEffectiveDate": "2014-08-04", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2474, "employeeId": 281, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6037, "employeeId": 281, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12264, "employeeId": 281, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2198, "employeeId": 282, "customEffectiveDate": "2014-08-06", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3193, "employeeId": 282, "customEffectiveDate": "2021-07-05", "customDepartment#": "2110", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1307, "employeeId": 283, "customEffectiveDate": "2014-08-06", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1930, "employeeId": 283, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2200, "employeeId": 283, "customEffectiveDate": "2020-07-29", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1256, "employeeId": 284, "customEffectiveDate": "2014-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2259, "employeeId": 284, "customEffectiveDate": "2014-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1278, "employeeId": 285, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2195, "employeeId": 286, "customEffectiveDate": "2014-10-15", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6114, "employeeId": 286, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10379, "employeeId": 286, "customEffectiveDate": "2022-12-31", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1138, "employeeId": 287, "customEffectiveDate": "2014-11-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2385, "employeeId": 287, "customEffectiveDate": "2014-11-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6263, "employeeId": 287, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7761, "employeeId": 287, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12116, "employeeId": 287, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1169, "employeeId": 288, "customEffectiveDate": "2015-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2228, "employeeId": 288, "customEffectiveDate": "2015-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1617, "employeeId": 289, "customEffectiveDate": "2015-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2298, "employeeId": 289, "customEffectiveDate": "2017-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2498, "employeeId": 289, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6264, "employeeId": 289, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7763, "employeeId": 289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12018, "employeeId": 289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2382, "employeeId": 290, "customEffectiveDate": "2015-01-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2507, "employeeId": 290, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6547, "employeeId": 290, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7764, "employeeId": 290, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1298, "employeeId": 291, "customEffectiveDate": "2015-03-23", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2355, "employeeId": 291, "customEffectiveDate": "2015-03-23", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6085, "employeeId": 291, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10163, "employeeId": 291, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11781, "employeeId": 291, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 986, "employeeId": 292, "customEffectiveDate": "2015-05-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2261, "employeeId": 292, "customEffectiveDate": "2015-05-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6456, "employeeId": 292, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10209, "employeeId": 292, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10374, "employeeId": 292, "customEffectiveDate": "2023-06-30", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2242, "employeeId": 293, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6097, "employeeId": 293, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9223, "employeeId": 293, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11813, "employeeId": 293, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-101", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1280, "employeeId": 294, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2307, "employeeId": 294, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5295, "employeeId": 294, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6149, "employeeId": 294, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12255, "employeeId": 294, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1110, "employeeId": 295, "customEffectiveDate": "2015-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6245, "employeeId": 295, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7767, "employeeId": 295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11925, "employeeId": 295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2241, "employeeId": 296, "customEffectiveDate": "2015-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6390, "employeeId": 296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12195, "employeeId": 296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2330, "employeeId": 297, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2475, "employeeId": 297, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6038, "employeeId": 297, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12277, "employeeId": 297, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1314, "employeeId": 298, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2391, "employeeId": 298, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6016, "employeeId": 298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12331, "employeeId": 298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2337, "employeeId": 299, "customEffectiveDate": "2015-09-14", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2455, "employeeId": 299, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2762, "employeeId": 299, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3336, "employeeId": 299, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6126, "employeeId": 299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12292, "employeeId": 299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1186, "employeeId": 300, "customEffectiveDate": "2015-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2283, "employeeId": 300, "customEffectiveDate": "2015-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6541, "employeeId": 300, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7769, "employeeId": 300, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12014, "employeeId": 300, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1265, "employeeId": 301, "customEffectiveDate": "2015-11-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2279, "employeeId": 301, "customEffectiveDate": "2015-11-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6076, "employeeId": 301, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12239, "employeeId": 301, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2397, "employeeId": 302, "customEffectiveDate": "2016-01-11", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2470, "employeeId": 302, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6024, "employeeId": 302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12337, "employeeId": 302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1299, "employeeId": 303, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2227, "employeeId": 304, "customEffectiveDate": "2016-02-29", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2462, "employeeId": 304, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2774, "employeeId": 304, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2987, "employeeId": 304, "customEffectiveDate": "2021-05-11", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6138, "employeeId": 304, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11711, "employeeId": 304, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1100, "employeeId": 305, "customEffectiveDate": "2016-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2280, "employeeId": 305, "customEffectiveDate": "2016-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2493, "employeeId": 305, "customEffectiveDate": "2020-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1562, "employeeId": 306, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2342, "employeeId": 307, "customEffectiveDate": "2016-05-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6104, "employeeId": 307, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10346, "employeeId": 307, "customEffectiveDate": "2023-06-30", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1308, "employeeId": 308, "customEffectiveDate": "2016-06-01", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2323, "employeeId": 309, "customEffectiveDate": "2016-10-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2499, "employeeId": 309, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4611, "employeeId": 309, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6554, "employeeId": 309, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7774, "employeeId": 309, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8236, "employeeId": 309, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1305, "employeeId": 310, "customEffectiveDate": "2016-11-07", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2376, "employeeId": 310, "customEffectiveDate": "2016-11-07", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5993, "employeeId": 310, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12298, "employeeId": 310, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2378, "employeeId": 311, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5972, "employeeId": 311, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12319, "employeeId": 311, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2339, "employeeId": 312, "customEffectiveDate": "2016-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4615, "employeeId": 312, "customEffectiveDate": "2022-02-15", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6193, "employeeId": 312, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7713, "employeeId": 312, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7777, "employeeId": 312, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11907, "employeeId": 312, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 934, "employeeId": 313, "customEffectiveDate": "2017-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2295, "employeeId": 313, "customEffectiveDate": "2017-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6679, "employeeId": 313, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2193, "employeeId": 314, "customEffectiveDate": "2017-02-27", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6000, "employeeId": 314, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12280, "employeeId": 314, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2368, "employeeId": 315, "customEffectiveDate": "2017-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3323, "employeeId": 315, "customEffectiveDate": "2021-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6262, "employeeId": 315, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7782, "employeeId": 315, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12097, "employeeId": 315, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2206, "employeeId": 316, "customEffectiveDate": "2017-04-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2454, "employeeId": 316, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2488, "employeeId": 316, "customEffectiveDate": "2020-10-01", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2766, "employeeId": 316, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2991, "employeeId": 316, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6047, "employeeId": 316, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12171, "employeeId": 316, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1351, "employeeId": 317, "customEffectiveDate": null, "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2194, "employeeId": 317, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2501, "employeeId": 317, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6113, "employeeId": 317, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12295, "employeeId": 317, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 727, "employeeId": 318, "customEffectiveDate": "2017-04-18", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2334, "employeeId": 318, "customEffectiveDate": "2017-04-18", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17179, "employeeId": 318, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2380, "employeeId": 319, "customEffectiveDate": "2019-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3265, "employeeId": 319, "customEffectiveDate": "2021-08-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6370, "employeeId": 319, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6739, "employeeId": 319, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12155, "employeeId": 319, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15963, "employeeId": 319, "customEffectiveDate": "2024-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Manager", "customPosition": "GA-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1120, "employeeId": 320, "customEffectiveDate": "2017-05-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2263, "employeeId": 320, "customEffectiveDate": "2017-05-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6256, "employeeId": 320, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7784, "employeeId": 320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11987, "employeeId": 320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1273, "employeeId": 321, "customEffectiveDate": "2017-05-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2296, "employeeId": 321, "customEffectiveDate": "2017-05-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6101, "employeeId": 321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12247, "employeeId": 321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1208, "employeeId": 322, "customEffectiveDate": "2017-05-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1621, "employeeId": 322, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2357, "employeeId": 322, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6499, "employeeId": 322, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7785, "employeeId": 322, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12086, "employeeId": 322, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1079, "employeeId": 323, "customEffectiveDate": "2017-05-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2232, "employeeId": 323, "customEffectiveDate": "2017-05-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2287, "employeeId": 324, "customEffectiveDate": "2017-05-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2495, "employeeId": 324, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6077, "employeeId": 324, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10446, "employeeId": 324, "customEffectiveDate": "2023-08-14", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11745, "employeeId": 324, "customEffectiveDate": "2023-08-14", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1712, "employeeId": 325, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2343, "employeeId": 326, "customEffectiveDate": "2017-06-01", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2468, "employeeId": 326, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2500, "employeeId": 326, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3192, "employeeId": 326, "customEffectiveDate": "2021-07-05", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6142, "employeeId": 326, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10545, "employeeId": 326, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11714, "employeeId": 326, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2294, "employeeId": 327, "customEffectiveDate": "2017-07-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2497, "employeeId": 327, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6079, "employeeId": 327, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10450, "employeeId": 327, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11743, "employeeId": 327, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1289, "employeeId": 328, "customEffectiveDate": "2017-07-10", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2333, "employeeId": 328, "customEffectiveDate": "2017-07-10", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6057, "employeeId": 328, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10505, "employeeId": 328, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11724, "employeeId": 328, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "ENG-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1686, "employeeId": 329, "customEffectiveDate": "2017-07-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2187, "employeeId": 329, "customEffectiveDate": "2020-03-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3457, "employeeId": 329, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4196, "employeeId": 329, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5936, "employeeId": 329, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10056, "employeeId": 329, "customEffectiveDate": "2023-04-03", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11833, "employeeId": 329, "customEffectiveDate": "2023-04-03", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2265, "employeeId": 330, "customEffectiveDate": "2017-07-17", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5983, "employeeId": 330, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10370, "employeeId": 330, "customEffectiveDate": "2023-01-24", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2318, "employeeId": 331, "customEffectiveDate": "2017-07-17", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2452, "employeeId": 331, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2759, "employeeId": 331, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5956, "employeeId": 331, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12262, "employeeId": 331, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1290, "employeeId": 332, "customEffectiveDate": "2017-07-17", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1899, "employeeId": 332, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2335, "employeeId": 332, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5299, "employeeId": 332, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6150, "employeeId": 332, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12284, "employeeId": 332, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2303, "employeeId": 333, "customEffectiveDate": "2019-10-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1271, "employeeId": 334, "customEffectiveDate": "2017-08-07", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2293, "employeeId": 334, "customEffectiveDate": "2020-07-20", "customDepartment#": "2120", "customJobCode": "Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2461, "employeeId": 334, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2272, "employeeId": 335, "customEffectiveDate": "2017-08-14", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2472, "employeeId": 335, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6028, "employeeId": 335, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12232, "employeeId": 335, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1366, "employeeId": 336, "customEffectiveDate": "2017-08-21", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2364, "employeeId": 336, "customEffectiveDate": "2017-08-21", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3259, "employeeId": 336, "customEffectiveDate": "2021-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6546, "employeeId": 336, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7790, "employeeId": 336, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12093, "employeeId": 336, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2370, "employeeId": 337, "customEffectiveDate": "2017-08-21", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2469, "employeeId": 337, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4237, "employeeId": 337, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6044, "employeeId": 337, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12313, "employeeId": 337, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 971, "employeeId": 338, "customEffectiveDate": "2017-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2211, "employeeId": 338, "customEffectiveDate": "2017-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2320, "employeeId": 339, "customEffectiveDate": "2017-09-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2510, "employeeId": 339, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6154, "employeeId": 339, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12263, "employeeId": 339, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1162, "employeeId": 340, "customEffectiveDate": "2017-09-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2324, "employeeId": 340, "customEffectiveDate": "2017-09-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6227, "employeeId": 340, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7792, "employeeId": 340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12052, "employeeId": 340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1114, "employeeId": 341, "customEffectiveDate": "2017-09-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6254, "employeeId": 341, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7794, "employeeId": 341, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11965, "employeeId": 341, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 698, "employeeId": 342, "customEffectiveDate": "2017-10-01", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2264, "employeeId": 342, "customEffectiveDate": "2019-01-11", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2449, "employeeId": 342, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3545, "employeeId": 342, "customEffectiveDate": "2021-05-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3998, "employeeId": 342, "customEffectiveDate": "2021-12-22", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6131, "employeeId": 342, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10347, "employeeId": 342, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 686, "employeeId": 343, "customEffectiveDate": "2017-10-16", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5923, "employeeId": 343, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7795, "employeeId": 343, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10595, "employeeId": 343, "customEffectiveDate": "2023-09-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11717, "employeeId": 343, "customEffectiveDate": "2023-09-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New department", "customPosition": "FO-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2282, "employeeId": 344, "customEffectiveDate": "2017-10-16", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2494, "employeeId": 344, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1311, "employeeId": 345, "customEffectiveDate": "2017-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2387, "employeeId": 345, "customEffectiveDate": "2017-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2383, "employeeId": 346, "customEffectiveDate": "2018-02-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2508, "employeeId": 346, "customEffectiveDate": "2020-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2189, "employeeId": 347, "customEffectiveDate": "2018-02-12", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6010, "employeeId": 347, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9224, "employeeId": 347, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11814, "employeeId": 347, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2233, "employeeId": 348, "customEffectiveDate": "2018-04-02", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5125, "employeeId": 348, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6532, "employeeId": 348, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7805, "employeeId": 348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1362, "employeeId": 349, "customEffectiveDate": "2018-05-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1084, "employeeId": 350, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2202, "employeeId": 350, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2388, "employeeId": 351, "customEffectiveDate": "2018-06-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2509, "employeeId": 351, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6115, "employeeId": 351, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12326, "employeeId": 351, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1354, "employeeId": 352, "customEffectiveDate": "2018-06-07", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2398, "employeeId": 352, "customEffectiveDate": "2018-06-07", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2916, "employeeId": 352, "customEffectiveDate": "2021-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6462, "employeeId": 352, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9119, "employeeId": 352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10197, "employeeId": 352, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11853, "employeeId": 352, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "PRD-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1616, "employeeId": 353, "customEffectiveDate": "2018-07-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3459, "employeeId": 353, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4200, "employeeId": 353, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5931, "employeeId": 353, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7661, "employeeId": 353, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12129, "employeeId": 353, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2367, "employeeId": 354, "customEffectiveDate": "2018-07-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2506, "employeeId": 354, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6155, "employeeId": 354, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12312, "employeeId": 354, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2289, "employeeId": 355, "customEffectiveDate": "2018-08-06", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2453, "employeeId": 355, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2761, "employeeId": 355, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5955, "employeeId": 355, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10507, "employeeId": 355, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11015, "employeeId": 355, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of aura role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11703, "employeeId": 355, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of aura role", "customPosition": "ENG-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1157, "employeeId": 356, "customEffectiveDate": "2018-08-13", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2390, "employeeId": 356, "customEffectiveDate": "2022-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6548, "employeeId": 356, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7810, "employeeId": 356, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2186, "employeeId": 357, "customEffectiveDate": "2018-09-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6317, "employeeId": 357, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7811, "employeeId": 357, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11917, "employeeId": 357, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2394, "employeeId": 358, "customEffectiveDate": "2019-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2989, "employeeId": 358, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6052, "employeeId": 358, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12333, "employeeId": 358, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2214, "employeeId": 359, "customEffectiveDate": "2018-09-10", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5920, "employeeId": 359, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7813, "employeeId": 359, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10020, "employeeId": 359, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11803, "employeeId": 359, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1710, "employeeId": 360, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1282, "employeeId": 361, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2311, "employeeId": 361, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2467, "employeeId": 361, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6021, "employeeId": 361, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12258, "employeeId": 361, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2336, "employeeId": 362, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5992, "employeeId": 362, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12286, "employeeId": 362, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2350, "employeeId": 363, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2503, "employeeId": 363, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6083, "employeeId": 363, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10451, "employeeId": 363, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11744, "employeeId": 363, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1242, "employeeId": 364, "customEffectiveDate": "2018-10-15", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3305, "employeeId": 364, "customEffectiveDate": "2021-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6461, "employeeId": 364, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10534, "employeeId": 364, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1267, "employeeId": 365, "customEffectiveDate": "2018-10-15", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2285, "employeeId": 365, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2465, "employeeId": 365, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6029, "employeeId": 365, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7697, "employeeId": 365, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9225, "employeeId": 365, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11816, "employeeId": 365, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2341, "employeeId": 366, "customEffectiveDate": "2018-11-19", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2479, "employeeId": 366, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2603, "employeeId": 366, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2824, "employeeId": 366, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5980, "employeeId": 366, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10175, "employeeId": 366, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11779, "employeeId": 366, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2361, "employeeId": 367, "customEffectiveDate": "2018-11-27", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2505, "employeeId": 367, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1281, "employeeId": 368, "customEffectiveDate": "2019-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2309, "employeeId": 368, "customEffectiveDate": "2019-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2769, "employeeId": 368, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5487, "employeeId": 368, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6134, "employeeId": 368, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11018, "employeeId": 368, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11148, "employeeId": 368, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11685, "employeeId": 368, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "ENG-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1016, "employeeId": 369, "customEffectiveDate": "2018-04-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2372, "employeeId": 369, "customEffectiveDate": "2018-04-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6484, "employeeId": 369, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6749, "employeeId": 369, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11616, "employeeId": 369, "customEffectiveDate": "2019-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12150, "employeeId": 369, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1361, "employeeId": 370, "customEffectiveDate": "2019-01-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2277, "employeeId": 370, "customEffectiveDate": "2019-01-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2940, "employeeId": 370, "customEffectiveDate": "2021-04-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6498, "employeeId": 370, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7818, "employeeId": 370, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12004, "employeeId": 370, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2231, "employeeId": 371, "customEffectiveDate": "2019-01-14", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6464, "employeeId": 371, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10188, "employeeId": 371, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1266, "employeeId": 372, "customEffectiveDate": "2019-01-14", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1929, "employeeId": 372, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2281, "employeeId": 372, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6100, "employeeId": 372, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9189, "employeeId": 372, "customEffectiveDate": "2023-04-11", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11827, "employeeId": 372, "customEffectiveDate": "2023-04-11", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2197, "employeeId": 373, "customEffectiveDate": "2019-01-14", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2990, "employeeId": 373, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6051, "employeeId": 373, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12311, "employeeId": 373, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1245, "employeeId": 374, "customEffectiveDate": "2019-01-15", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3954, "employeeId": 374, "customEffectiveDate": "2021-12-29", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5995, "employeeId": 374, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12174, "employeeId": 374, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15899, "employeeId": 374, "customEffectiveDate": "2024-01-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 958, "employeeId": 375, "customEffectiveDate": "2019-01-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2360, "employeeId": 375, "customEffectiveDate": "2019-01-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3369, "employeeId": 375, "customEffectiveDate": "2021-09-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6681, "employeeId": 375, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17178, "employeeId": 375, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1205, "employeeId": 376, "customEffectiveDate": "2019-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2352, "employeeId": 376, "customEffectiveDate": "2019-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6545, "employeeId": 376, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7821, "employeeId": 376, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1364, "employeeId": 378, "customEffectiveDate": "2019-02-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2358, "employeeId": 378, "customEffectiveDate": "2019-02-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1165, "employeeId": 379, "customEffectiveDate": "2019-12-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2344, "employeeId": 379, "customEffectiveDate": "2019-12-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1111, "employeeId": 380, "customEffectiveDate": "2019-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6250, "employeeId": 380, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7822, "employeeId": 380, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11928, "employeeId": 380, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2246, "employeeId": 381, "customEffectiveDate": "2019-03-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2640, "employeeId": 381, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6073, "employeeId": 381, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7730, "employeeId": 381, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11772, "employeeId": 381, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-103", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1187, "employeeId": 382, "customEffectiveDate": "2019-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2300, "employeeId": 382, "customEffectiveDate": "2019-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6542, "employeeId": 382, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7823, "employeeId": 382, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12019, "employeeId": 382, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2275, "employeeId": 383, "customEffectiveDate": "2019-03-04", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2477, "employeeId": 383, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2601, "employeeId": 383, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2823, "employeeId": 383, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5977, "employeeId": 383, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10185, "employeeId": 383, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11776, "employeeId": 383, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 917, "employeeId": 384, "customEffectiveDate": "2019-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2220, "employeeId": 384, "customEffectiveDate": "2019-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2486, "employeeId": 384, "customEffectiveDate": "2020-10-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6693, "employeeId": 384, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17154, "employeeId": 384, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2188, "employeeId": 385, "customEffectiveDate": "2019-04-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5967, "employeeId": 385, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12205, "employeeId": 385, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1276, "employeeId": 386, "customEffectiveDate": "2019-04-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2302, "employeeId": 386, "customEffectiveDate": "2019-04-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6162, "employeeId": 386, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9135, "employeeId": 386, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11832, "employeeId": 386, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1095, "employeeId": 387, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1297, "employeeId": 388, "customEffectiveDate": "2019-04-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2354, "employeeId": 388, "customEffectiveDate": "2019-04-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6105, "employeeId": 388, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12305, "employeeId": 388, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2299, "employeeId": 389, "customEffectiveDate": "2019-04-17", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5999, "employeeId": 389, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12249, "employeeId": 389, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16050, "employeeId": 389, "customEffectiveDate": "2024-01-23", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Manager", "customPosition": "ENG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1155, "employeeId": 390, "customEffectiveDate": "2019-05-01", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2329, "employeeId": 390, "customEffectiveDate": "2019-05-01", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1178, "employeeId": 391, "customEffectiveDate": "2019-05-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2237, "employeeId": 391, "customEffectiveDate": "2019-05-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6496, "employeeId": 391, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7831, "employeeId": 391, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11954, "employeeId": 391, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1243, "employeeId": 392, "customEffectiveDate": "2019-05-13", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6054, "employeeId": 392, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12172, "employeeId": 392, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1090, "employeeId": 393, "customEffectiveDate": "2019-05-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4636, "employeeId": 393, "customEffectiveDate": "2022-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7832, "employeeId": 393, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11937, "employeeId": 393, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15892, "employeeId": 393, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1237, "employeeId": 394, "customEffectiveDate": "2019-06-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2327, "employeeId": 394, "customEffectiveDate": "2019-06-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2223, "employeeId": 395, "customEffectiveDate": "2019-06-10", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2476, "employeeId": 395, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2600, "employeeId": 395, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2826, "employeeId": 395, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5974, "employeeId": 395, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10183, "employeeId": 395, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11769, "employeeId": 395, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1253, "employeeId": 396, "customEffectiveDate": "2019-06-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2254, "employeeId": 396, "customEffectiveDate": "2019-06-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5293, "employeeId": 396, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6145, "employeeId": 396, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8164, "employeeId": 396, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9178, "employeeId": 396, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11443, "employeeId": 396, "customEffectiveDate": "2023-11-21", "customDepartment#": "2120", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11654, "employeeId": 396, "customEffectiveDate": "2023-11-21", "customDepartment#": "2120", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1248, "employeeId": 397, "customEffectiveDate": "2019-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2225, "employeeId": 397, "customEffectiveDate": "2019-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2451, "employeeId": 397, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2758, "employeeId": 397, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1230, "employeeId": 398, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2278, "employeeId": 398, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2458, "employeeId": 398, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2581, "employeeId": 398, "customEffectiveDate": "2020-11-11", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5970, "employeeId": 398, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12237, "employeeId": 398, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17239, "employeeId": 398, "customEffectiveDate": "2024-02-26", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Engineering Team", "customPosition": "ENG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2347, "employeeId": 399, "customEffectiveDate": "2019-07-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2502, "employeeId": 399, "customEffectiveDate": "2020-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6328, "employeeId": 399, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7834, "employeeId": 399, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12069, "employeeId": 399, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1240, "employeeId": 400, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2373, "employeeId": 400, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2457, "employeeId": 400, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2764, "employeeId": 400, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5962, "employeeId": 400, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10504, "employeeId": 400, "customEffectiveDate": "2023-08-22", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11738, "employeeId": 400, "customEffectiveDate": "2023-08-22", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2340, "employeeId": 401, "customEffectiveDate": "2019-07-03", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4610, "employeeId": 401, "customEffectiveDate": "2022-03-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6375, "employeeId": 401, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6744, "employeeId": 401, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13727, "employeeId": 401, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1134, "employeeId": 402, "customEffectiveDate": "2019-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2353, "employeeId": 402, "customEffectiveDate": "2019-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6261, "employeeId": 402, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7836, "employeeId": 402, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12081, "employeeId": 402, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-67", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2219, "employeeId": 403, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2450, "employeeId": 403, "customEffectiveDate": "2019-09-23", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5758, "employeeId": 403, "customEffectiveDate": "2022-09-05", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5951, "employeeId": 403, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10594, "employeeId": 403, "customEffectiveDate": "2023-11-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13711, "employeeId": 403, "customEffectiveDate": "2023-11-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "ENG-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1249, "employeeId": 404, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2238, "employeeId": 404, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1135, "employeeId": 405, "customEffectiveDate": "2019-09-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2356, "employeeId": 405, "customEffectiveDate": "2019-09-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5289, "employeeId": 405, "customEffectiveDate": "2022-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6249, "employeeId": 405, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7838, "employeeId": 405, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12085, "employeeId": 405, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2235, "employeeId": 406, "customEffectiveDate": "2019-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6534, "employeeId": 406, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7840, "employeeId": 406, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11948, "employeeId": 406, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1250, "employeeId": 407, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1262, "employeeId": 408, "customEffectiveDate": "2019-10-01", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5416, "employeeId": 408, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6020, "employeeId": 408, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12230, "employeeId": 408, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2314, "employeeId": 409, "customEffectiveDate": "2019-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6467, "employeeId": 409, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10203, "employeeId": 409, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11841, "employeeId": 409, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2331, "employeeId": 410, "customEffectiveDate": "2019-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2886, "employeeId": 410, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3075, "employeeId": 410, "customEffectiveDate": "2021-06-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6170, "employeeId": 410, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12278, "employeeId": 410, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1264, "employeeId": 411, "customEffectiveDate": "2019-10-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2274, "employeeId": 411, "customEffectiveDate": "2019-10-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2491, "employeeId": 411, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6075, "employeeId": 411, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10452, "employeeId": 411, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11742, "employeeId": 411, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1222, "employeeId": 412, "customEffectiveDate": "2019-10-14", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5778, "employeeId": 412, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10176, "employeeId": 412, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11770, "employeeId": 412, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-199", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1107, "employeeId": 413, "customEffectiveDate": "2019-10-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2381, "employeeId": 413, "customEffectiveDate": "2019-10-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3520, "employeeId": 413, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6509, "employeeId": 413, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7841, "employeeId": 413, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10075, "employeeId": 413, "customEffectiveDate": "2023-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11807, "employeeId": 413, "customEffectiveDate": "2023-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2292, "employeeId": 414, "customEffectiveDate": "2019-10-21", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3006, "employeeId": 414, "customEffectiveDate": "2020-11-30", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4706, "employeeId": 414, "customEffectiveDate": "2022-03-15", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6457, "employeeId": 414, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10367, "employeeId": 414, "customEffectiveDate": "2023-01-18", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1117, "employeeId": 415, "customEffectiveDate": "2019-11-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2253, "employeeId": 415, "customEffectiveDate": "2019-11-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2199, "employeeId": 416, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6088, "employeeId": 416, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9194, "employeeId": 416, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11822, "employeeId": 416, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1257, "employeeId": 418, "customEffectiveDate": "2020-01-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2260, "employeeId": 418, "customEffectiveDate": "2020-01-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6121, "employeeId": 418, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12217, "employeeId": 418, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-66", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2072, "employeeId": 419, "customEffectiveDate": "2019-10-29", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2291, "employeeId": 421, "customEffectiveDate": "2019-11-04", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2473, "employeeId": 421, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6030, "employeeId": 421, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12246, "employeeId": 421, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1641, "employeeId": 428, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1648, "employeeId": 430, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1646, "employeeId": 432, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1637, "employeeId": 433, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1627, "employeeId": 436, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1634, "employeeId": 440, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1635, "employeeId": 442, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1645, "employeeId": 448, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1632, "employeeId": 451, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1638, "employeeId": 452, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1642, "employeeId": 456, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1636, "employeeId": 458, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1639, "employeeId": 461, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1640, "employeeId": 463, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1630, "employeeId": 468, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1628, "employeeId": 470, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1631, "employeeId": 471, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1643, "employeeId": 472, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1633, "employeeId": 476, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1629, "employeeId": 478, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1644, "employeeId": 483, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2814, "employeeId": 489, "customEffectiveDate": "2019-09-11", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1647, "employeeId": 496, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2036, "employeeId": 499, "customEffectiveDate": "2020-02-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6286, "employeeId": 499, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7858, "employeeId": 499, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11966, "employeeId": 499, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2205, "employeeId": 533, "customEffectiveDate": "2020-05-04", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5964, "employeeId": 533, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12169, "employeeId": 533, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-75", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1923, "employeeId": 546, "customEffectiveDate": "2020-06-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3349, "employeeId": 546, "customEffectiveDate": "2021-09-06", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5274, "employeeId": 546, "customEffectiveDate": "2022-07-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6152, "employeeId": 546, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12315, "employeeId": 546, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1716, "employeeId": 547, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1715, "employeeId": 548, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1713, "employeeId": 552, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1714, "employeeId": 563, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2190, "employeeId": 569, "customEffectiveDate": "2019-12-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2770, "employeeId": 569, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4655, "employeeId": 569, "customEffectiveDate": "2022-02-14", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6132, "employeeId": 569, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11019, "employeeId": 569, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11702, "employeeId": 569, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "ENG-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2322, "employeeId": 570, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5971, "employeeId": 570, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12265, "employeeId": 570, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17419, "employeeId": 570, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1244, "employeeId": 571, "customEffectiveDate": "2020-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2209, "employeeId": 571, "customEffectiveDate": "2020-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2768, "employeeId": 571, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1094, "employeeId": 572, "customEffectiveDate": "2019-11-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6325, "employeeId": 572, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7843, "employeeId": 572, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11960, "employeeId": 572, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2196, "employeeId": 573, "customEffectiveDate": "2019-10-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6331, "employeeId": 573, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7842, "employeeId": 573, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12090, "employeeId": 573, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2313, "employeeId": 574, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2478, "employeeId": 574, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2602, "employeeId": 574, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5986, "employeeId": 574, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12259, "employeeId": 574, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2267, "employeeId": 575, "customEffectiveDate": "2020-02-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2825, "employeeId": 575, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5978, "employeeId": 575, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10180, "employeeId": 575, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11777, "employeeId": 575, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16941, "employeeId": 575, "customEffectiveDate": "2024-04-01", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Entity", "customPosition": "ENG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1317, "employeeId": 576, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2396, "employeeId": 576, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6072, "employeeId": 576, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12334, "employeeId": 576, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2301, "employeeId": 577, "customEffectiveDate": "2019-12-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2771, "employeeId": 577, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1285, "employeeId": 578, "customEffectiveDate": "2019-12-02", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2326, "employeeId": 578, "customEffectiveDate": "2019-12-02", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6081, "employeeId": 578, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12275, "employeeId": 578, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 954, "employeeId": 579, "customEffectiveDate": "2019-12-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2348, "employeeId": 579, "customEffectiveDate": "2019-12-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1395, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1765, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2018, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6506, "employeeId": 580, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7844, "employeeId": 580, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11936, "employeeId": 580, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-74", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1415, "employeeId": 581, "customEffectiveDate": "2019-10-29", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2005, "employeeId": 582, "customEffectiveDate": "2019-10-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3343, "employeeId": 582, "customEffectiveDate": "2021-08-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2051, "employeeId": 583, "customEffectiveDate": "2019-11-11", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2594, "employeeId": 583, "customEffectiveDate": "2020-12-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6455, "employeeId": 583, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7725, "employeeId": 583, "customEffectiveDate": "2022-12-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10193, "employeeId": 583, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11834, "employeeId": 583, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2128, "employeeId": 584, "customEffectiveDate": "2019-12-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2191, "employeeId": 587, "customEffectiveDate": "2020-01-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2887, "employeeId": 587, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3972, "employeeId": 587, "customEffectiveDate": "2021-12-16", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4111, "employeeId": 587, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6597, "employeeId": 587, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7655, "employeeId": 587, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13726, "employeeId": 587, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1193, "employeeId": 588, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2317, "employeeId": 588, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6544, "employeeId": 588, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7850, "employeeId": 588, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 431, "employeeId": 589, "customEffectiveDate": "2019-11-11", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2152, "employeeId": 590, "customEffectiveDate": "2019-12-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6682, "employeeId": 590, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17189, "employeeId": 590, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2923, "employeeId": 591, "customEffectiveDate": "2020-01-21", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2028, "employeeId": 592, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6584, "employeeId": 592, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7851, "employeeId": 592, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11951, "employeeId": 592, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-80", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2006, "employeeId": 593, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5213, "employeeId": 593, "customEffectiveDate": "2022-05-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6395, "employeeId": 593, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2090, "employeeId": 594, "customEffectiveDate": "2020-01-13", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2029, "employeeId": 595, "customEffectiveDate": "2020-01-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6631, "employeeId": 595, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7848, "employeeId": 595, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11953, "employeeId": 595, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-79", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2092, "employeeId": 599, "customEffectiveDate": "2019-12-09", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6299, "employeeId": 599, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7845, "employeeId": 599, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12040, "employeeId": 599, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-75", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2079, "employeeId": 600, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6492, "employeeId": 600, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6727, "employeeId": 600, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1479, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1846, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2113, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1277, "employeeId": 602, "customEffectiveDate": "2020-01-20", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2304, "employeeId": 602, "customEffectiveDate": "2020-01-20", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6013, "employeeId": 602, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12253, "employeeId": 602, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-68", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2338, "employeeId": 603, "customEffectiveDate": "2019-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6191, "employeeId": 603, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7710, "employeeId": 603, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7846, "employeeId": 603, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11912, "employeeId": 603, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-76", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1294, "employeeId": 604, "customEffectiveDate": "2020-01-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2346, "employeeId": 604, "customEffectiveDate": "2020-01-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6059, "employeeId": 604, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12297, "employeeId": 604, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2349, "employeeId": 605, "customEffectiveDate": "2020-01-06", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2604, "employeeId": 605, "customEffectiveDate": "2021-05-03", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6483, "employeeId": 605, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6748, "employeeId": 605, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1180, "employeeId": 606, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2251, "employeeId": 606, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6536, "employeeId": 606, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7854, "employeeId": 606, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11975, "employeeId": 606, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-82", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1123, "employeeId": 607, "customEffectiveDate": "2020-02-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2308, "employeeId": 607, "customEffectiveDate": "2020-02-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6259, "employeeId": 607, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7855, "employeeId": 607, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12029, "employeeId": 607, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-83", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1219, "employeeId": 608, "customEffectiveDate": "2020-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2359, "employeeId": 608, "customEffectiveDate": "2020-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4103, "employeeId": 608, "customEffectiveDate": "2022-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6551, "employeeId": 608, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7862, "employeeId": 608, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12088, "employeeId": 608, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16873, "employeeId": 608, "customEffectiveDate": "2024-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Moving from People Manager to IC", "customPosition": "FO-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2222, "employeeId": 609, "customEffectiveDate": "2020-03-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 856, "employeeId": 610, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2375, "employeeId": 610, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6683, "employeeId": 610, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17187, "employeeId": 610, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2210, "employeeId": 611, "customEffectiveDate": "2020-04-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2471, "employeeId": 611, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4235, "employeeId": 611, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6025, "employeeId": 611, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7698, "employeeId": 611, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11915, "employeeId": 611, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2201, "employeeId": 613, "customEffectiveDate": "2020-03-02", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2822, "employeeId": 613, "customEffectiveDate": "2021-02-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6107, "employeeId": 613, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10378, "employeeId": 613, "customEffectiveDate": "2022-12-26", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2035, "employeeId": 614, "customEffectiveDate": "2020-01-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2146, "employeeId": 615, "customEffectiveDate": "2020-01-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6504, "employeeId": 615, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7853, "employeeId": 615, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12109, "employeeId": 615, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-81", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2111, "employeeId": 616, "customEffectiveDate": "2020-02-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6502, "employeeId": 616, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7856, "employeeId": 616, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12057, "employeeId": 616, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-86", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1387, "employeeId": 617, "customEffectiveDate": "2020-02-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1755, "employeeId": 617, "customEffectiveDate": "2020-02-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2098, "employeeId": 618, "customEffectiveDate": "2020-02-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6611, "employeeId": 618, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7857, "employeeId": 618, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12045, "employeeId": 618, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-85", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2073, "employeeId": 619, "customEffectiveDate": "2020-02-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6336, "employeeId": 619, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7859, "employeeId": 619, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12016, "employeeId": 619, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-88", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2010, "employeeId": 620, "customEffectiveDate": "2020-02-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6408, "employeeId": 620, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12183, "employeeId": 620, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2099, "employeeId": 621, "customEffectiveDate": "2020-02-24", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2480, "employeeId": 621, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6505, "employeeId": 621, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2032, "employeeId": 622, "customEffectiveDate": "2020-02-24", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6283, "employeeId": 622, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7860, "employeeId": 622, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9113, "employeeId": 622, "customEffectiveDate": "2023-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11890, "employeeId": 622, "customEffectiveDate": "2023-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-87", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2109, "employeeId": 623, "customEffectiveDate": "2019-12-09", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1546, "employeeId": 624, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2158, "employeeId": 625, "customEffectiveDate": "2020-01-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6362, "employeeId": 625, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7847, "employeeId": 625, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12119, "employeeId": 625, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2115, "employeeId": 626, "customEffectiveDate": "2020-01-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3329, "employeeId": 626, "customEffectiveDate": "2021-08-30", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4600, "employeeId": 626, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8097, "employeeId": 626, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12064, "employeeId": 626, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15893, "employeeId": 626, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2167, "employeeId": 627, "customEffectiveDate": "2017-12-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2997, "employeeId": 627, "customEffectiveDate": "2021-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7798, "employeeId": 627, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11138, "employeeId": 627, "customEffectiveDate": "2023-10-02", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11696, "employeeId": 627, "customEffectiveDate": "2023-10-02", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15894, "employeeId": 627, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2062, "employeeId": 628, "customEffectiveDate": "2020-01-13", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2853, "employeeId": 628, "customEffectiveDate": "2021-02-15", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6111, "employeeId": 628, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12226, "employeeId": 628, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-67", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2139, "employeeId": 629, "customEffectiveDate": "2017-01-10", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4342, "employeeId": 629, "customEffectiveDate": "2022-01-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6222, "employeeId": 629, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7718, "employeeId": 629, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7778, "employeeId": 629, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9116, "employeeId": 629, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11894, "employeeId": 629, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2075, "employeeId": 630, "customEffectiveDate": "2020-02-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6491, "employeeId": 630, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6728, "employeeId": 630, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12145, "employeeId": 630, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1615, "employeeId": 631, "customEffectiveDate": "2017-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2008, "employeeId": 633, "customEffectiveDate": "2020-03-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6501, "employeeId": 633, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7863, "employeeId": 633, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12114, "employeeId": 633, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-94", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2258, "employeeId": 634, "customEffectiveDate": "2020-04-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6538, "employeeId": 634, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7868, "employeeId": 634, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1572, "employeeId": 635, "customEffectiveDate": "2020-04-14", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2273, "employeeId": 635, "customEffectiveDate": "2020-04-14", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6099, "employeeId": 635, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12234, "employeeId": 635, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2316, "employeeId": 636, "customEffectiveDate": "2020-03-02", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2993, "employeeId": 636, "customEffectiveDate": "2021-04-26", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6175, "employeeId": 636, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7864, "employeeId": 636, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11427, "employeeId": 636, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11662, "employeeId": 636, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-93", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2247, "employeeId": 637, "customEffectiveDate": "2020-03-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6497, "employeeId": 637, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7865, "employeeId": 637, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11972, "employeeId": 637, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-92", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2087, "employeeId": 638, "customEffectiveDate": "2020-02-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6355, "employeeId": 638, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7861, "employeeId": 638, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12034, "employeeId": 638, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-89", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1994, "employeeId": 639, "customEffectiveDate": "2020-03-02", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4030, "employeeId": 639, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6576, "employeeId": 639, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7866, "employeeId": 639, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11916, "employeeId": 639, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1609, "employeeId": 640, "customEffectiveDate": "2020-03-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1796, "employeeId": 640, "customEffectiveDate": "2020-03-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1663, "employeeId": 642, "customEffectiveDate": "2020-04-20", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2041, "employeeId": 642, "customEffectiveDate": "2020-04-20", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1665, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1746, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2000, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6577, "employeeId": 643, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7867, "employeeId": 643, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1667, "employeeId": 644, "customEffectiveDate": "2020-04-20", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2371, "employeeId": 644, "customEffectiveDate": "2020-04-20", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6684, "employeeId": 644, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17186, "employeeId": 644, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2270, "employeeId": 645, "customEffectiveDate": "2020-06-22", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2464, "employeeId": 645, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2580, "employeeId": 645, "customEffectiveDate": "2020-11-11", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6027, "employeeId": 645, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12229, "employeeId": 645, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1670, "employeeId": 646, "customEffectiveDate": "2020-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2767, "employeeId": 646, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6003, "employeeId": 646, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12194, "employeeId": 646, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-79", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1671, "employeeId": 647, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2269, "employeeId": 647, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6068, "employeeId": 647, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12228, "employeeId": 647, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2245, "employeeId": 648, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2463, "employeeId": 648, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6019, "employeeId": 648, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12198, "employeeId": 648, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2392, "employeeId": 649, "customEffectiveDate": "2020-04-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6334, "employeeId": 649, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7869, "employeeId": 649, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1674, "employeeId": 650, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2310, "employeeId": 650, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6466, "employeeId": 650, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10202, "employeeId": 650, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13728, "employeeId": 650, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2013, "employeeId": 651, "customEffectiveDate": "2020-03-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3187, "employeeId": 651, "customEffectiveDate": "2021-07-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6667, "employeeId": 651, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8102, "employeeId": 651, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2061, "employeeId": 652, "customEffectiveDate": "2020-03-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6659, "employeeId": 652, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8103, "employeeId": 652, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1682, "employeeId": 653, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6555, "employeeId": 653, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7879, "employeeId": 653, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12053, "employeeId": 653, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-103", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1685, "employeeId": 654, "customEffectiveDate": "2019-03-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2064, "employeeId": 655, "customEffectiveDate": "2020-04-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1689, "employeeId": 656, "customEffectiveDate": "2020-04-06", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2080, "employeeId": 656, "customEffectiveDate": "2020-04-06", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6294, "employeeId": 656, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7870, "employeeId": 656, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12021, "employeeId": 656, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-95", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1692, "employeeId": 658, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2365, "employeeId": 658, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6472, "employeeId": 658, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10206, "employeeId": 658, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11848, "employeeId": 658, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1707, "employeeId": 659, "customEffectiveDate": "2020-08-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2271, "employeeId": 659, "customEffectiveDate": "2020-08-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6160, "employeeId": 659, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12231, "employeeId": 659, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-80", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1706, "employeeId": 662, "customEffectiveDate": "2020-05-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6055, "employeeId": 662, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12197, "employeeId": 662, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-74", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2319, "employeeId": 663, "customEffectiveDate": "2020-05-18", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6645, "employeeId": 663, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8104, "employeeId": 663, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10033, "employeeId": 663, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11800, "employeeId": 663, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-98", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2052, "employeeId": 664, "customEffectiveDate": "2020-05-11", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2999, "employeeId": 664, "customEffectiveDate": "2021-04-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6511, "employeeId": 664, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7872, "employeeId": 664, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11984, "employeeId": 664, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-97", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2149, "employeeId": 665, "customEffectiveDate": "2020-04-20", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1724, "employeeId": 667, "customEffectiveDate": "2020-04-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6293, "employeeId": 667, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7871, "employeeId": 667, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12012, "employeeId": 667, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16087, "employeeId": 667, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1900, "employeeId": 668, "customEffectiveDate": "2020-05-18", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2288, "employeeId": 668, "customEffectiveDate": "2020-05-18", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5991, "employeeId": 668, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12244, "employeeId": 668, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-76", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2083, "employeeId": 669, "customEffectiveDate": "2020-06-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2966, "employeeId": 669, "customEffectiveDate": "2021-06-09", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6423, "employeeId": 669, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9171, "employeeId": 669, "customEffectiveDate": "2023-04-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11513, "employeeId": 669, "customEffectiveDate": "2023-11-22", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2312, "employeeId": 670, "customEffectiveDate": "2020-06-08", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6190, "employeeId": 670, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7873, "employeeId": 670, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1918, "employeeId": 671, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6119, "employeeId": 671, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10032, "employeeId": 671, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10350, "employeeId": 671, "customEffectiveDate": "2023-06-21", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17210, "employeeId": 671, "customEffectiveDate": "2024-05-05", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Rehired", "customPosition": "ENG-240", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1920, "employeeId": 672, "customEffectiveDate": "2020-06-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2142, "employeeId": 672, "customEffectiveDate": "2020-06-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6308, "employeeId": 672, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7874, "employeeId": 672, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12105, "employeeId": 672, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-99", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1924, "employeeId": 674, "customEffectiveDate": "2020-09-14", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2456, "employeeId": 674, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2763, "employeeId": 674, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5960, "employeeId": 674, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12304, "employeeId": 674, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17241, "employeeId": 674, "customEffectiveDate": "2024-02-26", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Engineering Team", "customPosition": "ENG-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2112, "employeeId": 676, "customEffectiveDate": "2020-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6451, "employeeId": 676, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1922, "employeeId": 677, "customEffectiveDate": "2021-08-23", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5162, "employeeId": 677, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6015, "employeeId": 677, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12328, "employeeId": 677, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-179", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1926, "employeeId": 678, "customEffectiveDate": "2020-09-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6064, "employeeId": 678, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12182, "employeeId": 678, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-81", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1925, "employeeId": 679, "customEffectiveDate": "2020-06-29", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2290, "employeeId": 679, "customEffectiveDate": "2020-06-29", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6012, "employeeId": 679, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12245, "employeeId": 679, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2192, "employeeId": 681, "customEffectiveDate": "2020-06-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2077, "employeeId": 682, "customEffectiveDate": "2020-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1939, "employeeId": 684, "customEffectiveDate": "2020-09-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5294, "employeeId": 684, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6148, "employeeId": 684, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12254, "employeeId": 684, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-82", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1940, "employeeId": 685, "customEffectiveDate": "2020-08-03", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2374, "employeeId": 685, "customEffectiveDate": "2020-08-03", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4612, "employeeId": 685, "customEffectiveDate": "2022-02-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6229, "employeeId": 685, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7876, "employeeId": 685, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12104, "employeeId": 685, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-101", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2315, "employeeId": 686, "customEffectiveDate": "2020-08-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2539, "employeeId": 686, "customEffectiveDate": "2020-12-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3381, "employeeId": 686, "customEffectiveDate": "2021-10-28", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1967, "employeeId": 687, "customEffectiveDate": "2020-09-14", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2466, "employeeId": 687, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6036, "employeeId": 687, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11097, "employeeId": 687, "customEffectiveDate": "2022-10-09", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Change", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12164, "employeeId": 687, "customEffectiveDate": "2022-10-09", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Change", "customPosition": "ENG-83", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1965, "employeeId": 688, "customEffectiveDate": "2020-07-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2070, "employeeId": 688, "customEffectiveDate": "2020-07-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6602, "employeeId": 688, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7875, "employeeId": 688, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12009, "employeeId": 688, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1960, "employeeId": 689, "customEffectiveDate": "2020-07-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2074, "employeeId": 689, "customEffectiveDate": "2020-07-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2058, "employeeId": 690, "customEffectiveDate": "2020-06-10", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1963, "employeeId": 691, "customEffectiveDate": "2020-07-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2031, "employeeId": 691, "customEffectiveDate": "2020-07-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6414, "employeeId": 691, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1973, "employeeId": 693, "customEffectiveDate": "2020-09-15", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2226, "employeeId": 694, "customEffectiveDate": "2020-07-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3464, "employeeId": 694, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4195, "employeeId": 694, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5935, "employeeId": 694, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1976, "employeeId": 695, "customEffectiveDate": "2020-08-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2038, "employeeId": 695, "customEffectiveDate": "2020-08-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6588, "employeeId": 695, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7877, "employeeId": 695, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2174, "employeeId": 696, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2496, "employeeId": 696, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6258, "employeeId": 696, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7885, "employeeId": 696, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2173, "employeeId": 697, "customEffectiveDate": "2020-09-14", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2773, "employeeId": 697, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2180, "employeeId": 698, "customEffectiveDate": "2020-09-02", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6642, "employeeId": 698, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8105, "employeeId": 698, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10041, "employeeId": 698, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11790, "employeeId": 698, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-104", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2176, "employeeId": 699, "customEffectiveDate": "2020-08-24", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6284, "employeeId": 699, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7878, "employeeId": 699, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11959, "employeeId": 699, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-102", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2402, "employeeId": 700, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6589, "employeeId": 700, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7880, "employeeId": 700, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13718, "employeeId": 700, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-376", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2399, "employeeId": 701, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2215, "employeeId": 702, "customEffectiveDate": "2020-08-14", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6389, "employeeId": 702, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2182, "employeeId": 703, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5998, "employeeId": 703, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12218, "employeeId": 703, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-86", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2183, "employeeId": 704, "customEffectiveDate": "2020-09-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4034, "employeeId": 704, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6622, "employeeId": 704, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7881, "employeeId": 704, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2403, "employeeId": 705, "customEffectiveDate": "2020-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3007, "employeeId": 705, "customEffectiveDate": "2021-05-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2404, "employeeId": 706, "customEffectiveDate": "2020-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3979, "employeeId": 706, "customEffectiveDate": "2021-12-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6415, "employeeId": 706, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12204, "employeeId": 706, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2410, "employeeId": 707, "customEffectiveDate": "2020-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4133, "employeeId": 707, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6096, "employeeId": 707, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8230, "employeeId": 707, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11877, "employeeId": 707, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2411, "employeeId": 708, "customEffectiveDate": "2020-09-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6391, "employeeId": 708, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2414, "employeeId": 709, "customEffectiveDate": "2020-09-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2416, "employeeId": 710, "customEffectiveDate": "2020-11-02", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5966, "employeeId": 710, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12201, "employeeId": 710, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-88", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2435, "employeeId": 711, "customEffectiveDate": "2020-09-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3159, "employeeId": 711, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6445, "employeeId": 711, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12196, "employeeId": 711, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2432, "employeeId": 712, "customEffectiveDate": "2020-10-06", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6008, "employeeId": 712, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12188, "employeeId": 712, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-87", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2433, "employeeId": 713, "customEffectiveDate": "2020-10-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2863, "employeeId": 713, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6066, "employeeId": 713, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10463, "employeeId": 713, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11818, "employeeId": 713, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-85", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2446, "employeeId": 714, "customEffectiveDate": "2020-09-28", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6238, "employeeId": 714, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7883, "employeeId": 714, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2515, "employeeId": 715, "customEffectiveDate": "2020-10-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6444, "employeeId": 715, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2444, "employeeId": 716, "customEffectiveDate": "2020-09-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2921, "employeeId": 716, "customEffectiveDate": "2021-03-18", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5901, "employeeId": 716, "customEffectiveDate": "2022-01-05", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6235, "employeeId": 716, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7882, "employeeId": 716, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11346, "employeeId": 716, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11719, "employeeId": 716, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-105", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2440, "employeeId": 717, "customEffectiveDate": "2020-09-28", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2439, "employeeId": 718, "customEffectiveDate": "2020-09-28", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5919, "employeeId": 718, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7884, "employeeId": 718, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8175, "employeeId": 718, "customEffectiveDate": "2023-01-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10021, "employeeId": 718, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11808, "employeeId": 718, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-106", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2442, "employeeId": 719, "customEffectiveDate": "2020-09-21", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4161, "employeeId": 719, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6675, "employeeId": 719, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13722, "employeeId": 719, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2441, "employeeId": 720, "customEffectiveDate": "2020-09-07", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2843, "employeeId": 720, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2448, "employeeId": 721, "customEffectiveDate": "2020-09-28", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2484, "employeeId": 722, "customEffectiveDate": "2020-10-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3157, "employeeId": 722, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3325, "employeeId": 722, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6399, "employeeId": 722, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2487, "employeeId": 723, "customEffectiveDate": "2020-10-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6694, "employeeId": 723, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17190, "employeeId": 723, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2459, "employeeId": 724, "customEffectiveDate": "2020-09-09", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2460, "employeeId": 725, "customEffectiveDate": "2019-12-16", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2621, "employeeId": 725, "customEffectiveDate": "2020-12-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3444, "employeeId": 725, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4965, "employeeId": 725, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6436, "employeeId": 725, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10139, "employeeId": 725, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2512, "employeeId": 726, "customEffectiveDate": "2020-12-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6251, "employeeId": 726, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7891, "employeeId": 726, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11930, "employeeId": 726, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-110", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2482, "employeeId": 727, "customEffectiveDate": "2020-10-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6207, "employeeId": 727, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7886, "employeeId": 727, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11974, "employeeId": 727, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-107", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2534, "employeeId": 728, "customEffectiveDate": "2020-11-02", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4238, "employeeId": 728, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6043, "employeeId": 728, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11212, "employeeId": 728, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12148, "employeeId": 728, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-89", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2514, "employeeId": 729, "customEffectiveDate": "2020-11-02", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5994, "employeeId": 729, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12318, "employeeId": 729, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2481, "employeeId": 730, "customEffectiveDate": "2020-05-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5836, "employeeId": 730, "customEffectiveDate": "2022-09-26", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5948, "employeeId": 730, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2517, "employeeId": 731, "customEffectiveDate": "2020-10-05", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2511, "employeeId": 732, "customEffectiveDate": "2020-09-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2541, "employeeId": 734, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6108, "employeeId": 734, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12338, "employeeId": 734, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-93", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2535, "employeeId": 735, "customEffectiveDate": "2021-01-04", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5969, "employeeId": 735, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12235, "employeeId": 735, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-97", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2536, "employeeId": 736, "customEffectiveDate": "2020-10-12", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3060, "employeeId": 736, "customEffectiveDate": "2021-06-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6260, "employeeId": 736, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7922, "employeeId": 736, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12054, "employeeId": 736, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-140", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2537, "employeeId": 737, "customEffectiveDate": "2020-10-12", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4160, "employeeId": 737, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2577, "employeeId": 738, "customEffectiveDate": "2020-11-30", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6459, "employeeId": 738, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7724, "employeeId": 738, "customEffectiveDate": "2022-12-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10195, "employeeId": 738, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11851, "employeeId": 738, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2567, "employeeId": 739, "customEffectiveDate": "2021-01-04", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5211, "employeeId": 739, "customEffectiveDate": "2022-07-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10192, "employeeId": 739, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11127, "employeeId": 739, "customEffectiveDate": "2023-10-16", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Resignation, last day Oct 16th", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15993, "employeeId": 739, "customEffectiveDate": "2024-02-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Re-hired", "customPosition": "PRD-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2560, "employeeId": 740, "customEffectiveDate": "2021-02-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6067, "employeeId": 740, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12200, "employeeId": 740, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-99", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2557, "employeeId": 741, "customEffectiveDate": "2020-11-02", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6179, "employeeId": 741, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7887, "employeeId": 741, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11428, "employeeId": 741, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11660, "employeeId": 741, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-108", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2561, "employeeId": 742, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3315, "employeeId": 742, "customEffectiveDate": "2021-08-21", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6143, "employeeId": 742, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2575, "employeeId": 743, "customEffectiveDate": "2020-11-16", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2574, "employeeId": 744, "customEffectiveDate": "2020-11-16", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2937, "employeeId": 744, "customEffectiveDate": "2021-04-05", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6181, "employeeId": 744, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7913, "employeeId": 744, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11430, "employeeId": 744, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11666, "employeeId": 744, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-129", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2572, "employeeId": 745, "customEffectiveDate": "2020-11-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6599, "employeeId": 745, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7889, "employeeId": 745, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2568, "employeeId": 746, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2564, "employeeId": 747, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6006, "employeeId": 747, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12175, "employeeId": 747, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-92", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2558, "employeeId": 748, "customEffectiveDate": "2020-12-14", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2760, "employeeId": 748, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5952, "employeeId": 748, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16009, "employeeId": 748, "customEffectiveDate": "2024-02-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Rehire", "customPosition": "ENG-228", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2569, "employeeId": 749, "customEffectiveDate": "2020-11-09", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2566, "employeeId": 751, "customEffectiveDate": "2021-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6071, "employeeId": 751, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12323, "employeeId": 751, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-95", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2565, "employeeId": 752, "customEffectiveDate": "2020-12-07", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2765, "employeeId": 752, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5957, "employeeId": 752, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12268, "employeeId": 752, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-94", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2562, "employeeId": 753, "customEffectiveDate": "2020-12-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5208, "employeeId": 753, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6521, "employeeId": 753, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7892, "employeeId": 753, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12015, "employeeId": 753, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-111", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2578, "employeeId": 754, "customEffectiveDate": "2020-11-09", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6347, "employeeId": 754, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7888, "employeeId": 754, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11958, "employeeId": 754, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-109", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2583, "employeeId": 755, "customEffectiveDate": "2020-12-14", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6278, "employeeId": 755, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7893, "employeeId": 755, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11927, "employeeId": 755, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-112", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2582, "employeeId": 756, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3042, "employeeId": 756, "customEffectiveDate": "2021-05-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3324, "employeeId": 756, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2585, "employeeId": 757, "customEffectiveDate": "2020-11-17", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3462, "employeeId": 757, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4193, "employeeId": 757, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5933, "employeeId": 757, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12173, "employeeId": 757, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2586, "employeeId": 758, "customEffectiveDate": "2021-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2772, "employeeId": 758, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6094, "employeeId": 758, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8231, "employeeId": 758, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11875, "employeeId": 758, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2588, "employeeId": 759, "customEffectiveDate": "2020-11-23", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3273, "employeeId": 759, "customEffectiveDate": "2021-08-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4606, "employeeId": 759, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6560, "employeeId": 759, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7890, "employeeId": 759, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2592, "employeeId": 760, "customEffectiveDate": "2021-02-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6465, "employeeId": 760, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10210, "employeeId": 760, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11840, "employeeId": 760, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2654, "employeeId": 761, "customEffectiveDate": "2021-01-11", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3465, "employeeId": 761, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4172, "employeeId": 761, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2645, "employeeId": 762, "customEffectiveDate": "2020-12-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3480, "employeeId": 762, "customEffectiveDate": "2021-09-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4163, "employeeId": 762, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5930, "employeeId": 762, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7896, "employeeId": 762, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12023, "employeeId": 762, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-115", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2653, "employeeId": 763, "customEffectiveDate": "2021-01-11", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3974, "employeeId": 763, "customEffectiveDate": "2022-01-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6349, "employeeId": 763, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7993, "employeeId": 763, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2652, "employeeId": 764, "customEffectiveDate": "2021-01-04", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2598, "employeeId": 765, "customEffectiveDate": "2020-12-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2593, "employeeId": 766, "customEffectiveDate": "2020-12-14", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6495, "employeeId": 766, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7894, "employeeId": 766, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11949, "employeeId": 766, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-113", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2595, "employeeId": 767, "customEffectiveDate": "2021-01-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5798, "employeeId": 767, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7897, "employeeId": 767, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2597, "employeeId": 768, "customEffectiveDate": "2021-02-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6470, "employeeId": 768, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10205, "employeeId": 768, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11847, "employeeId": 768, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2628, "employeeId": 769, "customEffectiveDate": "2020-12-14", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6624, "employeeId": 769, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7895, "employeeId": 769, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12122, "employeeId": 769, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-114", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2633, "employeeId": 770, "customEffectiveDate": "2021-01-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6301, "employeeId": 770, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7898, "employeeId": 770, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2636, "employeeId": 771, "customEffectiveDate": "2021-01-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6311, "employeeId": 771, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7899, "employeeId": 771, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8412, "employeeId": 771, "customEffectiveDate": "2023-03-16", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Relocated to Singapore", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11858, "employeeId": 771, "customEffectiveDate": "2023-03-16", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Relocated to Singapore", "customPosition": "FO-117", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2635, "employeeId": 772, "customEffectiveDate": "2021-01-04", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3190, "employeeId": 772, "customEffectiveDate": "2021-07-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4112, "employeeId": 772, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6608, "employeeId": 772, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7930, "employeeId": 772, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12038, "employeeId": 772, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16048, "employeeId": 772, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2631, "employeeId": 773, "customEffectiveDate": "2021-01-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6661, "employeeId": 773, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8106, "employeeId": 773, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10118, "employeeId": 773, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11796, "employeeId": 773, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-116", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2679, "employeeId": 774, "customEffectiveDate": "2021-01-11", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6662, "employeeId": 774, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8107, "employeeId": 774, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10119, "employeeId": 774, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11419, "employeeId": 774, "customEffectiveDate": "2023-09-18", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11705, "employeeId": 774, "customEffectiveDate": "2023-09-18", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-119", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2650, "employeeId": 775, "customEffectiveDate": "2021-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3268, "employeeId": 775, "customEffectiveDate": "2021-07-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3274, "employeeId": 775, "customEffectiveDate": "2021-08-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4605, "employeeId": 775, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6450, "employeeId": 775, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12273, "employeeId": 775, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2624, "employeeId": 776, "customEffectiveDate": "2021-03-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2638, "employeeId": 777, "customEffectiveDate": "2021-01-04", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2625, "employeeId": 778, "customEffectiveDate": "2020-12-14", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3870, "employeeId": 778, "customEffectiveDate": "2021-09-29", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6377, "employeeId": 778, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6732, "employeeId": 778, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12140, "employeeId": 778, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "PEO-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2643, "employeeId": 780, "customEffectiveDate": "2020-12-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4966, "employeeId": 780, "customEffectiveDate": "2021-09-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2647, "employeeId": 782, "customEffectiveDate": "2021-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2649, "employeeId": 783, "customEffectiveDate": "2021-01-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3452, "employeeId": 783, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3936, "employeeId": 783, "customEffectiveDate": "2021-12-06", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4964, "employeeId": 783, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2662, "employeeId": 785, "customEffectiveDate": "2021-05-03", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6086, "employeeId": 785, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9195, "employeeId": 785, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11821, "employeeId": 785, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-111", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2657, "employeeId": 786, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5915, "employeeId": 786, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6741, "employeeId": 786, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10186, "employeeId": 786, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11715, "employeeId": 786, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Adjustment", "customPosition": "PEO-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2655, "employeeId": 787, "customEffectiveDate": "2021-02-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6065, "employeeId": 787, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12184, "employeeId": 787, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-98", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2658, "employeeId": 788, "customEffectiveDate": "2021-02-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2706, "employeeId": 790, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6591, "employeeId": 790, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7900, "employeeId": 790, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2708, "employeeId": 791, "customEffectiveDate": "2021-01-11", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6660, "employeeId": 791, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8108, "employeeId": 791, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10125, "employeeId": 791, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11794, "employeeId": 791, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-118", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2703, "employeeId": 792, "customEffectiveDate": "2021-01-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5568, "employeeId": 792, "customEffectiveDate": "2022-07-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6221, "employeeId": 792, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7901, "employeeId": 792, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9114, "employeeId": 792, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11625, "employeeId": 792, "customEffectiveDate": "2023-12-13", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11640, "employeeId": 792, "customEffectiveDate": "2023-12-13", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16026, "employeeId": 792, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2712, "employeeId": 793, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2710, "employeeId": 794, "customEffectiveDate": "2021-01-11", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6241, "employeeId": 794, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7902, "employeeId": 794, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12103, "employeeId": 794, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-121", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2714, "employeeId": 795, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3401, "employeeId": 795, "customEffectiveDate": "2021-09-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6637, "employeeId": 795, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7903, "employeeId": 795, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12118, "employeeId": 795, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-122", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2718, "employeeId": 796, "customEffectiveDate": "2021-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4654, "employeeId": 796, "customEffectiveDate": "2022-02-14", "customDepartment#": "2120", "customJobCode": "NX", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5963, "employeeId": 796, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10161, "employeeId": 796, "customEffectiveDate": "2023-06-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11805, "employeeId": 796, "customEffectiveDate": "2023-06-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2779, "employeeId": 797, "customEffectiveDate": "2021-01-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4122, "employeeId": 797, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6397, "employeeId": 797, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2729, "employeeId": 798, "customEffectiveDate": "2019-10-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2820, "employeeId": 798, "customEffectiveDate": "2021-02-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6431, "employeeId": 798, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12293, "employeeId": 798, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2776, "employeeId": 799, "customEffectiveDate": "2021-04-15", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6123, "employeeId": 799, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12227, "employeeId": 799, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-109", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2782, "employeeId": 800, "customEffectiveDate": "2021-04-19", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6257, "employeeId": 800, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7917, "employeeId": 800, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11997, "employeeId": 800, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-133", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2755, "employeeId": 801, "customEffectiveDate": "2019-07-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2818, "employeeId": 801, "customEffectiveDate": "2021-02-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3338, "employeeId": 801, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6446, "employeeId": 801, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12289, "employeeId": 801, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2775, "employeeId": 802, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3366, "employeeId": 802, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6026, "employeeId": 802, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12213, "employeeId": 802, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-104", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2781, "employeeId": 803, "customEffectiveDate": "2021-03-22", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6712, "employeeId": 803, "customEffectiveDate": "2022-09-12", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7657, "employeeId": 803, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12269, "employeeId": 803, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-105", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2777, "employeeId": 804, "customEffectiveDate": "2020-03-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6419, "employeeId": 804, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2795, "employeeId": 805, "customEffectiveDate": "2021-03-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6324, "employeeId": 805, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7908, "employeeId": 805, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11952, "employeeId": 805, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-126", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2812, "employeeId": 806, "customEffectiveDate": "2021-02-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4015, "employeeId": 806, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6427, "employeeId": 806, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12279, "employeeId": 806, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2805, "employeeId": 807, "customEffectiveDate": "2021-02-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6657, "employeeId": 807, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2845, "employeeId": 808, "customEffectiveDate": "2021-02-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3272, "employeeId": 808, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2811, "employeeId": 809, "customEffectiveDate": "2021-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6352, "employeeId": 809, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7904, "employeeId": 809, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12005, "employeeId": 809, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-123", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2816, "employeeId": 810, "customEffectiveDate": "2021-04-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2844, "employeeId": 812, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6056, "employeeId": 812, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12238, "employeeId": 812, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-115", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2849, "employeeId": 813, "customEffectiveDate": "2021-02-23", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6135, "employeeId": 813, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10465, "employeeId": 813, "customEffectiveDate": "2023-08-16", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11741, "employeeId": 813, "customEffectiveDate": "2023-08-16", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-102", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2850, "employeeId": 814, "customEffectiveDate": "2021-04-08", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5921, "employeeId": 814, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7915, "employeeId": 814, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10030, "employeeId": 814, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11804, "employeeId": 814, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-130", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2851, "employeeId": 815, "customEffectiveDate": "2021-04-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2854, "employeeId": 816, "customEffectiveDate": "2021-03-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6215, "employeeId": 816, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7716, "employeeId": 816, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7905, "employeeId": 816, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11909, "employeeId": 816, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-124", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2856, "employeeId": 817, "customEffectiveDate": "2021-03-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2858, "employeeId": 818, "customEffectiveDate": "2021-03-15", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4158, "employeeId": 818, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6673, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12203, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16929, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2861, "employeeId": 819, "customEffectiveDate": "2021-03-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6357, "employeeId": 819, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7911, "employeeId": 819, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11026, "employeeId": 819, "customEffectiveDate": "2023-09-27", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adding Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11697, "employeeId": 819, "customEffectiveDate": "2023-09-27", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adding Aura Role", "customPosition": "FO-127", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2878, "employeeId": 820, "customEffectiveDate": "2021-03-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4341, "employeeId": 820, "customEffectiveDate": "2022-01-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6378, "employeeId": 820, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6719, "employeeId": 820, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12151, "employeeId": 820, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2879, "employeeId": 821, "customEffectiveDate": "2021-02-22", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3946, "employeeId": 821, "customEffectiveDate": "2021-11-23", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6516, "employeeId": 821, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7970, "employeeId": 821, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12020, "employeeId": 821, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-179", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2880, "employeeId": 822, "customEffectiveDate": "2021-06-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6701, "employeeId": 822, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17155, "employeeId": 822, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2890, "employeeId": 823, "customEffectiveDate": "2021-03-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3412, "employeeId": 823, "customEffectiveDate": "2021-09-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2884, "employeeId": 824, "customEffectiveDate": "2021-03-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2888, "employeeId": 825, "customEffectiveDate": "2021-03-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6523, "employeeId": 825, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7906, "employeeId": 825, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2891, "employeeId": 826, "customEffectiveDate": "2021-03-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5214, "employeeId": 826, "customEffectiveDate": "2022-05-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6633, "employeeId": 826, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7909, "employeeId": 826, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2908, "employeeId": 827, "customEffectiveDate": "2021-03-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3275, "employeeId": 827, "customEffectiveDate": "2021-08-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6304, "employeeId": 827, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7907, "employeeId": 827, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10089, "employeeId": 827, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11857, "employeeId": 827, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-125", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2912, "employeeId": 828, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7660, "employeeId": 828, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "SYS-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2911, "employeeId": 829, "customEffectiveDate": "2021-03-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4032, "employeeId": 829, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6604, "employeeId": 829, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7910, "employeeId": 829, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2914, "employeeId": 830, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5996, "employeeId": 830, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10566, "employeeId": 830, "customEffectiveDate": "2023-09-11", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11707, "employeeId": 830, "customEffectiveDate": "2023-09-11", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-117", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2917, "employeeId": 831, "customEffectiveDate": "2021-05-24", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5488, "employeeId": 831, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6046, "employeeId": 831, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12271, "employeeId": 831, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-113", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2915, "employeeId": 832, "customEffectiveDate": "2021-03-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5286, "employeeId": 832, "customEffectiveDate": "2022-06-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6405, "employeeId": 832, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12290, "employeeId": 832, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2919, "employeeId": 833, "customEffectiveDate": "2021-04-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6103, "employeeId": 833, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12288, "employeeId": 833, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-108", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2918, "employeeId": 834, "customEffectiveDate": "2021-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6468, "employeeId": 834, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10204, "employeeId": 834, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11843, "employeeId": 834, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2983, "employeeId": 835, "customEffectiveDate": "2021-04-19", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2920, "employeeId": 836, "customEffectiveDate": "2021-06-21", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5961, "employeeId": 836, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12306, "employeeId": 836, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-116", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2924, "employeeId": 837, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6062, "employeeId": 837, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12335, "employeeId": 837, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-107", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2925, "employeeId": 838, "customEffectiveDate": "2021-03-22", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2927, "employeeId": 839, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6039, "employeeId": 839, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8225, "employeeId": 839, "customEffectiveDate": "2023-01-16", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10514, "employeeId": 839, "customEffectiveDate": "2023-09-05", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removing AuraRole", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2931, "employeeId": 842, "customEffectiveDate": "2021-05-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2968, "employeeId": 843, "customEffectiveDate": "2021-04-12", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6685, "employeeId": 843, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17177, "employeeId": 843, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2928, "employeeId": 844, "customEffectiveDate": "2021-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6702, "employeeId": 844, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2929, "employeeId": 845, "customEffectiveDate": "2021-04-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6327, "employeeId": 845, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7912, "employeeId": 845, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12047, "employeeId": 845, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-128", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2971, "employeeId": 846, "customEffectiveDate": "2021-04-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4012, "employeeId": 846, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6441, "employeeId": 846, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2933, "employeeId": 847, "customEffectiveDate": "2021-04-26", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5953, "employeeId": 847, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12240, "employeeId": 847, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-110", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2934, "employeeId": 848, "customEffectiveDate": "2021-06-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6171, "employeeId": 848, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10587, "employeeId": 848, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12166, "employeeId": 848, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-114", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2935, "employeeId": 849, "customEffectiveDate": "2021-04-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7914, "employeeId": 849, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2938, "employeeId": 850, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2939, "employeeId": 850, "customEffectiveDate": "2017-06-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5706, "employeeId": 850, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6017, "employeeId": 850, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12236, "employeeId": 850, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-106", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2943, "employeeId": 851, "customEffectiveDate": "2021-05-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6620, "employeeId": 851, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7919, "employeeId": 851, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2964, "employeeId": 852, "customEffectiveDate": "2021-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6508, "employeeId": 852, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7923, "employeeId": 852, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12033, "employeeId": 852, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-139", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2945, "employeeId": 853, "customEffectiveDate": "2021-04-19", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6641, "employeeId": 853, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8109, "employeeId": 853, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10040, "employeeId": 853, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11787, "employeeId": 853, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-132", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2944, "employeeId": 854, "customEffectiveDate": "2021-04-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3177, "employeeId": 854, "customEffectiveDate": "2021-06-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3460, "employeeId": 854, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4201, "employeeId": 854, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5939, "employeeId": 854, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2948, "employeeId": 855, "customEffectiveDate": "2021-04-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6214, "employeeId": 855, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7741, "employeeId": 855, "customEffectiveDate": "2022-12-14", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7916, "employeeId": 855, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11900, "employeeId": 855, "customEffectiveDate": "2022-12-14", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-131", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2973, "employeeId": 856, "customEffectiveDate": "2021-05-04", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6009, "employeeId": 856, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11811, "employeeId": 856, "customEffectiveDate": "2023-05-12", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-112", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2970, "employeeId": 857, "customEffectiveDate": "2021-04-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2980, "employeeId": 858, "customEffectiveDate": "2021-06-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6392, "employeeId": 858, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12193, "employeeId": 858, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2975, "employeeId": 859, "customEffectiveDate": "2021-04-26", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6664, "employeeId": 859, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8110, "employeeId": 859, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10121, "employeeId": 859, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2978, "employeeId": 860, "customEffectiveDate": "2021-05-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6561, "employeeId": 860, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7920, "employeeId": 860, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12036, "employeeId": 860, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-135", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3068, "employeeId": 861, "customEffectiveDate": "2021-06-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2985, "employeeId": 862, "customEffectiveDate": "2021-06-14", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6543, "employeeId": 862, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7926, "employeeId": 862, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12027, "employeeId": 862, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-141", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2988, "employeeId": 863, "customEffectiveDate": "2021-05-03", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6686, "employeeId": 863, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2994, "employeeId": 864, "customEffectiveDate": "2020-06-26", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3458, "employeeId": 864, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4194, "employeeId": 864, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5934, "employeeId": 864, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2995, "employeeId": 865, "customEffectiveDate": "2021-04-26", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4813, "employeeId": 865, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6310, "employeeId": 865, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7918, "employeeId": 865, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12120, "employeeId": 865, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-134", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3003, "employeeId": 866, "customEffectiveDate": "2021-05-17", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5916, "employeeId": 866, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6742, "employeeId": 866, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12149, "employeeId": 866, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3011, "employeeId": 867, "customEffectiveDate": "2021-07-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6623, "employeeId": 867, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7931, "employeeId": 867, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12110, "employeeId": 867, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-146", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3014, "employeeId": 869, "customEffectiveDate": "2021-08-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6048, "employeeId": 869, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12276, "employeeId": 869, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3030, "employeeId": 870, "customEffectiveDate": "2021-06-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6228, "employeeId": 870, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7928, "employeeId": 870, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12073, "employeeId": 870, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-142", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3032, "employeeId": 871, "customEffectiveDate": "2021-05-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3910, "employeeId": 871, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6636, "employeeId": 871, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7921, "employeeId": 871, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12091, "employeeId": 871, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-136", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3034, "employeeId": 872, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5296, "employeeId": 872, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6151, "employeeId": 872, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8165, "employeeId": 872, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9176, "employeeId": 872, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11025, "employeeId": 872, "customEffectiveDate": "2023-09-27", "customDepartment#": "2110", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11698, "employeeId": 872, "customEffectiveDate": "2023-09-27", "customDepartment#": "2110", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "ENG-126", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3035, "employeeId": 873, "customEffectiveDate": "2021-05-10", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3037, "employeeId": 874, "customEffectiveDate": "2021-05-17", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6280, "employeeId": 874, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3041, "employeeId": 875, "customEffectiveDate": "2021-08-16", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6022, "employeeId": 875, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12307, "employeeId": 875, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-122", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3040, "employeeId": 876, "customEffectiveDate": "2021-06-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6477, "employeeId": 876, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10208, "employeeId": 876, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11835, "employeeId": 876, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3050, "employeeId": 877, "customEffectiveDate": "2021-07-26", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6535, "employeeId": 877, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7935, "employeeId": 877, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11950, "employeeId": 877, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-149", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3045, "employeeId": 878, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6416, "employeeId": 878, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12206, "employeeId": 878, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3048, "employeeId": 879, "customEffectiveDate": "2021-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5209, "employeeId": 879, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6549, "employeeId": 879, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7936, "employeeId": 879, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12089, "employeeId": 879, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-150", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3052, "employeeId": 880, "customEffectiveDate": "2021-06-30", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6522, "employeeId": 880, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7929, "employeeId": 880, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11942, "employeeId": 880, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-143", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3056, "employeeId": 881, "customEffectiveDate": "2021-08-23", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6007, "employeeId": 881, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12179, "employeeId": 881, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-123", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3054, "employeeId": 882, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6332, "employeeId": 882, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7938, "employeeId": 882, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12095, "employeeId": 882, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-152", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3057, "employeeId": 883, "customEffectiveDate": "2021-07-26", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5984, "employeeId": 883, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10177, "employeeId": 883, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11775, "employeeId": 883, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-119", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3058, "employeeId": 884, "customEffectiveDate": "2021-07-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6226, "employeeId": 884, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7932, "employeeId": 884, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12048, "employeeId": 884, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-145", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3062, "employeeId": 885, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3064, "employeeId": 886, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3065, "employeeId": 887, "customEffectiveDate": "2021-05-24", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3463, "employeeId": 887, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4197, "employeeId": 887, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5937, "employeeId": 887, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3067, "employeeId": 888, "customEffectiveDate": "2021-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6210, "employeeId": 888, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7924, "employeeId": 888, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8186, "employeeId": 888, "customEffectiveDate": "2023-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11882, "employeeId": 888, "customEffectiveDate": "2023-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-137", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3070, "employeeId": 889, "customEffectiveDate": "2021-06-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6296, "employeeId": 889, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7925, "employeeId": 889, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12031, "employeeId": 889, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-138", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3071, "employeeId": 890, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6127, "employeeId": 890, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10031, "employeeId": 890, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11809, "employeeId": 890, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-129", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3074, "employeeId": 891, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6169, "employeeId": 891, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12224, "employeeId": 891, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-118", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3073, "employeeId": 892, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3076, "employeeId": 893, "customEffectiveDate": "2021-08-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5968, "employeeId": 893, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10162, "employeeId": 893, "customEffectiveDate": "2023-06-12", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10179, "employeeId": 893, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11773, "employeeId": 893, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-124", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3077, "employeeId": 894, "customEffectiveDate": "2021-08-09", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5297, "employeeId": 894, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6146, "employeeId": 894, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12221, "employeeId": 894, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-121", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3078, "employeeId": 895, "customEffectiveDate": "2021-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6524, "employeeId": 895, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7944, "employeeId": 895, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3096, "employeeId": 896, "customEffectiveDate": "2021-06-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3098, "employeeId": 897, "customEffectiveDate": "2021-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3276, "employeeId": 897, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3123, "employeeId": 898, "customEffectiveDate": "2021-07-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6533, "employeeId": 898, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7933, "employeeId": 898, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11943, "employeeId": 898, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3122, "employeeId": 899, "customEffectiveDate": "2021-06-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3189, "employeeId": 900, "customEffectiveDate": "2021-07-06", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3128, "employeeId": 901, "customEffectiveDate": "2021-06-16", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6218, "employeeId": 901, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7715, "employeeId": 901, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7927, "employeeId": 901, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13712, "employeeId": 901, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-363", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3173, "employeeId": 902, "customEffectiveDate": "2021-08-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3178, "employeeId": 903, "customEffectiveDate": "2021-08-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3544, "employeeId": 903, "customEffectiveDate": "2021-09-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3179, "employeeId": 904, "customEffectiveDate": "2021-07-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6585, "employeeId": 904, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7934, "employeeId": 904, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11962, "employeeId": 904, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-148", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3182, "employeeId": 905, "customEffectiveDate": "2021-11-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6335, "employeeId": 905, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7961, "employeeId": 905, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8419, "employeeId": 905, "customEffectiveDate": "2023-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11855, "employeeId": 905, "customEffectiveDate": "2023-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3184, "employeeId": 907, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4762, "employeeId": 907, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8337, "employeeId": 907, "customEffectiveDate": "2023-06-19", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3185, "employeeId": 908, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4938, "employeeId": 908, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3204, "employeeId": 909, "customEffectiveDate": "2021-10-04", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6005, "employeeId": 909, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11375, "employeeId": 909, "customEffectiveDate": "2023-02-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11873, "employeeId": 909, "customEffectiveDate": "2023-02-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-136", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3201, "employeeId": 910, "customEffectiveDate": "2021-10-25", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5918, "employeeId": 910, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10377, "employeeId": 910, "customEffectiveDate": "2022-11-11", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3207, "employeeId": 911, "customEffectiveDate": "2021-08-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6557, "employeeId": 911, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7939, "employeeId": 911, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11926, "employeeId": 911, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-151", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3198, "employeeId": 912, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6002, "employeeId": 912, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8134, "employeeId": 912, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11896, "employeeId": 912, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-128", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3202, "employeeId": 913, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3199, "employeeId": 914, "customEffectiveDate": "2021-09-13", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4236, "employeeId": 914, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6040, "employeeId": 914, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12192, "employeeId": 914, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-131", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3196, "employeeId": 915, "customEffectiveDate": "2021-09-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3200, "employeeId": 916, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6093, "employeeId": 916, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12281, "employeeId": 916, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-127", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3206, "employeeId": 918, "customEffectiveDate": "2021-07-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3209, "employeeId": 919, "customEffectiveDate": "2021-08-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3208, "employeeId": 920, "customEffectiveDate": "2021-07-19", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3249, "employeeId": 921, "customEffectiveDate": "2021-09-20", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6163, "employeeId": 921, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12266, "employeeId": 921, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-134", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3224, "employeeId": 922, "customEffectiveDate": "2021-07-15", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3461, "employeeId": 922, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4202, "employeeId": 922, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5940, "employeeId": 922, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3245, "employeeId": 923, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6643, "employeeId": 923, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8111, "employeeId": 923, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10045, "employeeId": 923, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3228, "employeeId": 924, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5381, "employeeId": 924, "customEffectiveDate": "2022-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6530, "employeeId": 924, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7937, "employeeId": 924, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3247, "employeeId": 925, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6644, "employeeId": 925, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8112, "employeeId": 925, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10046, "employeeId": 925, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3251, "employeeId": 926, "customEffectiveDate": "2021-09-02", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5212, "employeeId": 926, "customEffectiveDate": "2022-07-25", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6474, "employeeId": 926, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10189, "employeeId": 926, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11844, "employeeId": 926, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3250, "employeeId": 927, "customEffectiveDate": "2021-09-07", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5975, "employeeId": 927, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10181, "employeeId": 927, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11771, "employeeId": 927, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-130", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3266, "employeeId": 928, "customEffectiveDate": "2021-07-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6429, "employeeId": 928, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3254, "employeeId": 929, "customEffectiveDate": "2021-09-27", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6173, "employeeId": 929, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7947, "employeeId": 929, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11432, "employeeId": 929, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11663, "employeeId": 929, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-161", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3263, "employeeId": 930, "customEffectiveDate": "2021-08-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6369, "employeeId": 930, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6738, "employeeId": 930, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12138, "employeeId": 930, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16016, "employeeId": 930, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "", "customPosition": "GA-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3269, "employeeId": 931, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3270, "employeeId": 932, "customEffectiveDate": "2021-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6253, "employeeId": 932, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7950, "employeeId": 932, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11961, "employeeId": 932, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-163", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3298, "employeeId": 933, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6158, "employeeId": 933, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11812, "employeeId": 933, "customEffectiveDate": "2023-05-10", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-153", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3302, "employeeId": 934, "customEffectiveDate": "2021-08-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3301, "employeeId": 935, "customEffectiveDate": "2021-08-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6615, "employeeId": 935, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7940, "employeeId": 935, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3310, "employeeId": 936, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6428, "employeeId": 936, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12282, "employeeId": 936, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3345, "employeeId": 937, "customEffectiveDate": "2021-09-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6290, "employeeId": 937, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7945, "employeeId": 937, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11981, "employeeId": 937, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-156", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3312, "employeeId": 938, "customEffectiveDate": "2021-08-23", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6239, "employeeId": 938, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7941, "employeeId": 938, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12058, "employeeId": 938, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-154", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3328, "employeeId": 939, "customEffectiveDate": "2021-08-30", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7943, "employeeId": 939, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12098, "employeeId": 939, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15903, "employeeId": 939, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3326, "employeeId": 940, "customEffectiveDate": "2021-08-23", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6302, "employeeId": 940, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7942, "employeeId": 940, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12056, "employeeId": 940, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-153", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3331, "employeeId": 941, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6410, "employeeId": 941, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12186, "employeeId": 941, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3307, "employeeId": 942, "customEffectiveDate": "2021-09-13", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5989, "employeeId": 942, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10588, "employeeId": 942, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12165, "employeeId": 942, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-132", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3308, "employeeId": 943, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5988, "employeeId": 943, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12210, "employeeId": 943, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-125", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3309, "employeeId": 944, "customEffectiveDate": "2021-09-15", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5965, "employeeId": 944, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12180, "employeeId": 944, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-133", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3313, "employeeId": 945, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3314, "employeeId": 946, "customEffectiveDate": "2021-09-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6425, "employeeId": 946, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3316, "employeeId": 947, "customEffectiveDate": "2021-10-18", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6032, "employeeId": 947, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12257, "employeeId": 947, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-137", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3317, "employeeId": 948, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6255, "employeeId": 948, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7956, "employeeId": 948, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11970, "employeeId": 948, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-167", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3330, "employeeId": 951, "customEffectiveDate": "2021-08-30", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3468, "employeeId": 951, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4173, "employeeId": 951, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5943, "employeeId": 951, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3334, "employeeId": 952, "customEffectiveDate": "2021-09-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6438, "employeeId": 952, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12321, "employeeId": 952, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3333, "employeeId": 953, "customEffectiveDate": "2021-11-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5987, "employeeId": 953, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10371, "employeeId": 953, "customEffectiveDate": "2022-11-20", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3408, "employeeId": 954, "customEffectiveDate": "2021-10-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6420, "employeeId": 954, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12241, "employeeId": 954, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3393, "employeeId": 955, "customEffectiveDate": "2021-09-27", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6236, "employeeId": 955, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7948, "employeeId": 955, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12006, "employeeId": 955, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-160", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3339, "employeeId": 956, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3342, "employeeId": 957, "customEffectiveDate": "2021-11-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5489, "employeeId": 957, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6045, "employeeId": 957, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12191, "employeeId": 957, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-138", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3340, "employeeId": 958, "customEffectiveDate": "2021-10-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6192, "employeeId": 958, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7954, "employeeId": 958, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8198, "employeeId": 958, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9167, "employeeId": 958, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11828, "employeeId": 958, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-166", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3344, "employeeId": 959, "customEffectiveDate": "2021-05-17", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11582, "employeeId": 959, "customEffectiveDate": "2023-08-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3348, "employeeId": 960, "customEffectiveDate": "2022-01-03", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6109, "employeeId": 960, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12190, "employeeId": 960, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16060, "employeeId": 960, "customEffectiveDate": "2024-02-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3347, "employeeId": 961, "customEffectiveDate": "2021-11-22", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5973, "employeeId": 961, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10178, "employeeId": 961, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11768, "employeeId": 961, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-142", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3346, "employeeId": 962, "customEffectiveDate": "2021-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6110, "employeeId": 962, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12223, "employeeId": 962, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-135", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3391, "employeeId": 963, "customEffectiveDate": "2021-09-27", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6360, "employeeId": 963, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7949, "employeeId": 963, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12101, "employeeId": 963, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-162", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3384, "employeeId": 964, "customEffectiveDate": "2021-09-20", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3367, "employeeId": 965, "customEffectiveDate": "2021-09-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3368, "employeeId": 966, "customEffectiveDate": "2021-09-08", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3392, "employeeId": 967, "customEffectiveDate": "2021-09-27", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6665, "employeeId": 967, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8114, "employeeId": 967, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3385, "employeeId": 968, "customEffectiveDate": "2021-09-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6653, "employeeId": 968, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8113, "employeeId": 968, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10123, "employeeId": 968, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11785, "employeeId": 968, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-157", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3448, "employeeId": 969, "customEffectiveDate": "2021-10-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6687, "employeeId": 969, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17151, "employeeId": 969, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3374, "employeeId": 970, "customEffectiveDate": "2021-09-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6432, "employeeId": 970, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3377, "employeeId": 971, "customEffectiveDate": "2021-09-13", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3542, "employeeId": 971, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4159, "employeeId": 971, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3376, "employeeId": 972, "customEffectiveDate": "2021-12-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6120, "employeeId": 972, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12216, "employeeId": 972, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-146", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3382, "employeeId": 973, "customEffectiveDate": "2021-11-08", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6082, "employeeId": 973, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12287, "employeeId": 973, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-140", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3390, "employeeId": 974, "customEffectiveDate": "2021-09-27", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6654, "employeeId": 974, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8115, "employeeId": 974, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10117, "employeeId": 974, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11786, "employeeId": 974, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3446, "employeeId": 975, "customEffectiveDate": "2021-10-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6558, "employeeId": 975, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3404, "employeeId": 976, "customEffectiveDate": "2021-09-28", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3532, "employeeId": 977, "customEffectiveDate": "2021-10-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8098, "employeeId": 977, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10088, "employeeId": 977, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11856, "employeeId": 977, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15897, "employeeId": 977, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3389, "employeeId": 978, "customEffectiveDate": "2021-09-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4165, "employeeId": 978, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5554, "employeeId": 978, "customEffectiveDate": "2022-07-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5928, "employeeId": 978, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7946, "employeeId": 978, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12055, "employeeId": 978, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-158", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3394, "employeeId": 979, "customEffectiveDate": "2021-11-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6125, "employeeId": 979, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6820, "employeeId": 979, "customEffectiveDate": "2022-11-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12133, "employeeId": 979, "customEffectiveDate": "2022-11-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-139", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3395, "employeeId": 980, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4078, "employeeId": 980, "customEffectiveDate": "2022-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6550, "employeeId": 980, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7962, "employeeId": 980, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9115, "employeeId": 980, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11891, "employeeId": 980, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-171", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3471, "employeeId": 981, "customEffectiveDate": "2021-10-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6382, "employeeId": 981, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6733, "employeeId": 981, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12141, "employeeId": 981, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3397, "employeeId": 982, "customEffectiveDate": "2021-11-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6688, "employeeId": 982, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17149, "employeeId": 982, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3838, "employeeId": 983, "customEffectiveDate": "2021-12-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6231, "employeeId": 983, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7972, "employeeId": 983, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11751, "employeeId": 983, "customEffectiveDate": "2023-08-02", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-180", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3513, "employeeId": 984, "customEffectiveDate": "2021-10-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6616, "employeeId": 984, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7955, "employeeId": 984, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3407, "employeeId": 985, "customEffectiveDate": "2021-10-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6209, "employeeId": 985, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7952, "employeeId": 985, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12007, "employeeId": 985, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3417, "employeeId": 986, "customEffectiveDate": "2021-11-02", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6189, "employeeId": 986, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7712, "employeeId": 986, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7965, "employeeId": 986, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11908, "employeeId": 986, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-174", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3837, "employeeId": 987, "customEffectiveDate": "2021-11-30", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6348, "employeeId": 987, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7971, "employeeId": 987, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3403, "employeeId": 988, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3789, "employeeId": 989, "customEffectiveDate": "2021-11-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3410, "employeeId": 990, "customEffectiveDate": "2021-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4104, "employeeId": 990, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6627, "employeeId": 990, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7951, "employeeId": 990, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12050, "employeeId": 990, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-164", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3414, "employeeId": 991, "customEffectiveDate": "2021-10-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6212, "employeeId": 991, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7953, "employeeId": 991, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3415, "employeeId": 992, "customEffectiveDate": "2021-11-01", "customDepartment#": "1400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4203, "employeeId": 992, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5924, "employeeId": 992, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7963, "employeeId": 992, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9219, "employeeId": 992, "customEffectiveDate": "2023-05-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11819, "employeeId": 992, "customEffectiveDate": "2023-05-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-172", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3792, "employeeId": 993, "customEffectiveDate": "2021-11-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3439, "employeeId": 994, "customEffectiveDate": "2021-11-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5298, "employeeId": 994, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6144, "employeeId": 994, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12168, "employeeId": 994, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-141", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3475, "employeeId": 995, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3473, "employeeId": 996, "customEffectiveDate": "2021-10-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6493, "employeeId": 996, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6726, "employeeId": 996, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3481, "employeeId": 997, "customEffectiveDate": "2021-10-18", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4162, "employeeId": 997, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5927, "employeeId": 997, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7957, "employeeId": 997, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12022, "employeeId": 997, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-168", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3788, "employeeId": 998, "customEffectiveDate": "2021-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6411, "employeeId": 998, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3508, "employeeId": 999, "customEffectiveDate": "2021-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6292, "employeeId": 999, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7967, "employeeId": 999, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12002, "employeeId": 999, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-177", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3511, "employeeId": 1000, "customEffectiveDate": "2022-01-05", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6237, "employeeId": 1000, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7987, "employeeId": 1000, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11348, "employeeId": 1000, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11722, "employeeId": 1000, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-193", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3478, "employeeId": 1001, "customEffectiveDate": "2021-10-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3524, "employeeId": 1002, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6281, "employeeId": 1002, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7958, "employeeId": 1002, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13716, "employeeId": 1002, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-374", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3521, "employeeId": 1003, "customEffectiveDate": "2021-10-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3486, "employeeId": 1004, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6385, "employeeId": 1004, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6837, "employeeId": 1004, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10302, "employeeId": 1004, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11764, "employeeId": 1004, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3523, "employeeId": 1005, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6424, "employeeId": 1005, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8389, "employeeId": 1005, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11860, "employeeId": 1005, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3516, "employeeId": 1006, "customEffectiveDate": "2022-01-24", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6061, "employeeId": 1006, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12325, "employeeId": 1006, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-151", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3530, "employeeId": 1007, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6279, "employeeId": 1007, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7959, "employeeId": 1007, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3531, "employeeId": 1008, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6409, "employeeId": 1008, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8387, "employeeId": 1008, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11859, "employeeId": 1008, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3842, "employeeId": 1009, "customEffectiveDate": "2022-01-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6695, "employeeId": 1009, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17165, "employeeId": 1009, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3536, "employeeId": 1010, "customEffectiveDate": "2021-11-08", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6485, "employeeId": 1010, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6746, "employeeId": 1010, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3614, "employeeId": 1011, "customEffectiveDate": "2021-10-25", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6307, "employeeId": 1011, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7960, "employeeId": 1011, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12100, "employeeId": 1011, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15890, "employeeId": 1011, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3618, "employeeId": 1012, "customEffectiveDate": "2021-12-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6023, "employeeId": 1012, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12336, "employeeId": 1012, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-143", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3787, "employeeId": 1013, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6619, "employeeId": 1013, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3776, "employeeId": 1014, "customEffectiveDate": "2021-11-29", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6471, "employeeId": 1014, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10212, "employeeId": 1014, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3817, "employeeId": 1015, "customEffectiveDate": "2021-11-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6603, "employeeId": 1015, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7966, "employeeId": 1015, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12010, "employeeId": 1015, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-175", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3831, "employeeId": 1016, "customEffectiveDate": "2021-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5215, "employeeId": 1016, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6364, "employeeId": 1016, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7968, "employeeId": 1016, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11971, "employeeId": 1016, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-176", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3779, "employeeId": 1017, "customEffectiveDate": "2022-01-03", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6069, "employeeId": 1017, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12256, "employeeId": 1017, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-148", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3791, "employeeId": 1018, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6583, "employeeId": 1018, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7964, "employeeId": 1018, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3786, "employeeId": 1019, "customEffectiveDate": "2021-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6417, "employeeId": 1019, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3819, "employeeId": 1020, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7658, "employeeId": 1020, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10345, "employeeId": 1020, "customEffectiveDate": "2022-12-31", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3822, "employeeId": 1021, "customEffectiveDate": "2021-12-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6482, "employeeId": 1021, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6747, "employeeId": 1021, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3825, "employeeId": 1022, "customEffectiveDate": "2022-01-10", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6031, "employeeId": 1022, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12250, "employeeId": 1022, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-149", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3835, "employeeId": 1023, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3841, "employeeId": 1024, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6564, "employeeId": 1024, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7980, "employeeId": 1024, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3880, "employeeId": 1025, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6394, "employeeId": 1025, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12322, "employeeId": 1025, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3834, "employeeId": 1026, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6430, "employeeId": 1026, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3843, "employeeId": 1027, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6539, "employeeId": 1027, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7974, "employeeId": 1027, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3882, "employeeId": 1028, "customEffectiveDate": "2022-01-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6595, "employeeId": 1028, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7988, "employeeId": 1028, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11988, "employeeId": 1028, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3879, "employeeId": 1029, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6590, "employeeId": 1029, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7978, "employeeId": 1029, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11976, "employeeId": 1029, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-186", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3860, "employeeId": 1030, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3852, "employeeId": 1031, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6540, "employeeId": 1031, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7981, "employeeId": 1031, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11999, "employeeId": 1031, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-190", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3855, "employeeId": 1032, "customEffectiveDate": "2021-12-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6130, "employeeId": 1032, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12215, "employeeId": 1032, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-145", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3873, "employeeId": 1033, "customEffectiveDate": "2021-11-22", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6579, "employeeId": 1033, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7969, "employeeId": 1033, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11922, "employeeId": 1033, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-178", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3861, "employeeId": 1034, "customEffectiveDate": "2022-01-17", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6384, "employeeId": 1034, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12189, "employeeId": 1034, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3864, "employeeId": 1035, "customEffectiveDate": "2022-04-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6122, "employeeId": 1035, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12225, "employeeId": 1035, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-157", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3869, "employeeId": 1036, "customEffectiveDate": "2021-12-09", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6656, "employeeId": 1036, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8116, "employeeId": 1036, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10131, "employeeId": 1036, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11789, "employeeId": 1036, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15888, "employeeId": 1036, "customEffectiveDate": "2024-01-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3878, "employeeId": 1037, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6600, "employeeId": 1037, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7975, "employeeId": 1037, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12003, "employeeId": 1037, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15898, "employeeId": 1037, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3874, "employeeId": 1038, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6136, "employeeId": 1038, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11709, "employeeId": 1038, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-152", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3883, "employeeId": 1039, "customEffectiveDate": "2022-01-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6323, "employeeId": 1039, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7991, "employeeId": 1039, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11918, "employeeId": 1039, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-196", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3895, "employeeId": 1040, "customEffectiveDate": "2022-01-04", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6243, "employeeId": 1040, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7982, "employeeId": 1040, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12063, "employeeId": 1040, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-192", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3967, "employeeId": 1041, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6612, "employeeId": 1041, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7998, "employeeId": 1041, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12046, "employeeId": 1041, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15904, "employeeId": 1041, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3890, "employeeId": 1042, "customEffectiveDate": "2021-12-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6329, "employeeId": 1042, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7977, "employeeId": 1042, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12080, "employeeId": 1042, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-184", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3907, "employeeId": 1043, "customEffectiveDate": "2021-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6422, "employeeId": 1043, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3966, "employeeId": 1044, "customEffectiveDate": "2022-01-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6494, "employeeId": 1044, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6724, "employeeId": 1044, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12139, "employeeId": 1044, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3911, "employeeId": 1045, "customEffectiveDate": "2022-01-10", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6223, "employeeId": 1045, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7989, "employeeId": 1045, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3908, "employeeId": 1046, "customEffectiveDate": "2021-12-09", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6518, "employeeId": 1046, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7973, "employeeId": 1046, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12102, "employeeId": 1046, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-182", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3909, "employeeId": 1047, "customEffectiveDate": "2021-12-13", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4109, "employeeId": 1048, "customEffectiveDate": "2022-01-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6580, "employeeId": 1048, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7995, "employeeId": 1048, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11938, "employeeId": 1048, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-200", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3916, "employeeId": 1049, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6632, "employeeId": 1049, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7976, "employeeId": 1049, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3986, "employeeId": 1050, "customEffectiveDate": "2021-12-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6440, "employeeId": 1050, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12330, "employeeId": 1050, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3939, "employeeId": 1051, "customEffectiveDate": "2021-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5981, "employeeId": 1051, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12208, "employeeId": 1051, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16051, "employeeId": 1051, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Manager", "customPosition": "ENG-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3965, "employeeId": 1052, "customEffectiveDate": "2022-01-10", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3964, "employeeId": 1053, "customEffectiveDate": "2022-01-04", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6176, "employeeId": 1053, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7983, "employeeId": 1053, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11431, "employeeId": 1053, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11657, "employeeId": 1053, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-187", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3951, "employeeId": 1054, "customEffectiveDate": "2022-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6469, "employeeId": 1054, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10199, "employeeId": 1054, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11690, "employeeId": 1054, "customEffectiveDate": "2023-10-11", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3956, "employeeId": 1055, "customEffectiveDate": "2022-01-10", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6106, "employeeId": 1055, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12316, "employeeId": 1055, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-150", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4142, "employeeId": 1056, "customEffectiveDate": "2022-02-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6306, "employeeId": 1056, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7999, "employeeId": 1056, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12077, "employeeId": 1056, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-205", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3984, "employeeId": 1057, "customEffectiveDate": "2022-01-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6703, "employeeId": 1057, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17182, "employeeId": 1057, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3971, "employeeId": 1058, "customEffectiveDate": "2022-02-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6297, "employeeId": 1058, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7997, "employeeId": 1058, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12037, "employeeId": 1058, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-202", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3981, "employeeId": 1059, "customEffectiveDate": "2022-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6248, "employeeId": 1059, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8076, "employeeId": 1059, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12011, "employeeId": 1059, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-265", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3987, "employeeId": 1060, "customEffectiveDate": "2022-01-17", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4718, "employeeId": 1060, "customEffectiveDate": "2022-06-20", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11713, "employeeId": 1060, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3989, "employeeId": 1061, "customEffectiveDate": "2022-01-17", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4945, "employeeId": 1061, "customEffectiveDate": "2022-08-15", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5959, "employeeId": 1061, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12291, "employeeId": 1061, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-178", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3991, "employeeId": 1062, "customEffectiveDate": "2022-01-24", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6528, "employeeId": 1062, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7994, "employeeId": 1062, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12078, "employeeId": 1062, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-199", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3993, "employeeId": 1063, "customEffectiveDate": "2022-02-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6156, "employeeId": 1063, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10372, "employeeId": 1063, "customEffectiveDate": "2023-05-19", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3999, "employeeId": 1064, "customEffectiveDate": "2022-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6333, "employeeId": 1064, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8007, "employeeId": 1064, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12108, "employeeId": 1064, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-212", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4002, "employeeId": 1065, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6553, "employeeId": 1065, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7979, "employeeId": 1065, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11935, "employeeId": 1065, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-185", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4021, "employeeId": 1066, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6596, "employeeId": 1066, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7984, "employeeId": 1066, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11992, "employeeId": 1066, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-189", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4019, "employeeId": 1067, "customEffectiveDate": "2022-01-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6372, "employeeId": 1067, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6729, "employeeId": 1067, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4020, "employeeId": 1068, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6587, "employeeId": 1068, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7985, "employeeId": 1068, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11968, "employeeId": 1068, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-188", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4121, "employeeId": 1069, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6594, "employeeId": 1069, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8000, "employeeId": 1069, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11986, "employeeId": 1069, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16046, "employeeId": 1069, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4054, "employeeId": 1072, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4052, "employeeId": 1073, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6663, "employeeId": 1073, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8117, "employeeId": 1073, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10127, "employeeId": 1073, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13720, "employeeId": 1073, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-378", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4044, "employeeId": 1074, "customEffectiveDate": "2022-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6182, "employeeId": 1074, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7990, "employeeId": 1074, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12070, "employeeId": 1074, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-194", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4079, "employeeId": 1075, "customEffectiveDate": "2022-02-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6326, "employeeId": 1075, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8003, "employeeId": 1075, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12030, "employeeId": 1075, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4041, "employeeId": 1076, "customEffectiveDate": "2022-01-04", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6178, "employeeId": 1076, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7986, "employeeId": 1076, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11425, "employeeId": 1076, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11659, "employeeId": 1076, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-191", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4055, "employeeId": 1077, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6666, "employeeId": 1077, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8118, "employeeId": 1077, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4053, "employeeId": 1078, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8099, "employeeId": 1078, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13717, "employeeId": 1078, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-375", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4087, "employeeId": 1079, "customEffectiveDate": "2022-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6473, "employeeId": 1079, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10200, "employeeId": 1079, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11024, "employeeId": 1079, "customEffectiveDate": "2023-09-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Added Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11699, "employeeId": 1079, "customEffectiveDate": "2023-09-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Added Aura Role", "customPosition": "PRD-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4050, "employeeId": 1080, "customEffectiveDate": "2022-01-10", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4166, "employeeId": 1080, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4780, "employeeId": 1080, "customEffectiveDate": "2022-03-28", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5950, "employeeId": 1080, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12296, "employeeId": 1080, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4090, "employeeId": 1081, "customEffectiveDate": "2022-01-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4123, "employeeId": 1083, "customEffectiveDate": "2022-06-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6669, "employeeId": 1083, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8124, "employeeId": 1083, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10130, "employeeId": 1083, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11802, "employeeId": 1083, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-240", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4086, "employeeId": 1084, "customEffectiveDate": "2022-01-24", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6689, "employeeId": 1084, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17160, "employeeId": 1084, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4085, "employeeId": 1085, "customEffectiveDate": "2022-01-18", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4157, "employeeId": 1085, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5926, "employeeId": 1085, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7992, "employeeId": 1085, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11967, "employeeId": 1085, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-197", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4091, "employeeId": 1086, "customEffectiveDate": "2022-01-17", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6460, "employeeId": 1086, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10191, "employeeId": 1086, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11845, "employeeId": 1086, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4095, "employeeId": 1088, "customEffectiveDate": "2022-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6531, "employeeId": 1088, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8008, "employeeId": 1088, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4098, "employeeId": 1089, "customEffectiveDate": "2022-02-28", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6011, "employeeId": 1089, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12222, "employeeId": 1089, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-154", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4108, "employeeId": 1090, "customEffectiveDate": "2022-01-24", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6655, "employeeId": 1090, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8119, "employeeId": 1090, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10124, "employeeId": 1090, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11788, "employeeId": 1090, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-198", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4114, "employeeId": 1091, "customEffectiveDate": "2022-04-19", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5922, "employeeId": 1091, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8024, "employeeId": 1091, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4120, "employeeId": 1092, "customEffectiveDate": "2022-02-14", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6605, "employeeId": 1092, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8001, "employeeId": 1092, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12017, "employeeId": 1092, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-207", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4117, "employeeId": 1093, "customEffectiveDate": "2022-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5776, "employeeId": 1093, "customEffectiveDate": "2022-09-08", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5914, "employeeId": 1093, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6745, "employeeId": 1093, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12154, "employeeId": 1093, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4227, "employeeId": 1095, "customEffectiveDate": "2022-03-28", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6478, "employeeId": 1095, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9137, "employeeId": 1095, "customEffectiveDate": "2023-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10004, "employeeId": 1095, "customEffectiveDate": "2023-05-17", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10198, "employeeId": 1095, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11810, "employeeId": 1095, "customEffectiveDate": "2023-05-17", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "PRD-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16058, "employeeId": 1095, "customEffectiveDate": "2024-02-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "No longer People Manager", "customPosition": "PRD-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4673, "employeeId": 1096, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7659, "employeeId": 1096, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "SYS-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4705, "employeeId": 1097, "customEffectiveDate": "2022-04-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4127, "employeeId": 1098, "customEffectiveDate": "2022-01-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6437, "employeeId": 1098, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8417, "employeeId": 1098, "customEffectiveDate": "2023-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11897, "employeeId": 1098, "customEffectiveDate": "2023-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4131, "employeeId": 1099, "customEffectiveDate": "2022-01-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6606, "employeeId": 1099, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7996, "employeeId": 1099, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12025, "employeeId": 1099, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17243, "employeeId": 1099, "customEffectiveDate": "2024-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-394", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4645, "employeeId": 1100, "customEffectiveDate": "2022-03-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6188, "employeeId": 1100, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8009, "employeeId": 1100, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11902, "employeeId": 1100, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-211", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4140, "employeeId": 1101, "customEffectiveDate": "2022-02-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4143, "employeeId": 1102, "customEffectiveDate": "2022-02-14", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6177, "employeeId": 1102, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8002, "employeeId": 1102, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11429, "employeeId": 1102, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11658, "employeeId": 1102, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-206", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17417, "employeeId": 1102, "customEffectiveDate": "2024-03-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-254", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4144, "employeeId": 1103, "customEffectiveDate": "2022-05-10", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6388, "employeeId": 1103, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12327, "employeeId": 1103, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4148, "employeeId": 1104, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4953, "employeeId": 1104, "customEffectiveDate": "2022-04-11", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6244, "employeeId": 1104, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8016, "employeeId": 1104, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12061, "employeeId": 1104, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-217", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4608, "employeeId": 1105, "customEffectiveDate": "2022-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6421, "employeeId": 1105, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4658, "employeeId": 1107, "customEffectiveDate": "2022-03-07", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6358, "employeeId": 1107, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8011, "employeeId": 1107, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12074, "employeeId": 1107, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-214", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4210, "employeeId": 1108, "customEffectiveDate": "2022-02-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5378, "employeeId": 1108, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4225, "employeeId": 1109, "customEffectiveDate": "2022-02-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6433, "employeeId": 1109, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12294, "employeeId": 1109, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4697, "employeeId": 1110, "customEffectiveDate": "2022-03-21", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6490, "employeeId": 1110, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6723, "employeeId": 1110, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4625, "employeeId": 1111, "customEffectiveDate": "2022-02-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6407, "employeeId": 1111, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12177, "employeeId": 1111, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4230, "employeeId": 1112, "customEffectiveDate": "2022-05-16", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6095, "employeeId": 1112, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8229, "employeeId": 1112, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11876, "employeeId": 1112, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-161", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4244, "employeeId": 1113, "customEffectiveDate": "2022-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6330, "employeeId": 1113, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8014, "employeeId": 1113, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12082, "employeeId": 1113, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-216", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4623, "employeeId": 1114, "customEffectiveDate": "2022-02-28", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6353, "employeeId": 1114, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8004, "employeeId": 1114, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12013, "employeeId": 1114, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-209", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4657, "employeeId": 1115, "customEffectiveDate": "2022-03-07", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5947, "employeeId": 1115, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10466, "employeeId": 1115, "customEffectiveDate": "2023-08-21", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11740, "employeeId": 1115, "customEffectiveDate": "2023-08-21", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4624, "employeeId": 1116, "customEffectiveDate": "2022-02-28", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6690, "employeeId": 1116, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17166, "employeeId": 1116, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4627, "employeeId": 1117, "customEffectiveDate": "2022-03-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6453, "employeeId": 1117, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12302, "employeeId": 1117, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "MKG-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4626, "employeeId": 1118, "customEffectiveDate": "2022-02-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6586, "employeeId": 1118, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8005, "employeeId": 1118, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4660, "employeeId": 1119, "customEffectiveDate": "2022-03-21", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6674, "employeeId": 1119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13721, "employeeId": 1119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4622, "employeeId": 1120, "customEffectiveDate": "2022-02-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6439, "employeeId": 1120, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4702, "employeeId": 1121, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6291, "employeeId": 1121, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8017, "employeeId": 1121, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4649, "employeeId": 1122, "customEffectiveDate": "2022-03-14", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6174, "employeeId": 1122, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8013, "employeeId": 1122, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11433, "employeeId": 1122, "customEffectiveDate": "2023-11-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11668, "employeeId": 1122, "customEffectiveDate": "2023-11-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-215", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4621, "employeeId": 1124, "customEffectiveDate": "2022-02-28", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6180, "employeeId": 1124, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8006, "employeeId": 1124, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11426, "employeeId": 1124, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11665, "employeeId": 1124, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-210", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4659, "employeeId": 1126, "customEffectiveDate": "2022-03-07", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6208, "employeeId": 1126, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8012, "employeeId": 1126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4632, "employeeId": 1127, "customEffectiveDate": "2022-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6042, "employeeId": 1127, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8272, "employeeId": 1127, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11213, "employeeId": 1127, "customEffectiveDate": "2023-11-06", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11673, "employeeId": 1127, "customEffectiveDate": "2023-11-06", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4639, "employeeId": 1128, "customEffectiveDate": "2022-03-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6053, "employeeId": 1128, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12339, "employeeId": 1128, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-156", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4646, "employeeId": 1129, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6034, "employeeId": 1129, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12233, "employeeId": 1129, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-158", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4679, "employeeId": 1130, "customEffectiveDate": "2022-06-06", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12202, "employeeId": 1130, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-168", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5138, "employeeId": 1131, "customEffectiveDate": "2022-05-23", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4755, "employeeId": 1132, "customEffectiveDate": "2022-05-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9184, "employeeId": 1132, "customEffectiveDate": "2023-05-30", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4664, "employeeId": 1133, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6041, "employeeId": 1133, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12252, "employeeId": 1133, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-162", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4656, "employeeId": 1134, "customEffectiveDate": "2022-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6435, "employeeId": 1134, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4676, "employeeId": 1136, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6639, "employeeId": 1136, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8120, "employeeId": 1136, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10043, "employeeId": 1136, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4682, "employeeId": 1138, "customEffectiveDate": "2022-06-06", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8044, "employeeId": 1138, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11923, "employeeId": 1138, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-242", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4686, "employeeId": 1139, "customEffectiveDate": "2022-03-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6614, "employeeId": 1139, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8010, "employeeId": 1139, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12059, "employeeId": 1139, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-213", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4692, "employeeId": 1140, "customEffectiveDate": "2022-03-21", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5737, "employeeId": 1140, "customEffectiveDate": "2022-09-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6269, "employeeId": 1140, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8015, "employeeId": 1140, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4698, "employeeId": 1141, "customEffectiveDate": "2022-03-28", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5949, "employeeId": 1141, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4763, "employeeId": 1142, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6640, "employeeId": 1142, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8121, "employeeId": 1142, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10044, "employeeId": 1142, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11799, "employeeId": 1142, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-225", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4751, "employeeId": 1143, "customEffectiveDate": "2022-04-25", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6203, "employeeId": 1143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7721, "employeeId": 1143, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8025, "employeeId": 1143, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11914, "employeeId": 1143, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-226", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4704, "employeeId": 1144, "customEffectiveDate": "2022-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6285, "employeeId": 1144, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8018, "employeeId": 1144, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11963, "employeeId": 1144, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-219", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4758, "employeeId": 1145, "customEffectiveDate": "2022-04-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6426, "employeeId": 1145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12270, "employeeId": 1145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4703, "employeeId": 1146, "customEffectiveDate": "2022-04-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4750, "employeeId": 1147, "customEffectiveDate": "2022-04-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6205, "employeeId": 1147, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8019, "employeeId": 1147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11946, "employeeId": 1147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-218", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4769, "employeeId": 1148, "customEffectiveDate": "2022-05-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6696, "employeeId": 1148, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17157, "employeeId": 1148, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4754, "employeeId": 1149, "customEffectiveDate": "2022-06-27", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5929, "employeeId": 1149, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8050, "employeeId": 1149, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12117, "employeeId": 1149, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-248", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4757, "employeeId": 1150, "customEffectiveDate": "2022-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6418, "employeeId": 1150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12220, "employeeId": 1150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4746, "employeeId": 1151, "customEffectiveDate": "2022-03-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4766, "employeeId": 1152, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6481, "employeeId": 1152, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6751, "employeeId": 1152, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4752, "employeeId": 1154, "customEffectiveDate": "2022-04-11", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6519, "employeeId": 1154, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6770, "employeeId": 1154, "customEffectiveDate": "2022-11-07", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8021, "employeeId": 1154, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4742, "employeeId": 1155, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5563, "employeeId": 1155, "customEffectiveDate": "2022-10-19", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6014, "employeeId": 1155, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12160, "employeeId": 1155, "customEffectiveDate": "2022-10-19", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-194", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4753, "employeeId": 1156, "customEffectiveDate": "2022-04-18", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6233, "employeeId": 1156, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8022, "employeeId": 1156, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11940, "employeeId": 1156, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-221", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4772, "employeeId": 1157, "customEffectiveDate": "2022-06-20", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6320, "employeeId": 1157, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8048, "employeeId": 1157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11991, "employeeId": 1157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-244", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4805, "employeeId": 1158, "customEffectiveDate": "2022-04-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6449, "employeeId": 1158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12251, "employeeId": 1158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4777, "employeeId": 1159, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5187, "employeeId": 1160, "customEffectiveDate": "2022-06-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6275, "employeeId": 1160, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8037, "employeeId": 1160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12065, "employeeId": 1160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-238", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4808, "employeeId": 1161, "customEffectiveDate": "2022-05-02", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6197, "employeeId": 1161, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7719, "employeeId": 1161, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8028, "employeeId": 1161, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11904, "employeeId": 1161, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-227", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4969, "employeeId": 1162, "customEffectiveDate": "2022-05-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6403, "employeeId": 1162, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4786, "employeeId": 1163, "customEffectiveDate": "2022-03-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6413, "employeeId": 1163, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4787, "employeeId": 1164, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4789, "employeeId": 1165, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8339, "employeeId": 1165, "customEffectiveDate": "2023-06-19", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4791, "employeeId": 1166, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4793, "employeeId": 1167, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4796, "employeeId": 1168, "customEffectiveDate": "2022-08-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6004, "employeeId": 1168, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12261, "employeeId": 1168, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16933, "employeeId": 1168, "customEffectiveDate": "2024-02-12", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "ENG-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4795, "employeeId": 1169, "customEffectiveDate": "2022-04-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6367, "employeeId": 1169, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12185, "employeeId": 1169, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17153, "employeeId": 1169, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4809, "employeeId": 1170, "customEffectiveDate": "2022-04-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4804, "employeeId": 1171, "customEffectiveDate": "2022-04-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6593, "employeeId": 1171, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8020, "employeeId": 1171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11985, "employeeId": 1171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-220", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4818, "employeeId": 1172, "customEffectiveDate": "2022-04-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6282, "employeeId": 1172, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8023, "employeeId": 1172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11956, "employeeId": 1172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4819, "employeeId": 1173, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6345, "employeeId": 1173, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8026, "employeeId": 1173, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11932, "employeeId": 1173, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-224", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4812, "employeeId": 1174, "customEffectiveDate": "2022-04-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6704, "employeeId": 1174, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15896, "employeeId": 1174, "customEffectiveDate": "2024-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17161, "employeeId": 1174, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4932, "employeeId": 1175, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6488, "employeeId": 1175, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6721, "employeeId": 1175, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12142, "employeeId": 1175, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4858, "employeeId": 1176, "customEffectiveDate": "2022-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6510, "employeeId": 1176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8038, "employeeId": 1176, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11998, "employeeId": 1176, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-235", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4936, "employeeId": 1178, "customEffectiveDate": "2022-05-09", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6277, "employeeId": 1178, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8031, "employeeId": 1178, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12124, "employeeId": 1178, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15901, "employeeId": 1178, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4956, "employeeId": 1179, "customEffectiveDate": "2022-05-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6338, "employeeId": 1179, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8029, "employeeId": 1179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4933, "employeeId": 1180, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6705, "employeeId": 1180, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17176, "employeeId": 1180, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4934, "employeeId": 1181, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6646, "employeeId": 1181, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8122, "employeeId": 1181, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4925, "employeeId": 1182, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6018, "employeeId": 1182, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10381, "employeeId": 1182, "customEffectiveDate": "2022-11-30", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4935, "employeeId": 1183, "customEffectiveDate": "2022-04-25", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6671, "employeeId": 1183, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4954, "employeeId": 1184, "customEffectiveDate": "2022-04-25", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6112, "employeeId": 1184, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10351, "employeeId": 1184, "customEffectiveDate": "2023-06-23", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13710, "employeeId": 1184, "customEffectiveDate": "2023-06-23", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "ENG-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4940, "employeeId": 1185, "customEffectiveDate": "2022-06-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6087, "employeeId": 1185, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10165, "employeeId": 1185, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11782, "employeeId": 1185, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-167", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4957, "employeeId": 1186, "customEffectiveDate": "2022-05-02", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6271, "employeeId": 1186, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8030, "employeeId": 1186, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12035, "employeeId": 1186, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-228", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4937, "employeeId": 1187, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4967, "employeeId": 1188, "customEffectiveDate": "2022-05-02", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4950, "employeeId": 1190, "customEffectiveDate": "2022-06-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6001, "employeeId": 1190, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12300, "employeeId": 1190, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-166", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4958, "employeeId": 1191, "customEffectiveDate": "2022-06-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6247, "employeeId": 1191, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8049, "employeeId": 1191, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11994, "employeeId": 1191, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-245", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4985, "employeeId": 1193, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6344, "employeeId": 1193, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8027, "employeeId": 1193, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11924, "employeeId": 1193, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4973, "employeeId": 1194, "customEffectiveDate": "2022-05-30", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6157, "employeeId": 1194, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12187, "employeeId": 1194, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12345, "employeeId": 1194, "customEffectiveDate": "2023-12-19", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4970, "employeeId": 1195, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6102, "employeeId": 1195, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12260, "employeeId": 1195, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-177", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5055, "employeeId": 1196, "customEffectiveDate": "2022-05-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5054, "employeeId": 1197, "customEffectiveDate": "2022-05-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4986, "employeeId": 1198, "customEffectiveDate": "2022-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6319, "employeeId": 1198, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8039, "employeeId": 1198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11989, "employeeId": 1198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-234", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4987, "employeeId": 1199, "customEffectiveDate": "2022-04-25", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6092, "employeeId": 1199, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12219, "employeeId": 1199, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4992, "employeeId": 1200, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6063, "employeeId": 1200, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12340, "employeeId": 1200, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-160", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4996, "employeeId": 1201, "customEffectiveDate": "2022-05-30", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5979, "employeeId": 1201, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10184, "employeeId": 1201, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11778, "employeeId": 1201, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-164", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5008, "employeeId": 1203, "customEffectiveDate": "2022-05-30", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5976, "employeeId": 1203, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10182, "employeeId": 1203, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11774, "employeeId": 1203, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-163", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5001, "employeeId": 1204, "customEffectiveDate": "2022-04-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6575, "employeeId": 1204, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5002, "employeeId": 1205, "customEffectiveDate": "2022-05-23", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5925, "employeeId": 1205, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8033, "employeeId": 1205, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12072, "employeeId": 1205, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-232", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5131, "employeeId": 1206, "customEffectiveDate": "2022-07-11", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6167, "employeeId": 1206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12314, "employeeId": 1206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-172", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5056, "employeeId": 1207, "customEffectiveDate": "2022-05-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8325, "employeeId": 1207, "customEffectiveDate": "2023-02-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Rehire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11867, "employeeId": 1207, "customEffectiveDate": "2023-02-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Rehire", "customPosition": "FO-301", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5097, "employeeId": 1208, "customEffectiveDate": "2022-05-23", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6268, "employeeId": 1208, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8034, "employeeId": 1208, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11996, "employeeId": 1208, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-231", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5543, "employeeId": 1209, "customEffectiveDate": "2022-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6373, "employeeId": 1209, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6731, "employeeId": 1209, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12156, "employeeId": 1209, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5070, "employeeId": 1210, "customEffectiveDate": "2022-05-09", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6199, "employeeId": 1210, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8032, "employeeId": 1210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10082, "employeeId": 1210, "customEffectiveDate": "2023-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Converted to FTE", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11806, "employeeId": 1210, "customEffectiveDate": "2023-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Converted to FTE", "customPosition": "FO-229", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5066, "employeeId": 1211, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7723, "employeeId": 1211, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8040, "employeeId": 1211, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11910, "employeeId": 1211, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15905, "employeeId": 1211, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5067, "employeeId": 1212, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6529, "employeeId": 1212, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8041, "employeeId": 1212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12115, "employeeId": 1212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-241", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5093, "employeeId": 1213, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5990, "employeeId": 1213, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12243, "employeeId": 1213, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-184", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5134, "employeeId": 1214, "customEffectiveDate": "2022-05-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6569, "employeeId": 1214, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8035, "employeeId": 1214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5117, "employeeId": 1215, "customEffectiveDate": "2022-06-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5231, "employeeId": 1216, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6404, "employeeId": 1216, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12285, "employeeId": 1216, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5121, "employeeId": 1217, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5376, "employeeId": 1219, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6447, "employeeId": 1219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12181, "employeeId": 1219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5454, "employeeId": 1220, "customEffectiveDate": "2022-07-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6198, "employeeId": 1220, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8059, "employeeId": 1220, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5192, "employeeId": 1222, "customEffectiveDate": "2022-06-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6219, "employeeId": 1222, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8051, "employeeId": 1222, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9117, "employeeId": 1222, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11895, "employeeId": 1222, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-247", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5155, "employeeId": 1223, "customEffectiveDate": "2022-05-31", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6647, "employeeId": 1223, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8123, "employeeId": 1223, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10126, "employeeId": 1223, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11797, "employeeId": 1223, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-233", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5173, "employeeId": 1224, "customEffectiveDate": "2022-09-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6386, "employeeId": 1224, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12211, "employeeId": 1224, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5191, "employeeId": 1225, "customEffectiveDate": "2022-06-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6202, "employeeId": 1225, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8046, "employeeId": 1225, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5161, "employeeId": 1227, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12170, "employeeId": 1227, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-174", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5160, "employeeId": 1228, "customEffectiveDate": "2022-06-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6230, "employeeId": 1228, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8042, "employeeId": 1228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12067, "employeeId": 1228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-239", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5165, "employeeId": 1229, "customEffectiveDate": "2022-07-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5917, "employeeId": 1229, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10187, "employeeId": 1229, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11839, "employeeId": 1229, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5193, "employeeId": 1230, "customEffectiveDate": "2022-06-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6220, "employeeId": 1230, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8045, "employeeId": 1230, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12126, "employeeId": 1230, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-243", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5176, "employeeId": 1231, "customEffectiveDate": "2022-08-15", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6691, "employeeId": 1231, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17183, "employeeId": 1231, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5174, "employeeId": 1232, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6060, "employeeId": 1232, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12299, "employeeId": 1232, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-185", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5170, "employeeId": 1233, "customEffectiveDate": "2022-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6527, "employeeId": 1233, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8055, "employeeId": 1233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5178, "employeeId": 1234, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6552, "employeeId": 1234, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8043, "employeeId": 1234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12051, "employeeId": 1234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-236", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5184, "employeeId": 1235, "customEffectiveDate": "2022-05-31", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5499, "employeeId": 1235, "customEffectiveDate": "2022-07-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6572, "employeeId": 1235, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8036, "employeeId": 1235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5190, "employeeId": 1237, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6393, "employeeId": 1237, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12308, "employeeId": 1237, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5198, "employeeId": 1238, "customEffectiveDate": "2022-07-25", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6454, "employeeId": 1238, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10190, "employeeId": 1238, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11028, "employeeId": 1238, "customEffectiveDate": "2023-09-27", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Aura Role assigned", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11126, "employeeId": 1238, "customEffectiveDate": "2023-10-06", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Aura Role assigned", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11693, "employeeId": 1238, "customEffectiveDate": "2023-10-06", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Aura Role assigned", "customPosition": "PRD-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5379, "employeeId": 1239, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6486, "employeeId": 1239, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6722, "employeeId": 1239, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8370, "employeeId": 1239, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11889, "employeeId": 1239, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5216, "employeeId": 1240, "customEffectiveDate": "2022-06-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6570, "employeeId": 1240, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8047, "employeeId": 1240, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5200, "employeeId": 1241, "customEffectiveDate": "2022-06-06", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8235, "employeeId": 1241, "customEffectiveDate": "2023-01-26", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10380, "employeeId": 1241, "customEffectiveDate": "2023-02-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5202, "employeeId": 1242, "customEffectiveDate": "2022-06-06", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5217, "employeeId": 1243, "customEffectiveDate": "2022-06-13", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6381, "employeeId": 1243, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6737, "employeeId": 1243, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12152, "employeeId": 1243, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5492, "employeeId": 1244, "customEffectiveDate": "2022-07-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6339, "employeeId": 1244, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8063, "employeeId": 1244, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12092, "employeeId": 1244, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-257", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5380, "employeeId": 1245, "customEffectiveDate": "2022-07-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6400, "employeeId": 1245, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10301, "employeeId": 1245, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11763, "employeeId": 1245, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5234, "employeeId": 1246, "customEffectiveDate": "2022-07-04", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6322, "employeeId": 1246, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8057, "employeeId": 1246, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12043, "employeeId": 1246, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-252", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5457, "employeeId": 1247, "customEffectiveDate": "2022-07-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6195, "employeeId": 1247, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8060, "employeeId": 1247, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11901, "employeeId": 1247, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-254", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15944, "employeeId": 1247, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-386", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5223, "employeeId": 1248, "customEffectiveDate": "2022-06-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10013, "employeeId": 1248, "customEffectiveDate": "2023-06-27", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5291, "employeeId": 1250, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6184, "employeeId": 1250, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8067, "employeeId": 1250, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8197, "employeeId": 1250, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11879, "employeeId": 1250, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-258", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5448, "employeeId": 1251, "customEffectiveDate": "2022-07-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6638, "employeeId": 1251, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8125, "employeeId": 1251, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10042, "employeeId": 1251, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11791, "employeeId": 1251, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-255", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5232, "employeeId": 1252, "customEffectiveDate": "2022-08-15", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5982, "employeeId": 1252, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12214, "employeeId": 1252, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-176", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5374, "employeeId": 1254, "customEffectiveDate": "2022-07-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6200, "employeeId": 1254, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8058, "employeeId": 1254, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12060, "employeeId": 1254, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-253", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5493, "employeeId": 1255, "customEffectiveDate": "2022-07-18", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6194, "employeeId": 1255, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8064, "employeeId": 1255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11934, "employeeId": 1255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-256", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5273, "employeeId": 1256, "customEffectiveDate": "2022-06-27", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6672, "employeeId": 1256, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5320, "employeeId": 1258, "customEffectiveDate": "2022-07-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8065, "employeeId": 1258, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5692, "employeeId": 1259, "customEffectiveDate": "2022-06-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5420, "employeeId": 1260, "customEffectiveDate": "2022-07-25", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8066, "employeeId": 1260, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-436", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5314, "employeeId": 1261, "customEffectiveDate": "2022-06-27", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6568, "employeeId": 1261, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8052, "employeeId": 1261, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11995, "employeeId": 1261, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-246", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5268, "employeeId": 1262, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10548, "employeeId": 1262, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11710, "employeeId": 1262, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-209", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5494, "employeeId": 1264, "customEffectiveDate": "2022-07-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6406, "employeeId": 1264, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12317, "employeeId": 1264, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5455, "employeeId": 1265, "customEffectiveDate": "2022-07-11", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6273, "employeeId": 1265, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8061, "employeeId": 1265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5375, "employeeId": 1266, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6489, "employeeId": 1266, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6725, "employeeId": 1266, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12153, "employeeId": 1266, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5453, "employeeId": 1267, "customEffectiveDate": "2022-07-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6571, "employeeId": 1267, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8062, "employeeId": 1267, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5284, "employeeId": 1268, "customEffectiveDate": "2022-08-29", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6035, "employeeId": 1268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10464, "employeeId": 1268, "customEffectiveDate": "2023-09-30", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5456, "employeeId": 1269, "customEffectiveDate": "2022-07-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17167, "employeeId": 1269, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5305, "employeeId": 1270, "customEffectiveDate": "2022-08-22", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6139, "employeeId": 1270, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8228, "employeeId": 1270, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11874, "employeeId": 1270, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-180", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5592, "employeeId": 1271, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6140, "employeeId": 1271, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10547, "employeeId": 1271, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11712, "employeeId": 1271, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-175", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5310, "employeeId": 1272, "customEffectiveDate": "2022-06-28", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8053, "employeeId": 1272, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11929, "employeeId": 1272, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-249", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5719, "employeeId": 1273, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11863, "employeeId": 1273, "customEffectiveDate": "2023-02-27", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-189", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5321, "employeeId": 1274, "customEffectiveDate": "2022-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6526, "employeeId": 1274, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8077, "employeeId": 1274, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11969, "employeeId": 1274, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-264", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5495, "employeeId": 1275, "customEffectiveDate": "2022-07-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5372, "employeeId": 1276, "customEffectiveDate": "2022-07-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6186, "employeeId": 1276, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7714, "employeeId": 1276, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8056, "employeeId": 1276, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11906, "employeeId": 1276, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-251", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5373, "employeeId": 1277, "customEffectiveDate": "2022-06-30", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6185, "employeeId": 1277, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8054, "employeeId": 1277, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8196, "employeeId": 1277, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11881, "employeeId": 1277, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-250", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5578, "employeeId": 1278, "customEffectiveDate": "2022-08-08", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6520, "employeeId": 1278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8069, "employeeId": 1278, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5443, "employeeId": 1280, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6487, "employeeId": 1280, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6720, "employeeId": 1280, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12143, "employeeId": 1280, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5540, "employeeId": 1281, "customEffectiveDate": "2022-10-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6706, "employeeId": 1281, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17174, "employeeId": 1281, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5656, "employeeId": 1283, "customEffectiveDate": "2022-08-31", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6387, "employeeId": 1283, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12274, "employeeId": 1283, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5542, "employeeId": 1284, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8087, "employeeId": 1284, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5725, "employeeId": 1285, "customEffectiveDate": "2022-10-10", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5954, "employeeId": 1285, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12163, "employeeId": 1285, "customEffectiveDate": "2022-10-10", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-192", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5459, "employeeId": 1286, "customEffectiveDate": "2022-07-11", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5461, "employeeId": 1287, "customEffectiveDate": "2022-07-11", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6070, "employeeId": 1287, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10499, "employeeId": 1287, "customEffectiveDate": "2023-08-28", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11733, "employeeId": 1287, "customEffectiveDate": "2023-08-28", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-171", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5709, "employeeId": 1288, "customEffectiveDate": "2022-09-06", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6196, "employeeId": 1288, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8079, "employeeId": 1288, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11957, "employeeId": 1288, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-266", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5721, "employeeId": 1289, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8088, "employeeId": 1289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11964, "employeeId": 1289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-272", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5557, "employeeId": 1290, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12136, "employeeId": 1290, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-198", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5490, "employeeId": 1291, "customEffectiveDate": "2022-07-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6697, "employeeId": 1291, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17164, "employeeId": 1291, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5498, "employeeId": 1292, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5505, "employeeId": 1293, "customEffectiveDate": "2022-08-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6650, "employeeId": 1293, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8126, "employeeId": 1293, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10133, "employeeId": 1293, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11801, "employeeId": 1293, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-260", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5504, "employeeId": 1294, "customEffectiveDate": "2022-08-22", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8072, "employeeId": 1294, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12107, "employeeId": 1294, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-263", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5544, "employeeId": 1295, "customEffectiveDate": "2022-08-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6272, "employeeId": 1295, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8068, "employeeId": 1295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8414, "employeeId": 1295, "customEffectiveDate": "2023-04-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11340, "employeeId": 1295, "customEffectiveDate": "2023-11-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11661, "employeeId": 1295, "customEffectiveDate": "2023-11-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-303", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5547, "employeeId": 1296, "customEffectiveDate": "2022-08-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6651, "employeeId": 1296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8127, "employeeId": 1296, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5548, "employeeId": 1297, "customEffectiveDate": "2022-08-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6368, "employeeId": 1297, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12199, "employeeId": 1297, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17162, "employeeId": 1297, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5559, "employeeId": 1298, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6058, "employeeId": 1298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12283, "employeeId": 1298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-190", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5715, "employeeId": 1299, "customEffectiveDate": "2022-09-05", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6147, "employeeId": 1299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8166, "employeeId": 1299, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9177, "employeeId": 1299, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11838, "employeeId": 1299, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-186", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5565, "employeeId": 1300, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12130, "employeeId": 1300, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5551, "employeeId": 1301, "customEffectiveDate": "2022-08-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6224, "employeeId": 1301, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8074, "employeeId": 1301, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5713, "employeeId": 1302, "customEffectiveDate": "2022-09-05", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5985, "employeeId": 1302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12248, "employeeId": 1302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-187", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5574, "employeeId": 1303, "customEffectiveDate": "2022-12-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8096, "employeeId": 1303, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8200, "employeeId": 1303, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11911, "employeeId": 1303, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-279", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6479, "employeeId": 1304, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12147, "employeeId": 1304, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5787, "employeeId": 1305, "customEffectiveDate": "2022-08-08", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5946, "employeeId": 1305, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12167, "employeeId": 1305, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5571, "employeeId": 1306, "customEffectiveDate": "2022-08-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8071, "employeeId": 1306, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11878, "employeeId": 1306, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-261", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5729, "employeeId": 1307, "customEffectiveDate": "2022-11-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6463, "employeeId": 1307, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10201, "employeeId": 1307, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11836, "employeeId": 1307, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5700, "employeeId": 1308, "customEffectiveDate": "2022-09-12", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6270, "employeeId": 1308, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8081, "employeeId": 1308, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12026, "employeeId": 1308, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-268", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16083, "employeeId": 1308, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-268", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5585, "employeeId": 1309, "customEffectiveDate": "2022-05-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6434, "employeeId": 1309, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5589, "employeeId": 1310, "customEffectiveDate": "2022-08-08", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6321, "employeeId": 1310, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8070, "employeeId": 1310, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12001, "employeeId": 1310, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-259", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5617, "employeeId": 1311, "customEffectiveDate": "2022-08-22", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6276, "employeeId": 1311, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8073, "employeeId": 1311, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12083, "employeeId": 1311, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-262", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5619, "employeeId": 1312, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11888, "employeeId": 1312, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-205", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5654, "employeeId": 1313, "customEffectiveDate": "2022-08-29", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6566, "employeeId": 1313, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8075, "employeeId": 1313, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13713, "employeeId": 1313, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-364", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5646, "employeeId": 1314, "customEffectiveDate": "2022-08-29", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5627, "employeeId": 1315, "customEffectiveDate": "2022-08-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6480, "employeeId": 1315, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6750, "employeeId": 1315, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10361, "employeeId": 1315, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11750, "employeeId": 1315, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6246, "employeeId": 1316, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8089, "employeeId": 1316, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11973, "employeeId": 1316, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-273", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5701, "employeeId": 1317, "customEffectiveDate": "2022-09-12", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6648, "employeeId": 1317, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8129, "employeeId": 1317, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10132, "employeeId": 1317, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13714, "employeeId": 1317, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-371", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5655, "employeeId": 1318, "customEffectiveDate": "2022-08-30", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6164, "employeeId": 1318, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12267, "employeeId": 1318, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-182", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5727, "employeeId": 1319, "customEffectiveDate": "2022-10-25", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12159, "employeeId": 1319, "customEffectiveDate": "2022-10-25", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5718, "employeeId": 1320, "customEffectiveDate": "2022-09-19", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6172, "employeeId": 1320, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8083, "employeeId": 1320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11434, "employeeId": 1320, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11664, "employeeId": 1320, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-271", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5711, "employeeId": 1321, "customEffectiveDate": "2022-09-05", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6166, "employeeId": 1321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12310, "employeeId": 1321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-188", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5723, "employeeId": 1322, "customEffectiveDate": "2022-10-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9136, "employeeId": 1322, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11831, "employeeId": 1322, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-191", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5652, "employeeId": 1323, "customEffectiveDate": "2022-08-29", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6168, "employeeId": 1323, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12320, "employeeId": 1323, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5658, "employeeId": 1324, "customEffectiveDate": "2022-08-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6412, "employeeId": 1324, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5783, "employeeId": 1325, "customEffectiveDate": "2022-09-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6402, "employeeId": 1325, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12242, "employeeId": 1325, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5708, "employeeId": 1326, "customEffectiveDate": "2022-09-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6573, "employeeId": 1326, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8080, "employeeId": 1326, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12112, "employeeId": 1326, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-267", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5697, "employeeId": 1327, "customEffectiveDate": "2022-08-29", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6670, "employeeId": 1327, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8128, "employeeId": 1327, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5717, "employeeId": 1328, "customEffectiveDate": "2022-09-19", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6507, "employeeId": 1328, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8084, "employeeId": 1328, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5704, "employeeId": 1329, "customEffectiveDate": "2022-09-06", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6380, "employeeId": 1329, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6736, "employeeId": 1329, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12146, "employeeId": 1329, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5710, "employeeId": 1330, "customEffectiveDate": "2022-09-07", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6379, "employeeId": 1330, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6735, "employeeId": 1330, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5731, "employeeId": 1331, "customEffectiveDate": "2022-09-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6217, "employeeId": 1331, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8082, "employeeId": 1331, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12075, "employeeId": 1331, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-269", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5734, "employeeId": 1332, "customEffectiveDate": "2022-09-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6517, "employeeId": 1332, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8078, "employeeId": 1332, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5739, "employeeId": 1333, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11893, "employeeId": 1333, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-207", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5759, "employeeId": 1334, "customEffectiveDate": "2022-09-09", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6074, "employeeId": 1334, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10375, "employeeId": 1334, "customEffectiveDate": "2023-01-31", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5775, "employeeId": 1335, "customEffectiveDate": "2022-09-12", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6698, "employeeId": 1335, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17171, "employeeId": 1335, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5773, "employeeId": 1336, "customEffectiveDate": "2022-09-09", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6078, "employeeId": 1336, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10349, "employeeId": 1336, "customEffectiveDate": "2023-01-31", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5795, "employeeId": 1338, "customEffectiveDate": "2022-09-19", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6267, "employeeId": 1338, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8085, "employeeId": 1338, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11945, "employeeId": 1338, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-270", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5785, "employeeId": 1339, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12135, "employeeId": 1339, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-197", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5805, "employeeId": 1340, "customEffectiveDate": "2022-10-03", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6204, "employeeId": 1340, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7720, "employeeId": 1340, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8090, "employeeId": 1340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10369, "employeeId": 1340, "customEffectiveDate": "2023-04-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5793, "employeeId": 1341, "customEffectiveDate": "2022-11-15", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11020, "employeeId": 1341, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11155, "employeeId": 1341, "customEffectiveDate": "2023-10-17", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11682, "employeeId": 1341, "customEffectiveDate": "2023-10-17", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "ENG-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5792, "employeeId": 1342, "customEffectiveDate": "2022-09-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6512, "employeeId": 1342, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8086, "employeeId": 1342, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5806, "employeeId": 1343, "customEffectiveDate": "2022-10-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12162, "employeeId": 1343, "customEffectiveDate": "2022-10-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5802, "employeeId": 1344, "customEffectiveDate": "2022-10-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6626, "employeeId": 1344, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8092, "employeeId": 1344, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11931, "employeeId": 1344, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-275", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5808, "employeeId": 1345, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6129, "employeeId": 1345, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10376, "employeeId": 1345, "customEffectiveDate": "2023-03-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5815, "employeeId": 1346, "customEffectiveDate": "2022-10-17", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6649, "employeeId": 1346, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8130, "employeeId": 1346, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10120, "employeeId": 1346, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5867, "employeeId": 1347, "customEffectiveDate": "2022-10-17", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12161, "employeeId": 1347, "customEffectiveDate": "2022-10-17", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-193", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5819, "employeeId": 1348, "customEffectiveDate": "2022-10-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6574, "employeeId": 1348, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8091, "employeeId": 1348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12123, "employeeId": 1348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-274", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5840, "employeeId": 1349, "customEffectiveDate": "2022-12-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17168, "employeeId": 1349, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5842, "employeeId": 1350, "customEffectiveDate": "2022-10-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8093, "employeeId": 1350, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11993, "employeeId": 1350, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-276", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5839, "employeeId": 1351, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6401, "employeeId": 1351, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5844, "employeeId": 1352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11892, "employeeId": 1352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-206", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5847, "employeeId": 1353, "customEffectiveDate": "2022-10-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6383, "employeeId": 1353, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6734, "employeeId": 1353, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6839, "employeeId": 1354, "customEffectiveDate": "2023-01-30", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10166, "employeeId": 1354, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11780, "employeeId": 1354, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-210", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6818, "employeeId": 1355, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12132, "employeeId": 1355, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-200", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5898, "employeeId": 1356, "customEffectiveDate": "2022-09-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11288, "employeeId": 1356, "customEffectiveDate": "2023-10-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5900, "employeeId": 1357, "customEffectiveDate": "2022-10-17", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6769, "employeeId": 1357, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9182, "employeeId": 1357, "customEffectiveDate": "2023-04-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11824, "employeeId": 1357, "customEffectiveDate": "2023-04-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Contractor to FT", "customPosition": "PEO-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6707, "employeeId": 1358, "customEffectiveDate": "2022-11-07", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8094, "employeeId": 1358, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10303, "employeeId": 1358, "customEffectiveDate": "2023-05-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11820, "employeeId": 1358, "customEffectiveDate": "2023-05-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-277", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5911, "employeeId": 1360, "customEffectiveDate": "2022-10-17", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8131, "employeeId": 1360, "customEffectiveDate": "2022-12-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10129, "employeeId": 1360, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6838, "employeeId": 1361, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11898, "employeeId": 1361, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17358, "employeeId": 1361, "customEffectiveDate": "2024-04-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Transfer", "customPosition": "ENG-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6714, "employeeId": 1362, "customEffectiveDate": "2022-10-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12158, "employeeId": 1362, "customEffectiveDate": "2022-10-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6718, "employeeId": 1363, "customEffectiveDate": "2022-10-31", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12157, "employeeId": 1363, "customEffectiveDate": "2022-10-31", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6752, "employeeId": 1364, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12134, "employeeId": 1364, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-196", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6824, "employeeId": 1365, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12128, "employeeId": 1365, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6758, "employeeId": 1366, "customEffectiveDate": "2022-11-07", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8132, "employeeId": 1366, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10116, "employeeId": 1366, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6759, "employeeId": 1367, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10343, "employeeId": 1367, "customEffectiveDate": "2023-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6763, "employeeId": 1368, "customEffectiveDate": "2022-11-28", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8095, "employeeId": 1368, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12096, "employeeId": 1368, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-278", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6764, "employeeId": 1369, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10344, "employeeId": 1369, "customEffectiveDate": "2023-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6771, "employeeId": 1370, "customEffectiveDate": "2022-01-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6772, "employeeId": 1370, "customEffectiveDate": "2022-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6806, "employeeId": 1371, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12127, "employeeId": 1371, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-202", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6828, "employeeId": 1372, "customEffectiveDate": "2022-12-12", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11913, "employeeId": 1372, "customEffectiveDate": "2022-12-12", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15906, "employeeId": 1372, "customEffectiveDate": "2024-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7665, "employeeId": 1373, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12099, "employeeId": 1373, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6840, "employeeId": 1374, "customEffectiveDate": "2023-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11872, "employeeId": 1374, "customEffectiveDate": "2023-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-211", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6831, "employeeId": 1375, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12131, "employeeId": 1375, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6842, "employeeId": 1376, "customEffectiveDate": "2023-01-02", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11849, "employeeId": 1376, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7648, "employeeId": 1378, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12000, "employeeId": 1378, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7651, "employeeId": 1379, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11885, "employeeId": 1379, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-284", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7738, "employeeId": 1381, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13725, "employeeId": 1381, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8144, "employeeId": 1382, "customEffectiveDate": "2023-01-05", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10211, "employeeId": 1382, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11842, "employeeId": 1382, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7664, "employeeId": 1383, "customEffectiveDate": "2022-12-12", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11903, "employeeId": 1383, "customEffectiveDate": "2022-12-12", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-281", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8205, "employeeId": 1384, "customEffectiveDate": "2022-12-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10122, "employeeId": 1384, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13719, "employeeId": 1384, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-377", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8194, "employeeId": 1385, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10551, "employeeId": 1385, "customEffectiveDate": "2023-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11589, "employeeId": 1385, "customEffectiveDate": "2023-11-24", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11653, "employeeId": 1385, "customEffectiveDate": "2023-11-24", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Promotion", "customPosition": "MKG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8297, "employeeId": 1386, "customEffectiveDate": "2023-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10207, "employeeId": 1386, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11852, "employeeId": 1386, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7707, "employeeId": 1387, "customEffectiveDate": "2022-12-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17184, "employeeId": 1387, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7675, "employeeId": 1388, "customEffectiveDate": "2022-12-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7752, "employeeId": 1388, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7672, "employeeId": 1389, "customEffectiveDate": "2022-12-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12121, "employeeId": 1389, "customEffectiveDate": "2022-12-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "FO-280", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7708, "employeeId": 1390, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11886, "employeeId": 1390, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7726, "employeeId": 1391, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11871, "employeeId": 1391, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-212", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7734, "employeeId": 1392, "customEffectiveDate": "2022-12-27", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11899, "employeeId": 1392, "customEffectiveDate": "2022-12-27", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-282", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7735, "employeeId": 1393, "customEffectiveDate": "2023-01-03", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11887, "employeeId": 1393, "customEffectiveDate": "2023-01-03", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-283", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7739, "employeeId": 1394, "customEffectiveDate": "2023-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17175, "employeeId": 1394, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8204, "employeeId": 1395, "customEffectiveDate": "2023-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11880, "employeeId": 1395, "customEffectiveDate": "2023-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-286", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15902, "employeeId": 1395, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-286", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8195, "employeeId": 1397, "customEffectiveDate": "2023-02-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11870, "employeeId": 1397, "customEffectiveDate": "2023-02-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-287", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15891, "employeeId": 1397, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-287", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8154, "employeeId": 1398, "customEffectiveDate": "2023-01-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11883, "employeeId": 1398, "customEffectiveDate": "2023-01-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-285", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8188, "employeeId": 1399, "customEffectiveDate": "2023-02-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11865, "employeeId": 1399, "customEffectiveDate": "2023-02-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-300", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8169, "employeeId": 1400, "customEffectiveDate": "2023-01-16", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10373, "employeeId": 1400, "customEffectiveDate": "2023-06-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8173, "employeeId": 1401, "customEffectiveDate": "2023-01-16", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10348, "employeeId": 1401, "customEffectiveDate": "2023-06-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8184, "employeeId": 1402, "customEffectiveDate": "2023-01-17", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17170, "employeeId": 1402, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8191, "employeeId": 1403, "customEffectiveDate": "2023-01-23", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10128, "employeeId": 1403, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8290, "employeeId": 1404, "customEffectiveDate": "2023-02-13", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11868, "employeeId": 1404, "customEffectiveDate": "2023-02-13", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-288", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8240, "employeeId": 1405, "customEffectiveDate": "2023-01-30", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8328, "employeeId": 1406, "customEffectiveDate": "2023-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11864, "employeeId": 1406, "customEffectiveDate": "2023-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8294, "employeeId": 1407, "customEffectiveDate": "2023-02-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11869, "employeeId": 1407, "customEffectiveDate": "2023-02-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-289", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8310, "employeeId": 1408, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10596, "employeeId": 1408, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11729, "employeeId": 1408, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-297", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8299, "employeeId": 1409, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8300, "employeeId": 1410, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8301, "employeeId": 1411, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11354, "employeeId": 1411, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11730, "employeeId": 1411, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-298", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8304, "employeeId": 1412, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11355, "employeeId": 1412, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11731, "employeeId": 1412, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-299", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8385, "employeeId": 1413, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11353, "employeeId": 1413, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11728, "employeeId": 1413, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-296", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8306, "employeeId": 1414, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11350, "employeeId": 1414, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11725, "employeeId": 1414, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-293", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8307, "employeeId": 1415, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13715, "employeeId": 1415, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-373", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8309, "employeeId": 1416, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11352, "employeeId": 1416, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Change to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11727, "employeeId": 1416, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Change to department", "customPosition": "FO-295", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9125, "employeeId": 1417, "customEffectiveDate": "2023-05-02", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11817, "employeeId": 1417, "customEffectiveDate": "2023-05-02", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-213", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8350, "employeeId": 1418, "customEffectiveDate": "2023-03-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11861, "employeeId": 1418, "customEffectiveDate": "2023-03-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8313, "employeeId": 1419, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11349, "employeeId": 1419, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11723, "employeeId": 1419, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-292", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8316, "employeeId": 1420, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11351, "employeeId": 1420, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11726, "employeeId": 1420, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-294", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8319, "employeeId": 1421, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11345, "employeeId": 1421, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11718, "employeeId": 1421, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-290", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8322, "employeeId": 1422, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11347, "employeeId": 1422, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11721, "employeeId": 1422, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-291", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8346, "employeeId": 1424, "customEffectiveDate": "2023-03-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11862, "employeeId": 1424, "customEffectiveDate": "2023-03-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-302", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9065, "employeeId": 1425, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11837, "employeeId": 1425, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "PRD-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8341, "employeeId": 1426, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15953, "employeeId": 1426, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8343, "employeeId": 1427, "customEffectiveDate": "2023-06-16", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8366, "employeeId": 1428, "customEffectiveDate": "2023-01-30", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8367, "employeeId": 1429, "customEffectiveDate": "2023-02-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8391, "employeeId": 1430, "customEffectiveDate": "2023-03-20", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17172, "employeeId": 1430, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8373, "employeeId": 1431, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8374, "employeeId": 1432, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8375, "employeeId": 1433, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8376, "employeeId": 1434, "customEffectiveDate": "2023-02-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8377, "employeeId": 1435, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8378, "employeeId": 1436, "customEffectiveDate": "2022-09-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8379, "employeeId": 1437, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8380, "employeeId": 1438, "customEffectiveDate": "2023-02-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8381, "employeeId": 1439, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8382, "employeeId": 1440, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8383, "employeeId": 1441, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8384, "employeeId": 1442, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8418, "employeeId": 1443, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9120, "employeeId": 1444, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11826, "employeeId": 1444, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-305", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8420, "employeeId": 1445, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11854, "employeeId": 1445, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8422, "employeeId": 1446, "customEffectiveDate": "2023-03-27", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9179, "employeeId": 1448, "customEffectiveDate": "2023-04-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11825, "employeeId": 1448, "customEffectiveDate": "2023-04-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-307", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9168, "employeeId": 1449, "customEffectiveDate": "2023-04-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11829, "employeeId": 1449, "customEffectiveDate": "2023-04-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-304", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9172, "employeeId": 1451, "customEffectiveDate": "2023-04-17", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11823, "employeeId": 1451, "customEffectiveDate": "2023-04-17", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-306", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9193, "employeeId": 1452, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9188, "employeeId": 1453, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9185, "employeeId": 1454, "customEffectiveDate": "2023-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16085, "employeeId": 1454, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9186, "employeeId": 1455, "customEffectiveDate": "2023-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9190, "employeeId": 1456, "customEffectiveDate": "2023-04-24", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9192, "employeeId": 1457, "customEffectiveDate": "2023-05-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10447, "employeeId": 1457, "customEffectiveDate": "2023-08-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10597, "employeeId": 1457, "customEffectiveDate": "2023-09-20", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Added AuraRole", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11704, "employeeId": 1457, "customEffectiveDate": "2023-09-20", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Added AuraRole", "customPosition": "FO-308", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10239, "employeeId": 1458, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11761, "employeeId": 1458, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9230, "employeeId": 1459, "customEffectiveDate": "2023-05-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16084, "employeeId": 1459, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9980, "employeeId": 1460, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11798, "employeeId": 1460, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-312", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9251, "employeeId": 1461, "customEffectiveDate": "2023-06-05", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10053, "employeeId": 1462, "customEffectiveDate": "2023-07-17", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11759, "employeeId": 1462, "customEffectiveDate": "2023-07-17", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-317", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9247, "employeeId": 1463, "customEffectiveDate": "2023-05-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13724, "employeeId": 1463, "customEffectiveDate": "2023-05-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10015, "employeeId": 1464, "customEffectiveDate": "2023-08-21", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17185, "employeeId": 1464, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9250, "employeeId": 1465, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10003, "employeeId": 1466, "customEffectiveDate": "2023-05-29", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10005, "employeeId": 1467, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11793, "employeeId": 1467, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-310", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10008, "employeeId": 1468, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10009, "employeeId": 1469, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10010, "employeeId": 1470, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10047, "employeeId": 1471, "customEffectiveDate": "2023-06-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11766, "employeeId": 1471, "customEffectiveDate": "2023-06-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10011, "employeeId": 1472, "customEffectiveDate": "2023-06-07", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10018, "employeeId": 1473, "customEffectiveDate": "2023-06-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11792, "employeeId": 1473, "customEffectiveDate": "2023-06-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-309", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10028, "employeeId": 1474, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17299, "employeeId": 1474, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10078, "employeeId": 1475, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11795, "employeeId": 1475, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-311", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10034, "employeeId": 1476, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10036, "employeeId": 1477, "customEffectiveDate": "2023-09-04", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15984, "employeeId": 1477, "customEffectiveDate": "2024-03-05", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Intern to FTE", "customPosition": "ENG-226", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10038, "employeeId": 1478, "customEffectiveDate": "2023-09-04", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10080, "employeeId": 1479, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10050, "employeeId": 1480, "customEffectiveDate": "2023-07-03", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17169, "employeeId": 1480, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10057, "employeeId": 1481, "customEffectiveDate": "2023-05-19", "customDepartment#": "", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10058, "employeeId": 1482, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10059, "employeeId": 1483, "customEffectiveDate": "2023-04-06", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10060, "employeeId": 1484, "customEffectiveDate": "2023-03-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10061, "employeeId": 1485, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10062, "employeeId": 1486, "customEffectiveDate": "2023-03-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10065, "employeeId": 1487, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10066, "employeeId": 1488, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10067, "employeeId": 1489, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10068, "employeeId": 1490, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10069, "employeeId": 1491, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10070, "employeeId": 1492, "customEffectiveDate": "2020-10-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10071, "employeeId": 1493, "customEffectiveDate": "2022-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10072, "employeeId": 1494, "customEffectiveDate": "2022-02-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10073, "employeeId": 1495, "customEffectiveDate": "2022-09-28", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10076, "employeeId": 1496, "customEffectiveDate": "2023-05-26", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15895, "employeeId": 1496, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10171, "employeeId": 1497, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11767, "employeeId": 1497, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-314", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10146, "employeeId": 1498, "customEffectiveDate": "2023-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11784, "employeeId": 1498, "customEffectiveDate": "2023-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10084, "employeeId": 1499, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10085, "employeeId": 1500, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10086, "employeeId": 1501, "customEffectiveDate": "2023-05-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10087, "employeeId": 1502, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10157, "employeeId": 1503, "customEffectiveDate": "2023-06-19", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11783, "employeeId": 1503, "customEffectiveDate": "2023-06-19", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10149, "employeeId": 1504, "customEffectiveDate": "2023-07-10", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11760, "employeeId": 1504, "customEffectiveDate": "2023-07-10", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-316", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10151, "employeeId": 1505, "customEffectiveDate": "2023-04-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10173, "employeeId": 1506, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11765, "employeeId": 1506, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-313", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10168, "employeeId": 1507, "customEffectiveDate": "2023-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11762, "employeeId": 1507, "customEffectiveDate": "2023-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-315", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10152, "employeeId": 1508, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10154, "employeeId": 1510, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10155, "employeeId": 1511, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10156, "employeeId": 1512, "customEffectiveDate": "2023-06-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10160, "employeeId": 1513, "customEffectiveDate": "2023-06-07", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10521, "employeeId": 1514, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11694, "employeeId": 1514, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-336", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10278, "employeeId": 1515, "customEffectiveDate": "2023-07-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11758, "employeeId": 1515, "customEffectiveDate": "2023-07-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10265, "employeeId": 1516, "customEffectiveDate": "2023-06-27", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10273, "employeeId": 1518, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10235, "employeeId": 1520, "customEffectiveDate": "2023-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10339, "employeeId": 1521, "customEffectiveDate": "2023-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17180, "employeeId": 1521, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10364, "employeeId": 1522, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11749, "employeeId": 1522, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10277, "employeeId": 1523, "customEffectiveDate": "2023-07-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10333, "employeeId": 1524, "customEffectiveDate": "2023-07-31", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11755, "employeeId": 1524, "customEffectiveDate": "2023-07-31", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-320", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10336, "employeeId": 1525, "customEffectiveDate": "2023-07-31", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11756, "employeeId": 1525, "customEffectiveDate": "2023-07-31", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-321", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10305, "employeeId": 1526, "customEffectiveDate": "2023-07-24", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11757, "employeeId": 1526, "customEffectiveDate": "2023-07-24", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-318", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10320, "employeeId": 1527, "customEffectiveDate": "2023-07-31", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11754, "employeeId": 1527, "customEffectiveDate": "2023-07-31", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-319", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10326, "employeeId": 1528, "customEffectiveDate": "2023-08-28", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11734, "employeeId": 1528, "customEffectiveDate": "2023-08-28", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-328", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10323, "employeeId": 1529, "customEffectiveDate": "2023-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11753, "employeeId": 1529, "customEffectiveDate": "2023-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-322", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10327, "employeeId": 1530, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10328, "employeeId": 1531, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10329, "employeeId": 1532, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10330, "employeeId": 1533, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10494, "employeeId": 1534, "customEffectiveDate": "2023-08-28", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11736, "employeeId": 1534, "customEffectiveDate": "2023-08-28", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-330", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10492, "employeeId": 1535, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11732, "employeeId": 1535, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-327", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10460, "employeeId": 1536, "customEffectiveDate": "2023-08-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11739, "employeeId": 1536, "customEffectiveDate": "2023-08-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-326", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10363, "employeeId": 1538, "customEffectiveDate": "2023-08-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10386, "employeeId": 1539, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11746, "employeeId": 1539, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-323", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10395, "employeeId": 1540, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16019, "employeeId": 1540, "customEffectiveDate": "2024-02-05", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Intern to FTE", "customPosition": "ENG-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10397, "employeeId": 1541, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10437, "employeeId": 1542, "customEffectiveDate": "2023-08-14", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11747, "employeeId": 1542, "customEffectiveDate": "2023-08-14", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-324", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10435, "employeeId": 1543, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11748, "employeeId": 1543, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-325", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10434, "employeeId": 1544, "customEffectiveDate": "2023-08-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10453, "employeeId": 1545, "customEffectiveDate": "2023-09-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11716, "employeeId": 1545, "customEffectiveDate": "2023-09-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-332", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10488, "employeeId": 1546, "customEffectiveDate": "2023-08-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11735, "employeeId": 1546, "customEffectiveDate": "2023-08-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-329", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15900, "employeeId": 1546, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-329", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10468, "employeeId": 1547, "customEffectiveDate": "2023-08-29", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10486, "employeeId": 1548, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11737, "employeeId": 1548, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-331", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10498, "employeeId": 1549, "customEffectiveDate": "2023-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10502, "employeeId": 1550, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10527, "employeeId": 1551, "customEffectiveDate": "2023-09-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11708, "employeeId": 1551, "customEffectiveDate": "2023-09-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10524, "employeeId": 1552, "customEffectiveDate": "2023-09-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11700, "employeeId": 1552, "customEffectiveDate": "2023-09-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-334", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10531, "employeeId": 1553, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11695, "employeeId": 1553, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-337", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10509, "employeeId": 1554, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11101, "employeeId": 1555, "customEffectiveDate": "2023-10-09", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11692, "employeeId": 1555, "customEffectiveDate": "2023-10-09", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-338", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10529, "employeeId": 1556, "customEffectiveDate": "2023-09-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11706, "employeeId": 1556, "customEffectiveDate": "2023-09-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-333", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10554, "employeeId": 1557, "customEffectiveDate": "2023-11-13", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11670, "employeeId": 1557, "customEffectiveDate": "2023-11-13", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "PEO-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10562, "employeeId": 1558, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11683, "employeeId": 1558, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-215", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10564, "employeeId": 1559, "customEffectiveDate": "2023-11-15", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11667, "employeeId": 1559, "customEffectiveDate": "2023-11-15", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-218", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10580, "employeeId": 1560, "customEffectiveDate": "2023-09-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11701, "employeeId": 1560, "customEffectiveDate": "2023-09-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-335", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10583, "employeeId": 1561, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11677, "employeeId": 1561, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-345", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10589, "employeeId": 1562, "customEffectiveDate": "2023-10-09", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11691, "employeeId": 1562, "customEffectiveDate": "2023-10-09", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-214", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11021, "employeeId": 1563, "customEffectiveDate": "2024-01-02", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11027, "employeeId": 1564, "customEffectiveDate": "2023-10-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11032, "employeeId": 1565, "customEffectiveDate": "2023-11-01", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11675, "employeeId": 1565, "customEffectiveDate": "2023-11-01", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11033, "employeeId": 1566, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11687, "employeeId": 1566, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-341", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11047, "employeeId": 1567, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11686, "employeeId": 1567, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-340", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11044, "employeeId": 1568, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11688, "employeeId": 1568, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-342", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11039, "employeeId": 1569, "customEffectiveDate": "2023-10-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11684, "employeeId": 1569, "customEffectiveDate": "2023-10-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-339", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11051, "employeeId": 1570, "customEffectiveDate": "2023-09-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11056, "employeeId": 1571, "customEffectiveDate": "2023-10-02", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11098, "employeeId": 1572, "customEffectiveDate": "2021-07-14", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11099, "employeeId": 1573, "customEffectiveDate": "2021-07-14", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11100, "employeeId": 1574, "customEffectiveDate": "2023-06-08", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17181, "employeeId": 1574, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11105, "employeeId": 1575, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11689, "employeeId": 1575, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-343", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11112, "employeeId": 1576, "customEffectiveDate": "2023-10-30", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11678, "employeeId": 1576, "customEffectiveDate": "2023-10-30", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-216", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11159, "employeeId": 1577, "customEffectiveDate": "2023-10-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11680, "employeeId": 1577, "customEffectiveDate": "2023-10-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-344", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11139, "employeeId": 1578, "customEffectiveDate": "2023-11-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11674, "employeeId": 1578, "customEffectiveDate": "2023-11-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-347", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11336, "employeeId": 1579, "customEffectiveDate": "2024-01-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-362", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11150, "employeeId": 1580, "customEffectiveDate": "2023-10-30", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11679, "employeeId": 1580, "customEffectiveDate": "2023-10-30", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-217", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11157, "employeeId": 1581, "customEffectiveDate": "2023-10-23", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Sub-Contractor", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11168, "employeeId": 1582, "customEffectiveDate": "2024-02-01", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-225", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11197, "employeeId": 1583, "customEffectiveDate": "2023-10-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11330, "employeeId": 1584, "customEffectiveDate": "2023-11-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11651, "employeeId": 1584, "customEffectiveDate": "2023-11-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-354", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11323, "employeeId": 1585, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11652, "employeeId": 1585, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11214, "employeeId": 1586, "customEffectiveDate": "2023-10-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16086, "employeeId": 1586, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11216, "employeeId": 1587, "customEffectiveDate": "2023-12-04", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11643, "employeeId": 1587, "customEffectiveDate": "2023-12-04", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-219", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11220, "employeeId": 1588, "customEffectiveDate": "2023-11-06", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11672, "employeeId": 1588, "customEffectiveDate": "2023-11-06", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-346", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11252, "employeeId": 1589, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11647, "employeeId": 1589, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-357", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11263, "employeeId": 1590, "customEffectiveDate": "2023-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11320, "employeeId": 1591, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11669, "employeeId": 1591, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-348", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11316, "employeeId": 1592, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11671, "employeeId": 1592, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-349", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11265, "employeeId": 1593, "customEffectiveDate": "2023-10-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11384, "employeeId": 1595, "customEffectiveDate": "2023-11-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11655, "employeeId": 1595, "customEffectiveDate": "2023-11-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-350", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11357, "employeeId": 1597, "customEffectiveDate": "2024-01-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "FO-369", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11366, "employeeId": 1598, "customEffectiveDate": "2023-11-20", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11367, "employeeId": 1599, "customEffectiveDate": "2023-11-24", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11368, "employeeId": 1600, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11648, "employeeId": 1600, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11371, "employeeId": 1601, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-224", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11388, "employeeId": 1602, "customEffectiveDate": "2023-11-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11656, "employeeId": 1602, "customEffectiveDate": "2023-11-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-351", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11378, "employeeId": 1603, "customEffectiveDate": "2023-11-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11376, "employeeId": 1604, "customEffectiveDate": "2023-11-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11381, "employeeId": 1605, "customEffectiveDate": "2024-01-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-371", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11392, "employeeId": 1606, "customEffectiveDate": "2023-11-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11650, "employeeId": 1606, "customEffectiveDate": "2023-11-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-353", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11397, "employeeId": 1607, "customEffectiveDate": "2024-01-08", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11400, "employeeId": 1608, "customEffectiveDate": "2024-01-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-366", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13707, "employeeId": 1608, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11406, "employeeId": 1609, "customEffectiveDate": "2024-01-03", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11410, "employeeId": 1610, "customEffectiveDate": "2023-11-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11649, "employeeId": 1610, "customEffectiveDate": "2023-11-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-352", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11415, "employeeId": 1611, "customEffectiveDate": "2023-11-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17173, "employeeId": 1611, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11421, "employeeId": 1612, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11645, "employeeId": 1612, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-355", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11435, "employeeId": 1613, "customEffectiveDate": "2024-01-02", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-221", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11440, "employeeId": 1614, "customEffectiveDate": "2023-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11639, "employeeId": 1614, "customEffectiveDate": "2023-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-220", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11444, "employeeId": 1615, "customEffectiveDate": "2023-12-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11646, "employeeId": 1615, "customEffectiveDate": "2023-12-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-356", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11448, "employeeId": 1616, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11517, "employeeId": 1617, "customEffectiveDate": "2023-12-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11641, "employeeId": 1617, "customEffectiveDate": "2023-12-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-358", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15889, "employeeId": 1617, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-358", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11450, "employeeId": 1618, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11644, "employeeId": 1618, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "PEO-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11454, "employeeId": 1619, "customEffectiveDate": "2023-11-29", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11457, "employeeId": 1620, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11460, "employeeId": 1621, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11510, "employeeId": 1622, "customEffectiveDate": "2024-03-07", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-227", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11565, "employeeId": 1623, "customEffectiveDate": "2023-12-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11638, "employeeId": 1623, "customEffectiveDate": "2023-12-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-360", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11522, "employeeId": 1624, "customEffectiveDate": "2023-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11642, "employeeId": 1624, "customEffectiveDate": "2023-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11559, "employeeId": 1625, "customEffectiveDate": "2023-12-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11637, "employeeId": 1625, "customEffectiveDate": "2023-12-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11556, "employeeId": 1626, "customEffectiveDate": "2024-01-02", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-365", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11561, "employeeId": 1627, "customEffectiveDate": "2024-01-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11551, "employeeId": 1628, "customEffectiveDate": "2024-01-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-364", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11636, "employeeId": 1629, "customEffectiveDate": "2023-12-18", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11583, "employeeId": 1630, "customEffectiveDate": "2024-01-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11590, "employeeId": 1631, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11593, "employeeId": 1632, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11596, "employeeId": 1633, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11599, "employeeId": 1634, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11602, "employeeId": 1635, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11605, "employeeId": 1636, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11613, "employeeId": 1637, "customEffectiveDate": "2023-12-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11635, "employeeId": 1637, "customEffectiveDate": "2023-12-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12342, "employeeId": 1638, "customEffectiveDate": "2024-01-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-368", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13706, "employeeId": 1638, "customEffectiveDate": "2023-12-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11619, "employeeId": 1639, "customEffectiveDate": "2024-01-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-370", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11627, "employeeId": 1640, "customEffectiveDate": "2024-01-02", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-363", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11631, "employeeId": 1641, "customEffectiveDate": "2024-01-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11634, "employeeId": 1642, "customEffectiveDate": "2023-12-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12341, "employeeId": 1643, "customEffectiveDate": "2024-01-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-367", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13708, "employeeId": 1643, "customEffectiveDate": "2023-12-14", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12524, "employeeId": 1644, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15988, "employeeId": 1645, "customEffectiveDate": "2024-01-22", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14703, "employeeId": 1646, "customEffectiveDate": "2024-01-29", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15998, "employeeId": 1647, "customEffectiveDate": "2024-02-12", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-239", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15928, "employeeId": 1648, "customEffectiveDate": "2024-01-16", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-377", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15932, "employeeId": 1649, "customEffectiveDate": "2024-01-22", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15935, "employeeId": 1650, "customEffectiveDate": "2024-01-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-383", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15945, "employeeId": 1651, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15949, "employeeId": 1652, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16003, "employeeId": 1653, "customEffectiveDate": "2024-03-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-382", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16031, "employeeId": 1654, "customEffectiveDate": "2024-01-29", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-389", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16035, "employeeId": 1655, "customEffectiveDate": "2024-02-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-380", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16039, "employeeId": 1656, "customEffectiveDate": "2024-02-26", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16061, "employeeId": 1657, "customEffectiveDate": "2024-02-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16053, "employeeId": 1658, "customEffectiveDate": "2024-02-19", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-234", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16063, "employeeId": 1659, "customEffectiveDate": "2024-02-12", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16066, "employeeId": 1660, "customEffectiveDate": "2024-02-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16070, "employeeId": 1661, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-372", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16078, "employeeId": 1662, "customEffectiveDate": "2024-04-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-238", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16076, "employeeId": 1663, "customEffectiveDate": "2024-01-22", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16894, "employeeId": 1664, "customEffectiveDate": "2024-02-19", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-409", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16859, "employeeId": 1665, "customEffectiveDate": "2024-03-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-395", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16848, "employeeId": 1666, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16852, "employeeId": 1667, "customEffectiveDate": "2024-03-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16856, "employeeId": 1668, "customEffectiveDate": "2024-03-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16878, "employeeId": 1669, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16882, "employeeId": 1670, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16886, "employeeId": 1671, "customEffectiveDate": "2024-03-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16905, "employeeId": 1672, "customEffectiveDate": "2024-03-05", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16909, "employeeId": 1673, "customEffectiveDate": "2024-03-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17159, "employeeId": 1673, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16913, "employeeId": 1674, "customEffectiveDate": "2024-03-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-397", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16919, "employeeId": 1675, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16943, "employeeId": 1676, "customEffectiveDate": "2024-05-06", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16924, "employeeId": 1677, "customEffectiveDate": "2024-04-02", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-236", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16934, "employeeId": 1678, "customEffectiveDate": "2024-02-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": "TEST USER", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16948, "employeeId": 1680, "customEffectiveDate": "2024-04-12", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-233", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16975, "employeeId": 1681, "customEffectiveDate": "2024-04-08", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16955, "employeeId": 1682, "customEffectiveDate": "2024-02-26", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-384", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16960, "employeeId": 1683, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New HIre", "customPosition": "FO-381", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16966, "employeeId": 1684, "customEffectiveDate": "2024-02-26", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-235", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17138, "employeeId": 1685, "customEffectiveDate": "2024-03-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-375", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16980, "employeeId": 1686, "customEffectiveDate": "2024-04-08", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-231", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16985, "employeeId": 1687, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-244", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17150, "employeeId": 1689, "customEffectiveDate": "2024-04-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-379", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17197, "employeeId": 1690, "customEffectiveDate": "2024-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17199, "employeeId": 1691, "customEffectiveDate": "2024-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17205, "employeeId": 1692, "customEffectiveDate": "2024-03-11", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17215, "employeeId": 1693, "customEffectiveDate": "2024-02-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17217, "employeeId": 1694, "customEffectiveDate": "2024-05-28", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-248", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17222, "employeeId": 1695, "customEffectiveDate": "2024-02-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17224, "employeeId": 1696, "customEffectiveDate": "2024-04-08", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-229", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17235, "employeeId": 1697, "customEffectiveDate": "2024-03-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17269, "employeeId": 1698, "customEffectiveDate": "2024-03-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17275, "employeeId": 1699, "customEffectiveDate": "2024-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17281, "employeeId": 1700, "customEffectiveDate": "2024-03-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17288, "employeeId": 1701, "customEffectiveDate": "2024-04-22", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-232", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17295, "employeeId": 1702, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17303, "employeeId": 1703, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17307, "employeeId": 1704, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17311, "employeeId": 1705, "customEffectiveDate": "2024-05-20", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-247", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17316, "employeeId": 1706, "customEffectiveDate": "2024-05-13", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-246", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17324, "employeeId": 1707, "customEffectiveDate": "2024-03-25", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-396", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17328, "employeeId": 1708, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-385", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17334, "employeeId": 1709, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-393", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17347, "employeeId": 1710, "customEffectiveDate": "2024-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17352, "employeeId": 1711, "customEffectiveDate": "2024-04-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-243", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17359, "employeeId": 1712, "customEffectiveDate": "2024-06-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-253", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17384, "employeeId": 1713, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17386, "employeeId": 1714, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17388, "employeeId": 1715, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17390, "employeeId": 1716, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17392, "employeeId": 1717, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17394, "employeeId": 1718, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17396, "employeeId": 1719, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17398, "employeeId": 1720, "customEffectiveDate": "2024-06-17", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New HIre", "customPosition": "ENG-252", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17403, "employeeId": 1721, "customEffectiveDate": "2024-04-02", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-322", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17411, "employeeId": 1722, "customEffectiveDate": "2024-05-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17420, "employeeId": 1723, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588419}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7641, "employeeId": 114, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "FI.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9341, "employeeId": 114, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7193, "employeeId": 116, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9368, "employeeId": 116, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6860, "employeeId": 117, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9908, "employeeId": 117, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7067, "employeeId": 119, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7366, "employeeId": 120, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7448, "employeeId": 121, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9342, "employeeId": 121, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6947, "employeeId": 124, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACCO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9909, "employeeId": 124, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACCO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12349, "employeeId": 124, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACCO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7082, "employeeId": 126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9372, "employeeId": 126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7431, "employeeId": 127, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9910, "employeeId": 127, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12350, "employeeId": 127, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7058, "employeeId": 130, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9824, "employeeId": 130, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7069, "employeeId": 134, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.ISBS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7115, "employeeId": 135, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9825, "employeeId": 135, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10213, "employeeId": 135, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-06-27", "customCorporateTitle": "DIRECTOR", "customComments1": "Corrected to reflect appropriate level + corporate title.", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12351, "employeeId": 135, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7440, "employeeId": 136, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9373, "employeeId": 136, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7217, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8512, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9374, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7460, "employeeId": 142, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7281, "employeeId": 143, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8525, "employeeId": 143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9375, "employeeId": 143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6934, "employeeId": 145, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7581, "employeeId": 146, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9376, "employeeId": 146, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6954, "employeeId": 147, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9377, "employeeId": 147, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7132, "employeeId": 149, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.DIDI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7335, "employeeId": 150, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9911, "employeeId": 150, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7637, "employeeId": 152, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSGF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9378, "employeeId": 152, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSGF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7477, "employeeId": 153, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8470, "employeeId": 153, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9379, "employeeId": 153, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6899, "employeeId": 155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7508, "employeeId": 157, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8490, "employeeId": 157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": "Confirm level", "customBenchmarkCode": "SA.ISCR.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9255, "employeeId": 157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7307, "employeeId": 159, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSSI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9912, "employeeId": 159, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSSI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17424, "employeeId": 159, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-09", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment requested by HRBP: Donna Leslie", "customBenchmarkCode": "PS.PSSI.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6946, "employeeId": 160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9380, "employeeId": 160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7070, "employeeId": 163, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.DIWU.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6929, "employeeId": 164, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8519, "employeeId": 164, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9381, "employeeId": 164, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6870, "employeeId": 169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9807, "employeeId": 169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6996, "employeeId": 170, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9970, "employeeId": 170, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7352, "employeeId": 171, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Updated job code to Radford's Head of Business Services. 2023-04-12. By Sadie Percell", "customBenchmarkCode": "PS.PSBS.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9298, "employeeId": 171, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSBS.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7443, "employeeId": 172, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9343, "employeeId": 172, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7125, "employeeId": 173, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7286, "employeeId": 174, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7501, "employeeId": 176, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9344, "employeeId": 176, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7577, "employeeId": 177, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9913, "employeeId": 177, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11285, "employeeId": 177, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Promoted", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12352, "employeeId": 177, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7459, "employeeId": 179, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9827, "employeeId": 179, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7468, "employeeId": 180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9914, "employeeId": 180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12353, "employeeId": 180, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6858, "employeeId": 182, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7248, "employeeId": 184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9382, "employeeId": 184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12354, "employeeId": 184, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17062, "employeeId": 184, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7436, "employeeId": 185, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9383, "employeeId": 185, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7184, "employeeId": 187, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9384, "employeeId": 187, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7072, "employeeId": 189, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9915, "employeeId": 189, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12355, "employeeId": 189, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6861, "employeeId": 190, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9916, "employeeId": 190, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6955, "employeeId": 191, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9901, "employeeId": 191, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7455, "employeeId": 192, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8522, "employeeId": 192, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9385, "employeeId": 192, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7338, "employeeId": 194, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9833, "employeeId": 194, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7272, "employeeId": 195, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9386, "employeeId": 195, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6859, "employeeId": 197, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMMO.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7296, "employeeId": 198, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9387, "employeeId": 198, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12356, "employeeId": 198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17072, "employeeId": 198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6869, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9889, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10312, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "PRINCIPAL", "customComments1": "Transfer", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7467, "employeeId": 205, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7554, "employeeId": 206, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8561, "employeeId": 206, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9345, "employeeId": 206, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7024, "employeeId": 207, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6877, "employeeId": 208, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "FI.GLFI.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9369, "employeeId": 208, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.GLFI.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7117, "employeeId": 210, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9840, "employeeId": 210, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7573, "employeeId": 212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9388, "employeeId": 212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12357, "employeeId": 212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7318, "employeeId": 213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9820, "employeeId": 213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6957, "employeeId": 214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9389, "employeeId": 214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6867, "employeeId": 217, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9390, "employeeId": 217, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7085, "employeeId": 219, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9391, "employeeId": 219, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12358, "employeeId": 219, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17042, "employeeId": 219, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6977, "employeeId": 221, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9966, "employeeId": 221, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12359, "employeeId": 221, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7562, "employeeId": 227, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9917, "employeeId": 227, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7302, "employeeId": 228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9392, "employeeId": 228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7406, "employeeId": 229, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9393, "employeeId": 229, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7552, "employeeId": 232, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9850, "employeeId": 232, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6971, "employeeId": 233, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9394, "employeeId": 233, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7060, "employeeId": 234, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9395, "employeeId": 234, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7263, "employeeId": 235, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9396, "employeeId": 235, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7567, "employeeId": 240, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9397, "employeeId": 240, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7356, "employeeId": 242, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMDG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9918, "employeeId": 242, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10264, "employeeId": 242, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6873, "employeeId": 243, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9837, "employeeId": 243, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12360, "employeeId": 243, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17016, "employeeId": 243, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7305, "employeeId": 250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7485, "employeeId": 252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9398, "employeeId": 252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7599, "employeeId": 253, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9399, "employeeId": 253, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6862, "employeeId": 255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9400, "employeeId": 255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7596, "employeeId": 257, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7065, "employeeId": 260, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9401, "employeeId": 260, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7607, "employeeId": 261, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.GLSF.E3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9364, "employeeId": 261, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.GLSF.E3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7166, "employeeId": 262, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9402, "employeeId": 262, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7043, "employeeId": 263, "customCorporateJobLevel": "L12", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "CEO", "customComments1": null, "customBenchmarkCode": "LE.GLEC.E6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9346, "employeeId": 263, "customCorporateJobLevel": "L12", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "CEO", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LE.GLEC.E6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7196, "employeeId": 264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7059, "employeeId": 265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9403, "employeeId": 265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7584, "employeeId": 267, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.OPNC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6880, "employeeId": 268, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9404, "employeeId": 268, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7614, "employeeId": 269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9405, "employeeId": 269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7587, "employeeId": 273, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "EN.DVDD.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9347, "employeeId": 273, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.DVDD.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7050, "employeeId": 278, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9406, "employeeId": 278, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7135, "employeeId": 280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9407, "employeeId": 280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7324, "employeeId": 281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9408, "employeeId": 281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7494, "employeeId": 286, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7586, "employeeId": 287, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9864, "employeeId": 287, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12363, "employeeId": 287, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17124, "employeeId": 287, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7227, "employeeId": 289, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9348, "employeeId": 289, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7580, "employeeId": 290, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7476, "employeeId": 291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9409, "employeeId": 291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10475, "employeeId": 291, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7096, "employeeId": 292, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9410, "employeeId": 292, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7012, "employeeId": 293, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9879, "employeeId": 293, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7265, "employeeId": 294, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9411, "employeeId": 294, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6894, "employeeId": 295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8472, "employeeId": 295, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9919, "employeeId": 295, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7011, "employeeId": 296, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8531, "employeeId": 296, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9412, "employeeId": 296, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7368, "employeeId": 297, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8430, "employeeId": 297, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9413, "employeeId": 297, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7612, "employeeId": 298, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9414, "employeeId": 298, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7402, "employeeId": 299, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9920, "employeeId": 299, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7192, "employeeId": 300, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9415, "employeeId": 300, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7178, "employeeId": 301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9416, "employeeId": 301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7634, "employeeId": 302, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9417, "employeeId": 302, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6932, "employeeId": 304, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8431, "employeeId": 304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9418, "employeeId": 304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7409, "employeeId": 307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9419, "employeeId": 307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7336, "employeeId": 309, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7427, "employeeId": 310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9420, "employeeId": 310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7556, "employeeId": 311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9421, "employeeId": 311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7275, "employeeId": 312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9921, "employeeId": 312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7375, "employeeId": 314, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9422, "employeeId": 314, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7521, "employeeId": 315, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9423, "employeeId": 315, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12364, "employeeId": 315, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17107, "employeeId": 315, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6856, "employeeId": 316, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9424, "employeeId": 316, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7418, "employeeId": 317, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8444, "employeeId": 317, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9425, "employeeId": 317, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7377, "employeeId": 318, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "FI.ACMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9922, "employeeId": 318, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11365, "employeeId": 318, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: New title, level and benchmark code. Approved by Kelly Zawalski.", "customBenchmarkCode": "FI.ACMF.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9315, "employeeId": 319, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2019-02-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17204, "employeeId": 319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2021-08-09", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Became a People Manager", "customBenchmarkCode": "CB.ADAA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7104, "employeeId": 320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9426, "employeeId": 320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12365, "employeeId": 320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17045, "employeeId": 320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7223, "employeeId": 321, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9427, "employeeId": 321, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7480, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8489, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9923, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7199, "employeeId": 324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9428, "employeeId": 324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7412, "employeeId": 326, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9429, "employeeId": 326, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7218, "employeeId": 327, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9430, "employeeId": 327, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7376, "employeeId": 328, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8448, "employeeId": 328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9431, "employeeId": 328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11261, "employeeId": 328, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made by Nicole Fridvall after request from People Strategy Partner Lotta Almryd. Role levelled higher than other directors.", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6993, "employeeId": 329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8524, "employeeId": 329, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9432, "employeeId": 329, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7122, "employeeId": 330, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7313, "employeeId": 331, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9821, "employeeId": 331, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7383, "employeeId": 332, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9855, "employeeId": 332, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7149, "employeeId": 335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8467, "employeeId": 335, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9433, "employeeId": 335, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7504, "employeeId": 336, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8494, "employeeId": 336, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9434, "employeeId": 336, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7526, "employeeId": 337, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9435, "employeeId": 337, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7322, "employeeId": 339, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9436, "employeeId": 339, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7351, "employeeId": 340, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8521, "employeeId": 340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9437, "employeeId": 340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7014, "employeeId": 341, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9858, "employeeId": 341, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12367, "employeeId": 341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17033, "employeeId": 341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7108, "employeeId": 342, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SDSD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6912, "employeeId": 343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SP.BOBC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9365, "employeeId": 343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7066, "employeeId": 347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9438, "employeeId": 347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10457, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Promotion. Added by Nicole Fridvall", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12368, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17041, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6960, "employeeId": 348, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7594, "employeeId": 351, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9439, "employeeId": 351, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7645, "employeeId": 352, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8562, "employeeId": 352, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9349, "employeeId": 352, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7226, "employeeId": 353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9440, "employeeId": 353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7514, "employeeId": 354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9441, "employeeId": 354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7208, "employeeId": 355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9847, "employeeId": 355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11260, "employeeId": 355, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made by Nicole Fridvall after request from People Strategy Partner Lotta Almryd. Role levelled higher than other directors.", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7610, "employeeId": 356, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SP.BDIN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6848, "employeeId": 357, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8473, "employeeId": 357, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9924, "employeeId": 357, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7615, "employeeId": 358, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9442, "employeeId": 358, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6875, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9443, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11362, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Added to management path, new Corporate title and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SP.BOBI.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12371, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7288, "employeeId": 361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9444, "employeeId": 361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7388, "employeeId": 362, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9445, "employeeId": 362, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7454, "employeeId": 363, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8438, "employeeId": 363, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9446, "employeeId": 363, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6847, "employeeId": 364, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7194, "employeeId": 365, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9447, "employeeId": 365, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7407, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8459, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9448, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10484, "employeeId": 366, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7279, "employeeId": 368, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9449, "employeeId": 368, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7538, "employeeId": 369, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9450, "employeeId": 369, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12372, "employeeId": 369, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17112, "employeeId": 369, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7173, "employeeId": 370, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8488, "employeeId": 370, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9451, "employeeId": 370, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6952, "employeeId": 371, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7185, "employeeId": 372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9452, "employeeId": 372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7511, "employeeId": 373, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9868, "employeeId": 373, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6871, "employeeId": 374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9453, "employeeId": 374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7363, "employeeId": 375, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9925, "employeeId": 375, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7466, "employeeId": 376, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9454, "employeeId": 376, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6904, "employeeId": 380, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9455, "employeeId": 380, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7032, "employeeId": 381, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9456, "employeeId": 381, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7235, "employeeId": 382, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8493, "employeeId": 382, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9457, "employeeId": 382, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7164, "employeeId": 383, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9458, "employeeId": 383, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6911, "employeeId": 384, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9926, "employeeId": 384, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7041, "employeeId": 385, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9459, "employeeId": 385, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7246, "employeeId": 386, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9460, "employeeId": 386, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7473, "employeeId": 388, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9461, "employeeId": 388, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7228, "employeeId": 389, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9462, "employeeId": 389, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6995, "employeeId": 391, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8481, "employeeId": 391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9463, "employeeId": 391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6864, "employeeId": 392, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9464, "employeeId": 392, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6939, "employeeId": 393, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8474, "employeeId": 393, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASPS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9465, "employeeId": 393, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12373, "employeeId": 393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6920, "employeeId": 395, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9466, "employeeId": 395, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7061, "employeeId": 396, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9467, "employeeId": 396, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7174, "employeeId": 398, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9468, "employeeId": 398, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7438, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9927, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12374, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17093, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7539, "employeeId": 400, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9890, "employeeId": 400, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7405, "employeeId": 401, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8559, "employeeId": 401, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "HR.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9469, "employeeId": 401, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7472, "employeeId": 402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9883, "employeeId": 402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6906, "employeeId": 403, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9470, "employeeId": 403, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7479, "employeeId": 405, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9471, "employeeId": 405, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12375, "employeeId": 405, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17101, "employeeId": 405, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6978, "employeeId": 406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9472, "employeeId": 406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7146, "employeeId": 408, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9473, "employeeId": 408, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7293, "employeeId": 409, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9474, "employeeId": 409, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10358, "employeeId": 409, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7369, "employeeId": 410, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9475, "employeeId": 410, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7158, "employeeId": 411, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9476, "employeeId": 411, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8453, "employeeId": 412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9477, "employeeId": 412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10474, "employeeId": 412, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7576, "employeeId": 413, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9478, "employeeId": 413, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7215, "employeeId": 414, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7550, "employeeId": 416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9479, "employeeId": 416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7091, "employeeId": 418, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9928, "employeeId": 418, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7210, "employeeId": 421, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9839, "employeeId": 421, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7020, "employeeId": 499, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9480, "employeeId": 499, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6854, "employeeId": 533, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8456, "employeeId": 533, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9481, "employeeId": 533, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7530, "employeeId": 546, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9482, "employeeId": 546, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7101, "employeeId": 569, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9483, "employeeId": 569, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7326, "employeeId": 570, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9484, "employeeId": 570, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7005, "employeeId": 572, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9485, "employeeId": 572, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7495, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9929, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12376, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17102, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7292, "employeeId": 574, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9486, "employeeId": 574, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7204, "employeeId": 575, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8455, "employeeId": 575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9487, "employeeId": 575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7623, "employeeId": 576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9841, "employeeId": 576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7362, "employeeId": 578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9904, "employeeId": 578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6936, "employeeId": 580, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.CRHR.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9370, "employeeId": 580, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRHR.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7087, "employeeId": 583, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DMDE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9488, "employeeId": 583, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DMDE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7139, "employeeId": 587, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8523, "employeeId": 587, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9860, "employeeId": 587, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7304, "employeeId": 588, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7575, "employeeId": 590, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9489, "employeeId": 590, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12377, "employeeId": 590, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17120, "employeeId": 590, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6986, "employeeId": 592, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9896, "employeeId": 592, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6887, "employeeId": 593, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6989, "employeeId": 595, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.APAD.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9367, "employeeId": 595, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAD.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7299, "employeeId": 599, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9490, "employeeId": 599, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7237, "employeeId": 600, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7257, "employeeId": 602, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9491, "employeeId": 602, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7403, "employeeId": 603, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8504, "employeeId": 603, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9492, "employeeId": 603, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7423, "employeeId": 604, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9493, "employeeId": 604, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7449, "employeeId": 605, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9494, "employeeId": 605, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7051, "employeeId": 606, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9495, "employeeId": 606, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7268, "employeeId": 607, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9496, "employeeId": 607, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12378, "employeeId": 607, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17068, "employeeId": 607, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7489, "employeeId": 608, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9930, "employeeId": 608, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7542, "employeeId": 610, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9497, "employeeId": 610, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6865, "employeeId": 611, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8446, "employeeId": 611, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9498, "employeeId": 611, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7616, "employeeId": 613, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7557, "employeeId": 615, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8482, "employeeId": 615, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9499, "employeeId": 615, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7372, "employeeId": 616, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8483, "employeeId": 616, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9500, "employeeId": 616, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7319, "employeeId": 618, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9501, "employeeId": 618, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7205, "employeeId": 619, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8503, "employeeId": 619, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9974, "employeeId": 619, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6895, "employeeId": 620, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9502, "employeeId": 620, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10262, "employeeId": 620, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7003, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8497, "employeeId": 622, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9887, "employeeId": 622, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12379, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17030, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7597, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8514, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": "Confirm level", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9256, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12380, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17126, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7413, "employeeId": 626, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9931, "employeeId": 626, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7635, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9973, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12381, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17135, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7138, "employeeId": 628, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9503, "employeeId": 628, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7509, "employeeId": 629, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8507, "employeeId": 629, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Confirm new level post promotion with Wen", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9258, "employeeId": 629, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7216, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9504, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12361, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17059, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6888, "employeeId": 633, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8484, "employeeId": 633, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9505, "employeeId": 633, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7084, "employeeId": 634, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7154, "employeeId": 635, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9506, "employeeId": 635, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7301, "employeeId": 636, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8518, "employeeId": 636, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9932, "employeeId": 636, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7039, "employeeId": 637, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8485, "employeeId": 637, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9933, "employeeId": 637, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7278, "employeeId": 638, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9826, "employeeId": 638, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12384, "employeeId": 638, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17070, "employeeId": 638, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6846, "employeeId": 639, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8471, "employeeId": 639, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9907, "employeeId": 639, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6868, "employeeId": 643, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7532, "employeeId": 644, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9507, "employeeId": 644, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7144, "employeeId": 645, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9508, "employeeId": 645, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7000, "employeeId": 646, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9509, "employeeId": 646, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7143, "employeeId": 647, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9802, "employeeId": 647, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7027, "employeeId": 648, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8445, "employeeId": 648, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9510, "employeeId": 648, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7613, "employeeId": 649, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9511, "employeeId": 649, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7282, "employeeId": 650, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9512, "employeeId": 650, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6903, "employeeId": 651, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7134, "employeeId": 652, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7354, "employeeId": 653, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9366, "employeeId": 653, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7243, "employeeId": 656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9513, "employeeId": 656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7505, "employeeId": 658, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9812, "employeeId": 658, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10354, "employeeId": 658, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7148, "employeeId": 659, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.p3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8429, "employeeId": 659, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9514, "employeeId": 659, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7018, "employeeId": 662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9515, "employeeId": 662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7317, "employeeId": 663, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9934, "employeeId": 663, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12385, "employeeId": 663, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7092, "employeeId": 664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-04-04", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Reviewed by Kent Corson and\nadjusted level made by Sadie Percell, April 4 2023.", "customBenchmarkCode": "SA.OPSA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9297, "employeeId": 664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12386, "employeeId": 664, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7189, "employeeId": 667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9893, "employeeId": 667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7201, "employeeId": 668, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9813, "employeeId": 668, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7260, "employeeId": 669, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9299, "employeeId": 669, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7289, "employeeId": 670, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6983, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9935, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17214, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-05-05", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7543, "employeeId": 672, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9516, "employeeId": 672, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7458, "employeeId": 674, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9517, "employeeId": 674, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7385, "employeeId": 676, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7605, "employeeId": 677, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9518, "employeeId": 677, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6892, "employeeId": 678, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9805, "employeeId": 678, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7209, "employeeId": 679, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9519, "employeeId": 679, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7264, "employeeId": 684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9520, "employeeId": 684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7541, "employeeId": 685, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9976, "employeeId": 685, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7256, "employeeId": 687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9869, "employeeId": 687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7186, "employeeId": 688, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8478, "employeeId": 688, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9873, "employeeId": 688, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6997, "employeeId": 691, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CMCM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9521, "employeeId": 691, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CMCM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10255, "employeeId": 691, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.CMCM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6931, "employeeId": 694, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9300, "employeeId": 694, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7025, "employeeId": 695, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9522, "employeeId": 695, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7211, "employeeId": 696, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7035, "employeeId": 698, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8538, "employeeId": 698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9523, "employeeId": 698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12387, "employeeId": 698, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17038, "employeeId": 698, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7004, "employeeId": 699, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9851, "employeeId": 699, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7044, "employeeId": 700, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9524, "employeeId": 700, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6876, "employeeId": 702, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7094, "employeeId": 703, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9525, "employeeId": 703, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7546, "employeeId": 704, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7040, "employeeId": 706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9526, "employeeId": 706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10269, "employeeId": 706, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMC.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7620, "employeeId": 707, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8433, "employeeId": 707, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9527, "employeeId": 707, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7183, "employeeId": 708, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7034, "employeeId": 710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9528, "employeeId": 710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7017, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9529, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10271, "employeeId": 711, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIWP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12389, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17035, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6927, "employeeId": 712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9530, "employeeId": 712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6919, "employeeId": 713, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9531, "employeeId": 713, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7262, "employeeId": 714, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9902, "employeeId": 714, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6950, "employeeId": 715, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSCW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7083, "employeeId": 716, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9848, "employeeId": 716, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7627, "employeeId": 718, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9532, "employeeId": 718, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11364, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: New Corporate title, level and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SP.BOBI.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12390, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17131, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7238, "employeeId": 719, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9936, "employeeId": 719, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7481, "employeeId": 722, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7591, "employeeId": 723, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "TE.INNS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8565, "employeeId": 723, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9797, "employeeId": 723, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7528, "employeeId": 725, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9533, "employeeId": 725, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6914, "employeeId": 726, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9534, "employeeId": 726, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7046, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8510, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9891, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7349, "employeeId": 728, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8447, "employeeId": 728, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9535, "employeeId": 728, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7545, "employeeId": 729, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9536, "employeeId": 729, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7500, "employeeId": 730, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7640, "employeeId": 734, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9537, "employeeId": 734, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7160, "employeeId": 735, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8457, "employeeId": 735, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9538, "employeeId": 735, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7357, "employeeId": 736, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "TE.DADS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9539, "employeeId": 736, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7583, "employeeId": 738, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9540, "employeeId": 738, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6921, "employeeId": 739, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8564, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9541, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10360, "employeeId": 739, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15997, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Re-hired", "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7029, "employeeId": 740, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9542, "employeeId": 740, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7220, "employeeId": 741, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9795, "employeeId": 741, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7632, "employeeId": 744, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8520, "employeeId": 744, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9543, "employeeId": 744, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7159, "employeeId": 745, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6874, "employeeId": 747, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9544, "employeeId": 747, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6913, "employeeId": 748, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8460, "employeeId": 748, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16013, "employeeId": 748, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "SPECIALIST", "customComments1": "Re-hired", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7578, "employeeId": 751, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9828, "employeeId": 751, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7334, "employeeId": 752, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9545, "employeeId": 752, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7200, "employeeId": 753, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9937, "employeeId": 753, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7001, "employeeId": 754, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9546, "employeeId": 754, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6902, "employeeId": 755, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8500, "employeeId": 755, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9900, "employeeId": 755, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6866, "employeeId": 757, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9547, "employeeId": 757, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7602, "employeeId": 758, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9548, "employeeId": 758, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7076, "employeeId": 759, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7222, "employeeId": 760, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9842, "employeeId": 760, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7247, "employeeId": 762, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.APMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9363, "employeeId": 762, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7081, "employeeId": 763, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6984, "employeeId": 766, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8486, "employeeId": 766, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9549, "employeeId": 766, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7533, "employeeId": 767, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7450, "employeeId": 768, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9870, "employeeId": 768, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7609, "employeeId": 769, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9550, "employeeId": 769, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7320, "employeeId": 770, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7628, "employeeId": 771, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9903, "employeeId": 771, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12391, "employeeId": 771, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17132, "employeeId": 771, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7291, "employeeId": 772, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9551, "employeeId": 772, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7224, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "TEAM LEAD", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8535, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "TEAM LEAD", "customComments1": "Confirm level", "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9257, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "TEAM LEAD", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12392, "employeeId": 773, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17060, "employeeId": 773, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7315, "employeeId": 774, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8543, "employeeId": 774, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9316, "employeeId": 774, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10593, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-09-18", "customCorporateTitle": "", "customComments1": "Transfer to New Role", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12393, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17076, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7358, "employeeId": 775, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9350, "employeeId": 775, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7568, "employeeId": 778, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "HR.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9351, "employeeId": 778, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7488, "employeeId": 785, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9552, "employeeId": 785, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7086, "employeeId": 786, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8425, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9253, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12394, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.ARIS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6898, "employeeId": 787, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9553, "employeeId": 787, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7073, "employeeId": 790, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7172, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8544, "employeeId": 791, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9317, "employeeId": 791, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12395, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17054, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7365, "employeeId": 792, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9554, "employeeId": 792, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12474, "employeeId": 792, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17082, "employeeId": 792, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7540, "employeeId": 794, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9555, "employeeId": 794, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7595, "employeeId": 795, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9371, "employeeId": 795, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6961, "employeeId": 796, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9897, "employeeId": 796, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7410, "employeeId": 798, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8528, "employeeId": 798, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9556, "employeeId": 798, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7142, "employeeId": 799, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9938, "employeeId": 799, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7131, "employeeId": 800, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9557, "employeeId": 800, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7395, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9558, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12397, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.APES.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7068, "employeeId": 802, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9559, "employeeId": 802, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7343, "employeeId": 803, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9560, "employeeId": 803, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7161, "employeeId": 804, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9314, "employeeId": 804, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6988, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9939, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12398, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17029, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7373, "employeeId": 806, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9561, "employeeId": 806, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7176, "employeeId": 809, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9562, "employeeId": 809, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7175, "employeeId": 812, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8449, "employeeId": 812, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9563, "employeeId": 812, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6857, "employeeId": 813, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8432, "employeeId": 813, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9819, "employeeId": 813, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6881, "employeeId": 814, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9564, "employeeId": 814, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12399, "employeeId": 814, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17017, "employeeId": 814, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7339, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8508, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9565, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7038, "employeeId": 818, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9566, "employeeId": 818, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7422, "employeeId": 819, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9567, "employeeId": 819, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7408, "employeeId": 820, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9940, "employeeId": 820, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7240, "employeeId": 821, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9568, "employeeId": 821, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6924, "employeeId": 822, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "LG.ATGC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9941, "employeeId": 822, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12400, "employeeId": 822, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATGC.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7316, "employeeId": 825, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7049, "employeeId": 826, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.OPSO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7428, "employeeId": 827, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8475, "employeeId": 827, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9874, "employeeId": 827, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12401, "employeeId": 827, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6982, "employeeId": 828, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9569, "employeeId": 828, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7202, "employeeId": 829, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6956, "employeeId": 830, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8439, "employeeId": 830, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9570, "employeeId": 830, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7355, "employeeId": 831, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9571, "employeeId": 831, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7399, "employeeId": 832, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9572, "employeeId": 832, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10272, "employeeId": 832, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIWU.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7394, "employeeId": 833, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9573, "employeeId": 833, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7342, "employeeId": 834, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9898, "employeeId": 834, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10357, "employeeId": 834, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7482, "employeeId": 836, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8462, "employeeId": 836, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9574, "employeeId": 836, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7625, "employeeId": 837, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9575, "employeeId": 837, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7523, "employeeId": 839, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9576, "employeeId": 839, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7331, "employeeId": 843, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9318, "employeeId": 843, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7323, "employeeId": 844, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7325, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9942, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12402, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17077, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7644, "employeeId": 846, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7180, "employeeId": 847, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8461, "employeeId": 847, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9577, "employeeId": 847, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7631, "employeeId": 848, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9849, "employeeId": 848, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7026, "employeeId": 849, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7169, "employeeId": 850, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9578, "employeeId": 850, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7510, "employeeId": 851, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7273, "employeeId": 852, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9579, "employeeId": 852, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6953, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8539, "employeeId": 853, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9319, "employeeId": 853, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12403, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17024, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7353, "employeeId": 854, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9301, "employeeId": 854, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7330, "employeeId": 855, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9859, "employeeId": 855, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6944, "employeeId": 856, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9580, "employeeId": 856, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6992, "employeeId": 858, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9352, "employeeId": 858, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7461, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8545, "employeeId": 859, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9320, "employeeId": 859, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12404, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17094, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7285, "employeeId": 860, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9972, "employeeId": 860, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7254, "employeeId": 862, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9581, "employeeId": 862, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6909, "employeeId": 864, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9302, "employeeId": 864, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7604, "employeeId": 865, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8499, "employeeId": 865, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9582, "employeeId": 865, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7371, "employeeId": 866, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8424, "employeeId": 866, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9583, "employeeId": 866, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7561, "employeeId": 867, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9584, "employeeId": 867, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7364, "employeeId": 869, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9585, "employeeId": 869, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7453, "employeeId": 870, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9586, "employeeId": 870, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7496, "employeeId": 871, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9943, "employeeId": 871, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7515, "employeeId": 872, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8463, "employeeId": 872, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9587, "employeeId": 872, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6975, "employeeId": 874, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7484, "employeeId": 875, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9588, "employeeId": 875, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7090, "employeeId": 876, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9589, "employeeId": 876, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6985, "employeeId": 877, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9590, "employeeId": 877, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7042, "employeeId": 878, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8527, "employeeId": 878, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9591, "employeeId": 878, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10259, "employeeId": 878, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7490, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8495, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9592, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12405, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17234, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6964, "employeeId": 880, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9593, "employeeId": 880, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6883, "employeeId": 881, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9594, "employeeId": 881, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7512, "employeeId": 882, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9595, "employeeId": 882, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12406, "employeeId": 882, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17106, "employeeId": 882, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7147, "employeeId": 883, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9814, "employeeId": 883, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7337, "employeeId": 884, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8516, "employeeId": 884, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9596, "employeeId": 884, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7002, "employeeId": 887, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9303, "employeeId": 887, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7198, "employeeId": 888, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9597, "employeeId": 888, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12407, "employeeId": 888, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17058, "employeeId": 888, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7271, "employeeId": 889, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9894, "employeeId": 889, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7621, "employeeId": 890, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9944, "employeeId": 890, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7128, "employeeId": 891, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9872, "employeeId": 891, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7048, "employeeId": 893, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9598, "employeeId": 893, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7105, "employeeId": 894, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9599, "employeeId": 894, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7520, "employeeId": 895, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6970, "employeeId": 898, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9815, "employeeId": 898, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7498, "employeeId": 901, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9600, "employeeId": 901, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7009, "employeeId": 904, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9852, "employeeId": 904, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7618, "employeeId": 905, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9601, "employeeId": 905, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7611, "employeeId": 909, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9602, "employeeId": 909, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6886, "employeeId": 910, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6900, "employeeId": 911, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9603, "employeeId": 911, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7547, "employeeId": 912, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8464, "employeeId": 912, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9604, "employeeId": 912, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6990, "employeeId": 914, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9880, "employeeId": 914, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10471, "employeeId": 914, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to level due to promotion. By Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7380, "employeeId": 916, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8434, "employeeId": 916, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9605, "employeeId": 916, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7327, "employeeId": 921, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9606, "employeeId": 921, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7426, "employeeId": 922, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7332, "employeeId": 923, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8540, "employeeId": 923, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9321, "employeeId": 923, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7590, "employeeId": 924, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8477, "employeeId": 924, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9607, "employeeId": 924, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7415, "employeeId": 925, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8542, "employeeId": 925, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9322, "employeeId": 925, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7420, "employeeId": 926, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.MRUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8560, "employeeId": 926, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.MRUE.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9608, "employeeId": 926, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.MRUE.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10352, "employeeId": 926, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP\nFunctional Job Level added by SP 082323", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6958, "employeeId": 927, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9830, "employeeId": 927, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7389, "employeeId": 928, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7478, "employeeId": 929, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9803, "employeeId": 929, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6863, "employeeId": 930, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9339, "employeeId": 930, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7006, "employeeId": 932, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9609, "employeeId": 932, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6941, "employeeId": 933, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9610, "employeeId": 933, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7404, "employeeId": 935, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7381, "employeeId": 936, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.GLMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9611, "employeeId": 936, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10267, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12408, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17085, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7079, "employeeId": 937, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9612, "employeeId": 937, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7374, "employeeId": 938, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9877, "employeeId": 938, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7522, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9906, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12409, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17108, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7367, "employeeId": 940, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8498, "employeeId": 940, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9613, "employeeId": 940, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6922, "employeeId": 941, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9614, "employeeId": 941, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10254, "employeeId": 941, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7150, "employeeId": 942, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9843, "employeeId": 942, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7056, "employeeId": 943, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9615, "employeeId": 943, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6890, "employeeId": 944, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9616, "employeeId": 944, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7348, "employeeId": 946, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9304, "employeeId": 946, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7274, "employeeId": 947, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9617, "employeeId": 947, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7033, "employeeId": 948, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9618, "employeeId": 948, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7643, "employeeId": 951, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7563, "employeeId": 952, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9619, "employeeId": 952, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7598, "employeeId": 953, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7182, "employeeId": 954, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9620, "employeeId": 954, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7177, "employeeId": 955, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9621, "employeeId": 955, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6967, "employeeId": 957, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9862, "employeeId": 957, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7537, "employeeId": 958, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8506, "employeeId": 958, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9969, "employeeId": 958, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12411, "employeeId": 958, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CSRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7463, "employeeId": 959, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6965, "employeeId": 960, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9622, "employeeId": 960, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6897, "employeeId": 961, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9623, "employeeId": 961, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7113, "employeeId": 962, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9624, "employeeId": 962, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7525, "employeeId": 963, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9625, "employeeId": 963, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7527, "employeeId": 967, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6908, "employeeId": 968, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8546, "employeeId": 968, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9323, "employeeId": 968, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6872, "employeeId": 969, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9626, "employeeId": 969, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7414, "employeeId": 970, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9305, "employeeId": 970, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7088, "employeeId": 972, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9945, "employeeId": 972, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7390, "employeeId": 973, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8440, "employeeId": 973, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9627, "employeeId": 973, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6938, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8534, "employeeId": 974, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9324, "employeeId": 974, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12412, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17023, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7397, "employeeId": 977, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8476, "employeeId": 977, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9628, "employeeId": 977, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12413, "employeeId": 977, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7359, "employeeId": 978, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8479, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Does this role have people responsibilty?", "customBenchmarkCode": "SA.APAP.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9259, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12414, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7297, "employeeId": 979, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9946, "employeeId": 979, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7432, "employeeId": 980, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8492, "employeeId": 980, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9971, "employeeId": 980, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6907, "employeeId": 981, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9810, "employeeId": 981, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6852, "employeeId": 982, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9629, "employeeId": 982, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6916, "employeeId": 983, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8517, "employeeId": 983, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9630, "employeeId": 983, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7437, "employeeId": 984, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7179, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8511, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9631, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7287, "employeeId": 986, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9632, "employeeId": 986, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7016, "employeeId": 987, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7340, "employeeId": 990, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9947, "employeeId": 990, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7284, "employeeId": 991, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7601, "employeeId": 992, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9633, "employeeId": 992, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6853, "employeeId": 994, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9634, "employeeId": 994, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7487, "employeeId": 996, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7244, "employeeId": 997, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9948, "employeeId": 997, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6930, "employeeId": 998, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9306, "employeeId": 998, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7168, "employeeId": 999, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9635, "employeeId": 999, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7231, "employeeId": 1000, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9245, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9636, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12415, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17061, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6987, "employeeId": 1002, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9637, "employeeId": 1002, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7603, "employeeId": 1004, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9888, "employeeId": 1004, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7300, "employeeId": 1005, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9638, "employeeId": 1005, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10274, "employeeId": 1005, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7593, "employeeId": 1006, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9639, "employeeId": 1006, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6943, "employeeId": 1007, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6915, "employeeId": 1008, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9640, "employeeId": 1008, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7074, "employeeId": 1009, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "TE.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9353, "employeeId": 1009, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7384, "employeeId": 1010, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "HR.TMTA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7524, "employeeId": 1011, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9876, "employeeId": 1011, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7626, "employeeId": 1012, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9641, "employeeId": 1012, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7491, "employeeId": 1013, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7483, "employeeId": 1014, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9642, "employeeId": 1014, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevel adjustment May 17, 2023 by Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7187, "employeeId": 1015, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9804, "employeeId": 1015, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7036, "employeeId": 1016, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9643, "employeeId": 1016, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12416, "employeeId": 1016, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PMPM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7267, "employeeId": 1017, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9644, "employeeId": 1017, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6969, "employeeId": 1018, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7055, "employeeId": 1019, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9307, "employeeId": 1019, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7439, "employeeId": 1020, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7151, "employeeId": 1021, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7230, "employeeId": 1022, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9645, "employeeId": 1022, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7492, "employeeId": 1024, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7571, "employeeId": 1025, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9949, "employeeId": 1025, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10256, "employeeId": 1025, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7398, "employeeId": 1026, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9308, "employeeId": 1026, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7152, "employeeId": 1027, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7109, "employeeId": 1028, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9646, "employeeId": 1028, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7054, "employeeId": 1029, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9647, "employeeId": 1029, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7156, "employeeId": 1031, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9648, "employeeId": 1031, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7080, "employeeId": 1032, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SOPS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9950, "employeeId": 1032, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6882, "employeeId": 1033, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9892, "employeeId": 1033, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6937, "employeeId": 1034, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8530, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9899, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17409, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-15", "customCorporateTitle": "PRINCIPAL", "customComments1": "Moving to Manager Path as per request from HRBP (Cassie Geraghty)", "customBenchmarkCode": "MK.PMDG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7129, "employeeId": 1035, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9951, "employeeId": 1035, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7008, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8547, "employeeId": 1036, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9325, "employeeId": 1036, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12419, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17031, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7170, "employeeId": 1037, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9649, "employeeId": 1037, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6896, "employeeId": 1038, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9650, "employeeId": 1038, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6851, "employeeId": 1039, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9651, "employeeId": 1039, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7411, "employeeId": 1040, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9967, "employeeId": 1040, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12420, "employeeId": 1040, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7321, "employeeId": 1041, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9652, "employeeId": 1041, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7469, "employeeId": 1042, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9809, "employeeId": 1042, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12421, "employeeId": 1042, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17097, "employeeId": 1042, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7239, "employeeId": 1043, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DION.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6945, "employeeId": 1044, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9354, "employeeId": 1044, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7633, "employeeId": 1045, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9952, "employeeId": 1045, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7534, "employeeId": 1046, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9653, "employeeId": 1046, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12422, "employeeId": 1046, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17109, "employeeId": 1046, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6942, "employeeId": 1048, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9654, "employeeId": 1048, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7031, "employeeId": 1049, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7608, "employeeId": 1050, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9655, "employeeId": 1050, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10263, "employeeId": 1050, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7047, "employeeId": 1051, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9656, "employeeId": 1051, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6974, "employeeId": 1053, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9657, "employeeId": 1053, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7444, "employeeId": 1054, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9831, "employeeId": 1054, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10469, "employeeId": 1054, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/21/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7535, "employeeId": 1055, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9658, "employeeId": 1055, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7462, "employeeId": 1056, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9863, "employeeId": 1056, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7471, "employeeId": 1057, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LG.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9355, "employeeId": 1057, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7290, "employeeId": 1058, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9659, "employeeId": 1058, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7188, "employeeId": 1059, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9798, "employeeId": 1059, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12423, "employeeId": 1059, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17056, "employeeId": 1059, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7191, "employeeId": 1060, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8435, "employeeId": 1060, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9660, "employeeId": 1060, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7400, "employeeId": 1061, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9661, "employeeId": 1061, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7465, "employeeId": 1062, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9662, "employeeId": 1062, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6885, "employeeId": 1063, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8428, "employeeId": 1063, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9663, "employeeId": 1063, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7555, "employeeId": 1064, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9664, "employeeId": 1064, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12424, "employeeId": 1064, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17116, "employeeId": 1064, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6935, "employeeId": 1065, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9362, "employeeId": 1065, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7120, "employeeId": 1066, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9665, "employeeId": 1066, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7393, "employeeId": 1067, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7022, "employeeId": 1068, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9666, "employeeId": 1068, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7098, "employeeId": 1069, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9667, "employeeId": 1069, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7344, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8548, "employeeId": 1073, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9340, "employeeId": 1073, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12425, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17078, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7441, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8502, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9953, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7269, "employeeId": 1075, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9668, "employeeId": 1075, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12426, "employeeId": 1075, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17069, "employeeId": 1075, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7212, "employeeId": 1076, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9669, "employeeId": 1076, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7636, "employeeId": 1077, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7141, "employeeId": 1078, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9670, "employeeId": 1078, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7513, "employeeId": 1079, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9671, "employeeId": 1079, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10359, "employeeId": 1079, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7419, "employeeId": 1080, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9954, "employeeId": 1080, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7531, "employeeId": 1083, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9978, "employeeId": 1083, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12427, "employeeId": 1083, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6980, "employeeId": 1084, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACGA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9672, "employeeId": 1084, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7021, "employeeId": 1085, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9673, "employeeId": 1085, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7447, "employeeId": 1086, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9356, "employeeId": 1086, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6878, "employeeId": 1088, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7107, "employeeId": 1089, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8465, "employeeId": 1089, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9882, "employeeId": 1089, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7007, "employeeId": 1090, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8549, "employeeId": 1090, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9326, "employeeId": 1090, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7579, "employeeId": 1091, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7206, "employeeId": 1092, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9674, "employeeId": 1092, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7566, "employeeId": 1093, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9675, "employeeId": 1093, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10511, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-06-01", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: adjusting level after promotion", "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12428, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATEL.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17118, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.ATEL.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7421, "employeeId": 1095, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8563, "employeeId": 1095, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9676, "employeeId": 1095, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10355, "employeeId": 1095, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7565, "employeeId": 1096, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9838, "employeeId": 1096, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7559, "employeeId": 1098, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DISM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9881, "employeeId": 1098, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DISM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10270, "employeeId": 1098, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DISM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7251, "employeeId": 1099, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9677, "employeeId": 1099, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17246, "employeeId": 1099, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6959, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8505, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9678, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12430, "employeeId": 1100, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17026, "employeeId": 1100, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7103, "employeeId": 1102, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9816, "employeeId": 1102, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17232, "employeeId": 1102, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7600, "employeeId": 1103, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9806, "employeeId": 1103, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7401, "employeeId": 1104, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9955, "employeeId": 1104, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11344, "employeeId": 1104, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-09", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjusted level to role, according to Stefan Kolmar.", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12431, "employeeId": 1104, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7234, "employeeId": 1105, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.MRMR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7456, "employeeId": 1107, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9679, "employeeId": 1107, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7417, "employeeId": 1109, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9886, "employeeId": 1109, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10266, "employeeId": 1109, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6968, "employeeId": 1110, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6879, "employeeId": 1111, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INWD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9680, "employeeId": 1111, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INWD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7606, "employeeId": 1112, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9681, "employeeId": 1112, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7474, "employeeId": 1113, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9682, "employeeId": 1113, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12432, "employeeId": 1113, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17099, "employeeId": 1113, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7190, "employeeId": 1114, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9818, "employeeId": 1114, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7229, "employeeId": 1115, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9683, "employeeId": 1115, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10467, "employeeId": 1115, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12433, "employeeId": 1115, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7110, "employeeId": 1116, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9956, "employeeId": 1116, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7446, "employeeId": 1117, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "MK.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9357, "employeeId": 1117, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7015, "employeeId": 1118, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9684, "employeeId": 1118, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7280, "employeeId": 1119, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9796, "employeeId": 1119, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7588, "employeeId": 1120, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7167, "employeeId": 1121, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7624, "employeeId": 1122, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9685, "employeeId": 1122, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7564, "employeeId": 1124, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9686, "employeeId": 1124, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7116, "employeeId": 1126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7252, "employeeId": 1127, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9687, "employeeId": 1127, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7642, "employeeId": 1128, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9845, "employeeId": 1128, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7153, "employeeId": 1129, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9688, "employeeId": 1129, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7037, "employeeId": 1130, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9689, "employeeId": 1130, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7245, "employeeId": 1133, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9836, "employeeId": 1133, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7445, "employeeId": 1134, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9309, "employeeId": 1134, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7137, "employeeId": 1136, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8537, "employeeId": 1136, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9327, "employeeId": 1136, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6884, "employeeId": 1138, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9690, "employeeId": 1138, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7386, "employeeId": 1139, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9691, "employeeId": 1139, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7236, "employeeId": 1140, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7549, "employeeId": 1141, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7306, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8541, "employeeId": 1142, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9328, "employeeId": 1142, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12434, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17073, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7544, "employeeId": 1143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9692, "employeeId": 1143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7010, "employeeId": 1144, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9693, "employeeId": 1144, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7350, "employeeId": 1145, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9694, "employeeId": 1145, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6976, "employeeId": 1147, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9905, "employeeId": 1147, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6951, "employeeId": 1148, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9695, "employeeId": 1148, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7589, "employeeId": 1149, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9834, "employeeId": 1149, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7102, "employeeId": 1150, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9696, "employeeId": 1150, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7617, "employeeId": 1152, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7551, "employeeId": 1154, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7518, "employeeId": 1155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9697, "employeeId": 1155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6948, "employeeId": 1156, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9698, "employeeId": 1156, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7119, "employeeId": 1157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9699, "employeeId": 1157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7242, "employeeId": 1158, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLSC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9358, "employeeId": 1158, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLSC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7100, "employeeId": 1159, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9310, "employeeId": 1159, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7416, "employeeId": 1160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9700, "employeeId": 1160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7118, "employeeId": 1161, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9701, "employeeId": 1161, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7270, "employeeId": 1162, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6966, "employeeId": 1163, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9311, "employeeId": 1163, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7312, "employeeId": 1168, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9702, "employeeId": 1168, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6901, "employeeId": 1169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CB.ADEA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9703, "employeeId": 1169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CB.ADEA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7097, "employeeId": 1171, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9878, "employeeId": 1171, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6998, "employeeId": 1172, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9704, "employeeId": 1172, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6926, "employeeId": 1173, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9705, "employeeId": 1173, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6981, "employeeId": 1174, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9312, "employeeId": 1174, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7155, "employeeId": 1175, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8558, "employeeId": 1175, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9706, "employeeId": 1175, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7145, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPDD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9707, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11363, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Added to management path, new Corporate title and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SA.OPDD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12435, "employeeId": 1176, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPDD.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7622, "employeeId": 1178, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9708, "employeeId": 1178, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12436, "employeeId": 1178, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17129, "employeeId": 1178, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7127, "employeeId": 1179, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9709, "employeeId": 1179, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7309, "employeeId": 1180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9710, "employeeId": 1180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12437, "employeeId": 1180, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17074, "employeeId": 1180, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6923, "employeeId": 1181, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8550, "employeeId": 1181, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7329, "employeeId": 1182, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7089, "employeeId": 1183, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7276, "employeeId": 1184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8443, "employeeId": 1184, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9853, "employeeId": 1184, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7506, "employeeId": 1185, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8441, "employeeId": 1185, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9808, "employeeId": 1185, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7283, "employeeId": 1186, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9711, "employeeId": 1186, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7435, "employeeId": 1190, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9712, "employeeId": 1190, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7124, "employeeId": 1191, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9713, "employeeId": 1191, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6893, "employeeId": 1193, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9835, "employeeId": 1193, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12438, "employeeId": 1193, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17018, "employeeId": 1193, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6925, "employeeId": 1194, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9714, "employeeId": 1194, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7298, "employeeId": 1195, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9715, "employeeId": 1195, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10491, "employeeId": 1195, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7111, "employeeId": 1198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9716, "employeeId": 1198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7095, "employeeId": 1199, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9717, "employeeId": 1199, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7646, "employeeId": 1200, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8450, "employeeId": 1200, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9718, "employeeId": 1200, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7379, "employeeId": 1201, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8458, "employeeId": 1201, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9719, "employeeId": 1201, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7140, "employeeId": 1203, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9799, "employeeId": 1203, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7451, "employeeId": 1205, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9865, "employeeId": 1205, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDSD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7529, "employeeId": 1206, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9800, "employeeId": 1206, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9105, "employeeId": 1207, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9263, "employeeId": 1207, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7130, "employeeId": 1208, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8501, "employeeId": 1208, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9854, "employeeId": 1208, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7630, "employeeId": 1209, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9720, "employeeId": 1209, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7345, "employeeId": 1210, "customCorporateJobLevel": "", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10331, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-06-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12439, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17079, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7361, "employeeId": 1211, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9721, "employeeId": 1211, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7582, "employeeId": 1212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8496, "employeeId": 1212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9722, "employeeId": 1212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7197, "employeeId": 1213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8468, "employeeId": 1213, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9723, "employeeId": 1213, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7294, "employeeId": 1214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7387, "employeeId": 1216, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9817, "employeeId": 1216, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10250, "employeeId": 1216, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6891, "employeeId": 1219, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9359, "employeeId": 1219, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7277, "employeeId": 1220, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9823, "employeeId": 1220, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7516, "employeeId": 1222, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9968, "employeeId": 1222, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7259, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8551, "employeeId": 1223, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9329, "employeeId": 1223, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12440, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17066, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7057, "employeeId": 1224, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9724, "employeeId": 1224, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7497, "employeeId": 1225, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6855, "employeeId": 1227, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8436, "employeeId": 1227, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9725, "employeeId": 1227, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7434, "employeeId": 1228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9846, "employeeId": 1228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7181, "employeeId": 1229, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9726, "employeeId": 1229, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7639, "employeeId": 1230, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "CS.TRCO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9957, "employeeId": 1230, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12441, "employeeId": 1230, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7519, "employeeId": 1231, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9330, "employeeId": 1231, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10276, "employeeId": 1231, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustmed career path and level made on 07/10/23 by Sadie Percell", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11342, "employeeId": 1231, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-09", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjusted Corporate Title to Specialist after conversation with People Strategy Partner Lotta Almryd. Change made by Nicole Fridvall", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7429, "employeeId": 1232, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8451, "employeeId": 1232, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9727, "employeeId": 1232, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7214, "employeeId": 1233, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7341, "employeeId": 1234, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8491, "employeeId": 1234, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9958, "employeeId": 1234, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7499, "employeeId": 1235, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7493, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9728, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12362, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMMO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7106, "employeeId": 1238, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9861, "employeeId": 1238, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10353, "employeeId": 1238, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6979, "employeeId": 1239, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9729, "employeeId": 1239, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12442, "employeeId": 1239, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.ARIS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7308, "employeeId": 1240, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7548, "employeeId": 1243, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9871, "employeeId": 1243, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.ARIS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7502, "employeeId": 1244, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9730, "employeeId": 1244, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12443, "employeeId": 1244, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17103, "employeeId": 1244, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6917, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9731, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10249, "employeeId": 1245, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12444, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMMO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7314, "employeeId": 1246, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9732, "employeeId": 1246, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12445, "employeeId": 1246, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17075, "employeeId": 1246, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6940, "employeeId": 1247, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9822, "employeeId": 1247, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7063, "employeeId": 1250, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9733, "employeeId": 1250, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12446, "employeeId": 1250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17040, "employeeId": 1250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7053, "employeeId": 1251, "customCorporateJobLevel": "L1", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ENTRY SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8557, "employeeId": 1251, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9331, "employeeId": 1251, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12447, "employeeId": 1251, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17039, "employeeId": 1251, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7078, "employeeId": 1252, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8466, "employeeId": 1252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9734, "employeeId": 1252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7396, "employeeId": 1254, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9735, "employeeId": 1254, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12448, "employeeId": 1254, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17087, "employeeId": 1254, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6933, "employeeId": 1255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8513, "employeeId": 1255, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9736, "employeeId": 1255, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7311, "employeeId": 1256, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7346, "employeeId": 1258, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9885, "employeeId": 1258, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6889, "employeeId": 1260, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9895, "employeeId": 1260, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7126, "employeeId": 1261, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9737, "employeeId": 1261, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6928, "employeeId": 1262, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-03", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9738, "employeeId": 1262, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10473, "employeeId": 1262, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7536, "employeeId": 1264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9739, "employeeId": 1264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10252, "employeeId": 1264, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12449, "employeeId": 1264, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17111, "employeeId": 1264, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7333, "employeeId": 1265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7560, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9740, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12450, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17117, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7424, "employeeId": 1267, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7255, "employeeId": 1268, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9741, "employeeId": 1268, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7112, "employeeId": 1269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACFP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9742, "employeeId": 1269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12451, "employeeId": 1269, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17048, "employeeId": 1269, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7052, "employeeId": 1270, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8437, "employeeId": 1270, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9743, "employeeId": 1270, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10472, "employeeId": 1270, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to level due to promotion. By Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7062, "employeeId": 1271, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9866, "employeeId": 1271, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6905, "employeeId": 1272, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9744, "employeeId": 1272, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12452, "employeeId": 1272, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17020, "employeeId": 1272, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7030, "employeeId": 1273, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9745, "employeeId": 1273, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7023, "employeeId": 1274, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9746, "employeeId": 1274, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7266, "employeeId": 1276, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9747, "employeeId": 1276, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7241, "employeeId": 1277, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9748, "employeeId": 1277, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7303, "employeeId": 1278, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.OPHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7157, "employeeId": 1280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.TMTA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9959, "employeeId": 1280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7249, "employeeId": 1281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9749, "employeeId": 1281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12453, "employeeId": 1281, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17063, "employeeId": 1281, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7360, "employeeId": 1283, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9750, "employeeId": 1283, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12454, "employeeId": 1283, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17081, "employeeId": 1283, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7123, "employeeId": 1284, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9751, "employeeId": 1284, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7207, "employeeId": 1285, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9752, "employeeId": 1285, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7430, "employeeId": 1287, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10501, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-08-28", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "By Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12455, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17092, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6999, "employeeId": 1288, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9753, "employeeId": 1288, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7013, "employeeId": 1289, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9754, "employeeId": 1289, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12456, "employeeId": 1289, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17032, "employeeId": 1289, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7470, "employeeId": 1290, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9755, "employeeId": 1290, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10483, "employeeId": 1290, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7071, "employeeId": 1291, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8566, "employeeId": 1291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9960, "employeeId": 1291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7442, "employeeId": 1292, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7464, "employeeId": 1293, "customCorporateJobLevel": "L1", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ENTRY SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8552, "employeeId": 1293, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9332, "employeeId": 1293, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12457, "employeeId": 1293, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17095, "employeeId": 1293, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7553, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8487, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9801, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12458, "employeeId": 1294, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17114, "employeeId": 1294, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7295, "employeeId": 1295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9856, "employeeId": 1295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7629, "employeeId": 1296, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8553, "employeeId": 1296, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9333, "employeeId": 1296, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7028, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8426, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9360, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7382, "employeeId": 1298, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8452, "employeeId": 1298, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9756, "employeeId": 1298, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7165, "employeeId": 1299, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9884, "employeeId": 1299, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7261, "employeeId": 1300, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-12-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9844, "employeeId": 1300, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10482, "employeeId": 1300, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6849, "employeeId": 1301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7225, "employeeId": 1302, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9757, "employeeId": 1302, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7391, "employeeId": 1303, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-12-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9758, "employeeId": 1303, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7310, "employeeId": 1304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9759, "employeeId": 1304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6850, "employeeId": 1305, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9760, "employeeId": 1305, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10260, "employeeId": 1305, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6972, "employeeId": 1306, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9761, "employeeId": 1306, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7114, "employeeId": 1307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9762, "employeeId": 1307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10356, "employeeId": 1307, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7253, "employeeId": 1308, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9763, "employeeId": 1308, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12459, "employeeId": 1308, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17064, "employeeId": 1308, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7433, "employeeId": 1309, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.XXXX.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7163, "employeeId": 1310, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9764, "employeeId": 1310, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12460, "employeeId": 1310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17053, "employeeId": 1310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7475, "employeeId": 1311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9765, "employeeId": 1311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6910, "employeeId": 1312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9961, "employeeId": 1312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10470, "employeeId": 1312, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6994, "employeeId": 1313, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9766, "employeeId": 1313, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7585, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12461, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17123, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7045, "employeeId": 1316, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9767, "employeeId": 1316, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7378, "employeeId": 1317, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8554, "employeeId": 1317, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9334, "employeeId": 1317, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7328, "employeeId": 1318, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.RMRC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9768, "employeeId": 1318, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.RMRC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7019, "employeeId": 1319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9769, "employeeId": 1319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7486, "employeeId": 1320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9770, "employeeId": 1320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10145, "employeeId": 1320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevelled up to L6 by manager request 6/8/23, Sadie Percell", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7503, "employeeId": 1321, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9771, "employeeId": 1321, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7232, "employeeId": 1322, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9875, "employeeId": 1322, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7558, "employeeId": 1323, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9772, "employeeId": 1323, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6949, "employeeId": 1324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9313, "employeeId": 1324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7195, "employeeId": 1325, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9773, "employeeId": 1325, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10257, "employeeId": 1325, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7572, "employeeId": 1326, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9774, "employeeId": 1326, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7213, "employeeId": 1327, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ISHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6963, "employeeId": 1328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.OPSO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9977, "employeeId": 1328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7250, "employeeId": 1329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9857, "employeeId": 1329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7099, "employeeId": 1330, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7457, "employeeId": 1331, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9775, "employeeId": 1331, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7507, "employeeId": 1333, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9776, "employeeId": 1333, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7133, "employeeId": 1334, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7162, "employeeId": 1335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9777, "employeeId": 1335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7203, "employeeId": 1336, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6973, "employeeId": 1338, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9832, "employeeId": 1338, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7425, "employeeId": 1339, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9778, "employeeId": 1339, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7592, "employeeId": 1340, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8509, "employeeId": 1340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7221, "employeeId": 1341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9867, "employeeId": 1341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7233, "employeeId": 1342, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7219, "employeeId": 1343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "CA.COCD.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9361, "employeeId": 1343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COCD.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6918, "employeeId": 1344, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9975, "employeeId": 1344, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7347, "employeeId": 1345, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7392, "employeeId": 1346, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8555, "employeeId": 1346, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9335, "employeeId": 1346, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7171, "employeeId": 1347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9779, "employeeId": 1347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7619, "employeeId": 1348, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9780, "employeeId": 1348, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7136, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-12-19", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8568, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9336, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10275, "employeeId": 1349, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjusted career path and level made by Sadie Percell 07/10/23", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7121, "employeeId": 1350, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9829, "employeeId": 1350, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7075, "employeeId": 1351, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7452, "employeeId": 1352, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9781, "employeeId": 1352, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10485, "employeeId": 1352, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7093, "employeeId": 1353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9811, "employeeId": 1353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.ARIS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9087, "employeeId": 1354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9264, "employeeId": 1354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10476, "employeeId": 1354, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8454, "employeeId": 1355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9782, "employeeId": 1355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10477, "employeeId": 1355, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7370, "employeeId": 1357, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9783, "employeeId": 1357, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7638, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.COSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9784, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.COSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12462, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.COSC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7574, "employeeId": 1360, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8556, "employeeId": 1360, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9337, "employeeId": 1360, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9090, "employeeId": 1361, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9265, "employeeId": 1361, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10479, "employeeId": 1361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7570, "employeeId": 1362, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9785, "employeeId": 1362, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10248, "employeeId": 1362, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6991, "employeeId": 1363, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9786, "employeeId": 1363, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6962, "employeeId": 1364, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9787, "employeeId": 1364, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8427, "employeeId": 1365, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9962, "employeeId": 1365, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7064, "employeeId": 1366, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9963, "employeeId": 1366, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7077, "employeeId": 1367, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7517, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8480, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9788, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7258, "employeeId": 1369, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8442, "employeeId": 1371, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9789, "employeeId": 1371, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10478, "employeeId": 1371, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8526, "employeeId": 1372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9790, "employeeId": 1372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10258, "employeeId": 1372, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8529, "employeeId": 1373, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMBM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9964, "employeeId": 1373, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMBM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9088, "employeeId": 1374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9266, "employeeId": 1374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10480, "employeeId": 1374, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8532, "employeeId": 1375, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.DION.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9791, "employeeId": 1375, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10251, "employeeId": 1375, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request by Cassie on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9089, "employeeId": 1376, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9267, "employeeId": 1376, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8533, "employeeId": 1378, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9792, "employeeId": 1378, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10247, "employeeId": 1378, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9110, "employeeId": 1379, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9292, "employeeId": 1379, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9074, "employeeId": 1381, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9268, "employeeId": 1381, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9086, "employeeId": 1382, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9269, "employeeId": 1382, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevel adjustment May 17, 2023 by Sadie Percell", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8515, "employeeId": 1383, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9793, "employeeId": 1383, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12463, "employeeId": 1383, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17036, "employeeId": 1383, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8536, "employeeId": 1384, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISTL.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9965, "employeeId": 1384, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9081, "employeeId": 1385, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9270, "employeeId": 1385, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11588, "employeeId": 1385, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-24", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9091, "employeeId": 1386, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9271, "employeeId": 1386, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8567, "employeeId": 1387, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9338, "employeeId": 1387, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9111, "employeeId": 1389, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "E-STAFF", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9260, "employeeId": 1389, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9076, "employeeId": 1390, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "DIRECTOR", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.DIWC.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9293, "employeeId": 1390, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWC.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9085, "employeeId": 1391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9272, "employeeId": 1391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10481, "employeeId": 1391, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8469, "employeeId": 1392, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9794, "employeeId": 1392, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9082, "employeeId": 1393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9273, "employeeId": 1393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9083, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell\nRadford job code only run up to Manager level 6 (M6).", "customBenchmarkCode": "FI.ACFP.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9296, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12464, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFX.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9109, "employeeId": 1395, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9274, "employeeId": 1395, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9104, "employeeId": 1397, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9275, "employeeId": 1397, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9103, "employeeId": 1398, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9276, "employeeId": 1398, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9077, "employeeId": 1399, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.OPSO.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9261, "employeeId": 1399, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9084, "employeeId": 1402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Benchmark role is combination of two Radford job codes since no exact match was found in Radford. \nEditor: Sadie Percell", "customBenchmarkCode": "LG.NAPL.P3/ SA.OPSA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9254, "employeeId": 1402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.NAPL.P3/ SA.OPSA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12465, "employeeId": 1402, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.NAPL.P4/ SA.OPSA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17052, "employeeId": 1402, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.NAPL.P4/ SA.OPSA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9112, "employeeId": 1403, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.ISTL.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9277, "employeeId": 1403, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9106, "employeeId": 1404, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9295, "employeeId": 1404, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12466, "employeeId": 1404, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17294, "employeeId": 1405, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9080, "employeeId": 1406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9291, "employeeId": 1406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9107, "employeeId": 1407, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9262, "employeeId": 1407, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9100, "employeeId": 1408, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9294, "employeeId": 1408, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9101, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9278, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12467, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17119, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9102, "employeeId": 1412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9279, "employeeId": 1412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9099, "employeeId": 1413, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9280, "employeeId": 1413, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9096, "employeeId": 1414, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9281, "employeeId": 1414, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12468, "employeeId": 1414, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17086, "employeeId": 1414, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9092, "employeeId": 1415, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9282, "employeeId": 1415, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9098, "employeeId": 1416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9283, "employeeId": 1416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10459, "employeeId": 1417, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-16", "customCorporateTitle": "SPECIALIST", "customComments1": "Added by Sadie Percell 2023-08-16", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9078, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "PRINCIPAL", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9284, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12469, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CA.COPR.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9095, "employeeId": 1419, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9285, "employeeId": 1419, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12470, "employeeId": 1419, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17071, "employeeId": 1419, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9097, "employeeId": 1420, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9286, "employeeId": 1420, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12471, "employeeId": 1420, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17104, "employeeId": 1420, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9093, "employeeId": 1421, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9287, "employeeId": 1421, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9094, "employeeId": 1422, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9288, "employeeId": 1422, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9108, "employeeId": 1424, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9289, "employeeId": 1424, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10074, "employeeId": 1425, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-26", "customCorporateTitle": "E-STAFF", "customComments1": "Added by Sadie Percell", "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12472, "employeeId": 1430, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17055, "employeeId": 1430, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12473, "employeeId": 1444, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17034, "employeeId": 1444, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9079, "employeeId": 1445, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "CA.COPR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9290, "employeeId": 1445, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COPR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10268, "employeeId": 1445, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10261, "employeeId": 1448, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12366, "employeeId": 1449, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17080, "employeeId": 1449, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10144, "employeeId": 1451, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added by Sadie Percell 6/8/2023", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12475, "employeeId": 1457, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17046, "employeeId": 1457, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12476, "employeeId": 1458, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DIWC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17096, "employeeId": 1458, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.DIWC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12477, "employeeId": 1460, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17067, "employeeId": 1460, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12478, "employeeId": 1462, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17127, "employeeId": 1462, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11343, "employeeId": 1464, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added Job Level after conversation with People Strategy Partner Lotta Almryd. Change made by Nicole Fridvall", "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12479, "employeeId": 1467, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10458, "employeeId": 1471, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-16", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added by Sadie Percell 2023-08-16", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12480, "employeeId": 1473, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17049, "employeeId": 1473, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12481, "employeeId": 1475, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17258, "employeeId": 1477, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-05", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10382, "employeeId": 1479, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-09-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "HR.GLGL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12482, "employeeId": 1480, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.PLSL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17051, "employeeId": 1480, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.PLSL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10332, "employeeId": 1497, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12483, "employeeId": 1497, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11057, "employeeId": 1498, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-06-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12369, "employeeId": 1498, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPM.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12484, "employeeId": 1503, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17083, "employeeId": 1503, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11059, "employeeId": 1504, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12485, "employeeId": 1504, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17050, "employeeId": 1504, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12486, "employeeId": 1506, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17021, "employeeId": 1506, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11058, "employeeId": 1507, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-07-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12487, "employeeId": 1507, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12488, "employeeId": 1514, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11060, "employeeId": 1515, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-07-17", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12489, "employeeId": 1515, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.BEBE.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11065, "employeeId": 1521, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12490, "employeeId": 1521, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17091, "employeeId": 1521, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11067, "employeeId": 1522, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-08-07", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12370, "employeeId": 1522, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.CBCB.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11063, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12491, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17084, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11064, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12382, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17134, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11061, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-24", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12383, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17022, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11062, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12492, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17014, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11072, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12493, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17100, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11066, "employeeId": 1529, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12494, "employeeId": 1529, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11073, "employeeId": 1534, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12495, "employeeId": 1534, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17128, "employeeId": 1534, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11071, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12496, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17037, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11070, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12497, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17028, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10497, "employeeId": 1539, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-22", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DMDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17137, "employeeId": 1539, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "TE.DMDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17240, "employeeId": 1540, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-05", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11068, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12388, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17105, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11069, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12498, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17122, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12396, "employeeId": 1545, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17047, "employeeId": 1545, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12499, "employeeId": 1546, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17113, "employeeId": 1546, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11074, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12500, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17130, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11075, "employeeId": 1551, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-09-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12410, "employeeId": 1551, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DION.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11076, "employeeId": 1552, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-09-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12501, "employeeId": 1552, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11084, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-10-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12502, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17090, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11103, "employeeId": 1555, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-10-09", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12503, "employeeId": 1555, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12417, "employeeId": 1556, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17136, "employeeId": 1556, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11081, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12504, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17065, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11079, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12505, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17015, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11082, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12506, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17098, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11077, "employeeId": 1560, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12507, "employeeId": 1560, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11080, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12508, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17125, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11078, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-09", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12509, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17025, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11083, "employeeId": 1563, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SPECIALIST", "customComments1": "Added by Nicole Fridvall after request from People Partner Lotta Almryd", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12510, "employeeId": 1565, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.PGMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11036, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12511, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17089, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11050, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12512, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17088, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11043, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12513, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17110, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11042, "employeeId": 1569, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12514, "employeeId": 1569, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17027, "employeeId": 1569, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11104, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12418, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17115, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11147, "employeeId": 1576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-30", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12515, "employeeId": 1576, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17019, "employeeId": 1576, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11162, "employeeId": 1577, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-10-23", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12516, "employeeId": 1577, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11140, "employeeId": 1578, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12429, "employeeId": 1578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17133, "employeeId": 1578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11339, "employeeId": 1579, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11153, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-30", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12517, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17121, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11171, "employeeId": 1582, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Added by Nicole Fridvall after request from People Partner Lotta Almryd", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11211, "employeeId": 1584, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11210, "employeeId": 1585, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15958, "employeeId": 1585, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11219, "employeeId": 1587, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11223, "employeeId": 1588, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-11-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12518, "employeeId": 1588, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11258, "employeeId": 1589, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17259, "employeeId": 1589, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "Sr. Specialist", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11264, "employeeId": 1591, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12519, "employeeId": 1591, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11319, "employeeId": 1592, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12520, "employeeId": 1592, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11387, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-20", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12521, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17043, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11360, "employeeId": 1597, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17260, "employeeId": 1597, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "SPECIALIST", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15959, "employeeId": 1600, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11374, "employeeId": 1601, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11391, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-11-20", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12522, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17057, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11380, "employeeId": 1605, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17261, "employeeId": 1605, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "Sr. Administrator", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11395, "employeeId": 1606, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15960, "employeeId": 1606, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11396, "employeeId": 1607, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11399, "employeeId": 1608, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11409, "employeeId": 1609, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-03", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11413, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12523, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CSCR.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17044, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CSCR.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11420, "employeeId": 1612, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11438, "employeeId": 1613, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11442, "employeeId": 1614, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-13", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11447, "employeeId": 1615, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11449, "employeeId": 1617, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15961, "employeeId": 1617, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11453, "employeeId": 1618, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17262, "employeeId": 1618, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "SPECIALIST", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11462, "employeeId": 1620, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15957, "employeeId": 1622, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-07", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11568, "employeeId": 1623, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11521, "employeeId": 1624, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11550, "employeeId": 1625, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11558, "employeeId": 1626, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11564, "employeeId": 1627, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11555, "employeeId": 1628, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11569, "employeeId": 1629, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16904, "employeeId": 1629, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-02-07", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Correction of job level & career path", "customBenchmarkCode": "EN.PGPG.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11586, "employeeId": 1630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11611, "employeeId": 1637, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15990, "employeeId": 1638, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11617, "employeeId": 1639, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11626, "employeeId": 1640, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11630, "employeeId": 1641, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15943, "employeeId": 1643, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12527, "employeeId": 1644, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13735, "employeeId": 1645, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-22", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17013, "employeeId": 1645, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14706, "employeeId": 1646, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-29", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16002, "employeeId": 1647, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15927, "employeeId": 1648, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15934, "employeeId": 1650, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-01-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16007, "employeeId": 1653, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16030, "employeeId": 1654, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-29", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17012, "employeeId": 1654, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16034, "employeeId": 1655, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16041, "employeeId": 1656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16052, "employeeId": 1657, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16057, "employeeId": 1658, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16064, "employeeId": 1659, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16068, "employeeId": 1660, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16074, "employeeId": 1661, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16081, "employeeId": 1662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16082, "employeeId": 1664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16860, "employeeId": 1665, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16847, "employeeId": 1666, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16853, "employeeId": 1667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16855, "employeeId": 1668, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16881, "employeeId": 1669, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16885, "employeeId": 1670, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16887, "employeeId": 1671, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16908, "employeeId": 1672, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16910, "employeeId": 1673, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16917, "employeeId": 1674, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16921, "employeeId": 1675, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16947, "employeeId": 1676, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-06", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16928, "employeeId": 1677, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16952, "employeeId": 1680, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16979, "employeeId": 1681, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16959, "employeeId": 1682, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16964, "employeeId": 1683, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16970, "employeeId": 1684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17142, "employeeId": 1685, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16984, "employeeId": 1686, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16989, "employeeId": 1687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-03", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17196, "employeeId": 1689, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17203, "employeeId": 1691, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17208, "employeeId": 1692, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17221, "employeeId": 1694, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-28", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17227, "employeeId": 1696, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17273, "employeeId": 1698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17280, "employeeId": 1699, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17292, "employeeId": 1701, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17315, "employeeId": 1705, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-05-20", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17320, "employeeId": 1706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-13", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17327, "employeeId": 1707, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17333, "employeeId": 1708, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17338, "employeeId": 1709, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17350, "employeeId": 1710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17356, "employeeId": 1711, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17362, "employeeId": 1712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-24", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17402, "employeeId": 1720, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-17", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17407, "employeeId": 1721, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} +{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17415, "employeeId": 1722, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-07", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} +{"type": "LOG", "log": {"level": "INFO", "message": "Read 19432 records from tables_stream stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as STOPPED"}} +{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872589785.84, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "COMPLETE"}}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing tables_stream"}} +{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_fields_stream 0:00:00.706214\nSyncing stream meta_tables_stream 0:00:00.390416\nSyncing stream tables_stream 0:00:11.121396"}} +{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing SourceBambooHr"}} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json index f35baff6ed75..b75a8f2a7baa 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json @@ -1,6 +1,7 @@ { "type": [ "object"], "required": [], + "additionalProperties": true, "properties": { "acaStatus": { "type": ["null", "string"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 8118922f5257..18cc94ce4aef 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -1,6 +1,7 @@ { "type": [ "object"], - "required": [], + "required": ["id","employeeId"], + "additionalProperties": true, "properties": { "id": { "type": ["int", "string"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 9e6ec74f93d8..aa065735a815 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -192,6 +192,10 @@ def parse_response( class EmployeesDirectoryStream(BambooHrStream): + """ + This is not currently in use as per + https://documentation.bamboohr.com/reference/get-employees-directory-1 + """ primary_key = "id" def parse_response( From a102f83d7107a6e935a4d4ec69f6b02e69840547 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Tue, 19 Mar 2024 14:42:26 -0400 Subject: [PATCH 09/21] More messing with the schemas. --- .../connectors/source-bamboo-hr/output.json | 31154 ---------------- .../schemas/custom_reports_stream.json | 3 +- .../schemas/employees_directory_stream.json | 2 + .../schemas/meta_fields_stream.json | 1 + .../schemas/meta_tables_stream.json | 11 +- .../schemas/tables_stream.json | 7 +- 6 files changed, 15 insertions(+), 31163 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-bamboo-hr/output.json diff --git a/airbyte-integrations/connectors/source-bamboo-hr/output.json b/airbyte-integrations/connectors/source-bamboo-hr/output.json deleted file mode 100644 index 17eee83f70b4..000000000000 --- a/airbyte-integrations/connectors/source-bamboo-hr/output.json +++ /dev/null @@ -1,31154 +0,0 @@ -{"type": "LOG", "log": {"level": "INFO", "message": "Starting syncing SourceBambooHr"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as STARTED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564550.3508, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "STARTED"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: meta_tables_stream "}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as RUNNING"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564720.6099, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "RUNNING"}}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "jobInfo", "fields": [{"id": 4047, "name": "Job Information: Date", "alias": "date", "type": "date"}, {"id": 18, "name": "Location", "alias": "location", "type": "list"}, {"id": 4, "name": "Department", "alias": "department", "type": "list"}, {"id": 1355, "name": "Division", "alias": "division", "type": "list"}, {"id": 17, "name": "Job Title", "alias": "jobTitle", "type": "list"}, {"id": 91, "name": "Reporting to", "alias": "reportsTo", "type": "employee"}]}, "emitted_at": 1710872564719}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employmentStatus", "fields": [{"id": 1936, "name": "Employment Status: Date", "alias": "date", "type": "date"}, {"id": 16, "name": "Employment Status", "alias": "employmentStatus", "type": "list"}, {"id": 4046, "name": "Employment status comments", "alias": "comment", "type": "textarea"}, {"id": 4314, "name": "Termination Reason", "alias": "terminationReasonId", "type": "list"}, {"id": 4313, "name": "Termination Type", "alias": "terminationTypeId", "type": "list"}, {"id": 4315, "name": "Eligible For Re-hire", "alias": "terminationRehireId", "type": "list"}, {"id": 4912, "name": "Regrettable or Non-Regrettable", "alias": "terminationRegrettableId", "type": "list"}]}, "emitted_at": 1710872564721}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "compensation", "fields": [{"id": 4021, "name": "Compensation: Date", "alias": "startDate", "type": "date"}, {"id": 19, "name": "Pay rate", "alias": "rate", "type": "currency"}, {"id": 156, "name": "Pay type", "alias": "type", "type": "pay_type"}, {"id": 4042, "name": "Overtime Status", "alias": "exempt", "type": "exempt"}, {"id": 4017, "name": "Compensation Change Reason", "alias": "reason", "type": "list"}, {"id": 4045, "name": "Compensation comments", "alias": "comment", "type": "textarea"}, {"id": 4330, "name": "Paid per", "alias": "paidPer", "type": "paid_per"}, {"id": 4386, "name": "Pay Schedule", "alias": "paySchedule", "type": "list"}, {"id": 4518, "name": "Overtime Rate", "alias": "overtimeRate", "type": "currency"}]}, "emitted_at": 1710872564721}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "dependents", "fields": [{"id": 1923, "name": "Dependent First Name", "alias": "firstName", "type": "text"}, {"id": 1925, "name": "Dependent Middle Name", "alias": "middleName", "type": "text"}, {"id": 1924, "name": "Dependent Last Name", "alias": "lastName", "type": "text"}, {"id": 1926, "name": "Dependent Relationship", "alias": "relationship", "type": "relationship"}, {"id": 1927, "name": "Dependent Gender", "alias": "gender", "type": "gender"}, {"id": 1929, "name": "Dependent Street 1", "alias": "addressLine1", "type": "text"}, {"id": 1930, "name": "Dependent Street 2", "alias": "addressLine2", "type": "text"}, {"id": 1933, "name": "Dependent SSN", "alias": "ssn", "type": "ssn"}, {"id": 1928, "name": "Dependent Birth Date", "alias": "dateOfBirth", "type": "date"}, {"id": 1931, "name": "Dependent City", "alias": "city", "type": "text"}, {"id": 1932, "name": "Dependent State", "alias": "state", "type": "state"}, {"id": 1935, "name": "Dependent Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 3992, "name": "Dependent Country", "alias": "country", "type": "country"}, {"id": 1934, "name": "Dependent ZIP", "alias": "zipcode", "type": "text"}]}, "emitted_at": 1710872564721}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "contacts", "fields": [{"id": 158, "name": "Emergency Contact Name", "alias": "name", "type": "text"}, {"id": 160, "name": "Emergency Contact Relationship", "alias": "relationship", "type": "list"}, {"id": 159, "name": "Emergency Contact Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 691, "name": "Emergency Contact Street 1", "alias": "addressLine1", "type": "text"}, {"id": 2124, "name": "Emergency Contact Street 2", "alias": "addressLine2", "type": "text"}, {"id": 693, "name": "Emergency Contact Mobile Phone", "alias": "mobilePhone", "type": "phone"}, {"id": 2123, "name": "Emergency Contact Email", "alias": "email", "type": "email"}, {"id": 689, "name": "Emergency Contact ZIP Code", "alias": "zipcode", "type": "text"}, {"id": 692, "name": "Emergency Contact City", "alias": "city", "type": "text"}, {"id": 690, "name": "Emergency Contact State", "alias": "state", "type": "state"}, {"id": 3993, "name": "Emergency Contact Country", "alias": "country", "type": "country"}, {"id": 4044, "name": "Emergency Contact Work Phone", "alias": "workPhone", "type": "phone"}, {"id": 4063, "name": "Emergency Contact Work Ext", "alias": "workPhoneExtension", "type": "text"}, {"id": 4289, "name": "Emergency Contact Primary", "alias": "primaryContact", "type": "checkbox"}]}, "emitted_at": 1710872564722}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "emergencyContacts", "fields": [{"id": 158, "name": "Emergency Contact Name", "alias": "name", "type": "text"}, {"id": 160, "name": "Emergency Contact Relationship", "alias": "relationship", "type": "list"}, {"id": 159, "name": "Emergency Contact Home Phone", "alias": "homePhone", "type": "phone"}, {"id": 691, "name": "Emergency Contact Street 1", "alias": "addressLine1", "type": "text"}, {"id": 2124, "name": "Emergency Contact Street 2", "alias": "addressLine2", "type": "text"}, {"id": 693, "name": "Emergency Contact Mobile Phone", "alias": "mobilePhone", "type": "phone"}, {"id": 2123, "name": "Emergency Contact Email", "alias": "email", "type": "email"}, {"id": 689, "name": "Emergency Contact ZIP Code", "alias": "zipcode", "type": "text"}, {"id": 692, "name": "Emergency Contact City", "alias": "city", "type": "text"}, {"id": 690, "name": "Emergency Contact State", "alias": "state", "type": "state"}, {"id": 3993, "name": "Emergency Contact Country", "alias": "country", "type": "country"}, {"id": 4044, "name": "Emergency Contact Work Phone", "alias": "workPhone", "type": "phone"}, {"id": 4063, "name": "Emergency Contact Work Ext", "alias": "workPhoneExtension", "type": "text"}, {"id": 4289, "name": "Emergency Contact Primary", "alias": "primaryContact", "type": "checkbox"}]}, "emitted_at": 1710872564722}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "earnings", "fields": [{"id": 4148, "name": "Earnings: Date", "alias": "date", "type": "date"}, {"id": 4149, "name": "Earnings: Prior Year W2/K1", "alias": "priorYear", "type": "currency"}]}, "emitted_at": 1710872564722}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "bonus", "fields": [{"id": 4151, "name": "Bonus: Date", "alias": "date", "type": "date"}, {"id": 4152, "name": "Bonus: Amount", "alias": "amount", "type": "currency"}, {"id": 4153, "name": "Bonus: Reason", "alias": "reason", "type": "list"}, {"id": 4154, "name": "Bonus: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564723}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "commission", "fields": [{"id": 4156, "name": "Commission: Date", "alias": "date", "type": "date"}, {"id": 4157, "name": "Commission: Amount", "alias": "amount", "type": "currency"}, {"id": 4158, "name": "Commission: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564723}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "benefit_class", "fields": [{"id": 4164, "name": "Benefit Class: Date", "alias": "date", "type": "date"}, {"id": 4165, "name": "Benefit Class: Class", "alias": "class", "type": "list"}, {"id": 4166, "name": "Benefit Class: Change Reason", "alias": "changeReason", "type": "list"}]}, "emitted_at": 1710872564723}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeVisas", "fields": [{"id": 4169, "name": "Visa:Date", "alias": "date", "type": "date"}, {"id": 4170, "name": "Visa", "alias": "visaType", "type": "list"}, {"id": 4171, "name": "Issuing country", "alias": "country", "type": "country"}, {"id": 4172, "name": "Issued", "alias": "issued", "type": "date"}, {"id": 4173, "name": "Expiration", "alias": "expires", "type": "date"}, {"id": 4174, "name": "Note", "alias": "note", "type": "text"}]}, "emitted_at": 1710872564723}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeEducation", "fields": [{"id": 4293, "name": "College/Institution", "alias": "school", "type": "text"}, {"id": 4297, "name": "Employee Education: Start Date", "alias": "startDate", "type": "date"}, {"id": 4298, "name": "Employee Education: End Date", "alias": "endDate", "type": "date"}, {"id": 4294, "name": "Degree", "alias": "degree", "type": "list"}, {"id": 4295, "name": "Major/Specialization", "alias": "major", "type": "text"}, {"id": 4296, "name": "GPA", "alias": "gpa", "type": "text"}]}, "emitted_at": 1710872564723}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeePassports", "fields": [{"id": 4391, "name": "Passport Number", "alias": "passportNumber", "type": "passport_number"}, {"id": 4392, "name": "Passport: Issued Date", "alias": "issuedDate", "type": "passport_issued"}, {"id": 4393, "name": "Passport: Expiry Date", "alias": "expiryDate", "type": "passport_expiry"}, {"id": 4396, "name": "Issuing Country", "alias": "issuingCountry", "type": "country"}]}, "emitted_at": 1710872564724}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeDriverLicenses", "fields": [{"id": 4532, "name": "Driver License: #", "alias": "license", "type": "text"}, {"id": 4533, "name": "Driver License: State", "alias": "state", "type": "state"}, {"id": 4534, "name": "Driver License: Expiration", "alias": "expirationDate", "type": "date"}, {"id": 4535, "name": "Driver License: Classification", "alias": "driverClassification", "type": "list"}, {"id": 4536, "name": "Driver License: DMV Violations ", "alias": "dmvViolations", "type": "int"}]}, "emitted_at": 1710872564724}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCertifications", "fields": [{"id": 4538, "name": "Certifications: Title", "alias": "title", "type": "list"}, {"id": 4539, "name": "Certifications: Completion Date", "alias": "completionDate", "type": "date"}, {"id": 4540, "name": "Certifications: Number", "alias": "certificationNumber", "type": "text"}, {"id": 4541, "name": "Certifications: Expiration Date", "alias": "expirationDate", "type": "date"}, {"id": 4542, "name": "Certifications: Notes", "alias": "notes", "type": "textarea"}]}, "emitted_at": 1710872564724}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeStockOptions", "fields": [{"id": 4544, "name": "Stock Options: Grant Date", "alias": "grantDate", "type": "date"}, {"id": 4545, "name": "Stock Options: # Options Granted", "alias": "numberOptionsGranted", "type": "text"}, {"id": 4546, "name": "Stock Options: Option Price", "alias": "optionPrice", "type": "currency"}, {"id": 4547, "name": "Stock Options: Vesting Date", "alias": "vestingDate", "type": "date"}, {"id": 4548, "name": "Stock Options: Plan", "alias": "plan", "type": "list"}, {"id": 4549, "name": "Stock Options: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564724}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeAssets", "fields": [{"id": 4551, "name": "Assets: Category", "alias": "category", "type": "list"}, {"id": 4552, "name": "Assets: Description", "alias": "description", "type": "text"}, {"id": 4553, "name": "Assets: Serial Number", "alias": "serialNumber", "type": "text"}, {"id": 4554, "name": "Assets: Date Loaned", "alias": "dateLoaned", "type": "date"}, {"id": 4555, "name": "Assets: Date Returned", "alias": "dateReturned", "type": "date"}, {"id": 4556, "name": "Assets: Cost", "alias": "cost", "type": "currency"}, {"id": 4557, "name": "Assets: Notes", "alias": "notes", "type": "text"}]}, "emitted_at": 1710872564724}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCreditCards", "fields": [{"id": 4380, "name": "Card Type", "alias": "cardType", "type": "list"}, {"id": 4382, "name": "Card #", "alias": "numberLast4", "type": "text"}, {"id": 4383, "name": "Expiration Month", "alias": "expirationMonth", "type": "expiration_month"}, {"id": 4384, "name": "Expiration Year", "alias": "expirationYear", "type": "expiration_year"}, {"id": 4385, "name": "Limit", "alias": "cardLimit", "type": "currency"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidTests", "fields": [{"id": 4614, "name": "Testing Tracker: Test Date", "alias": "testDate", "type": "date"}, {"id": 4615, "name": "Testing Tracker: Results", "alias": "results", "type": "list"}, {"id": 4616, "name": "Testing Tracker: Test Type", "alias": "testType", "type": "list"}, {"id": 4617, "name": "Testing Tracker: Testing Reason", "alias": "testingReason", "type": "list"}, {"id": 4618, "name": "Testing Tracker: Confirmed by HR", "alias": "confirmedByHr", "type": "checkbox"}, {"id": 4619, "name": "Testing Tracker: Office Eligibility", "alias": "officeEligibility", "type": "checkbox"}, {"id": 4620, "name": "Testing Tracker: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidVaccinations", "fields": [{"id": 4622, "name": "Vaccination History: Vaccination Status", "alias": "vaccinationStatus", "type": "list"}, {"id": 4623, "name": "Vaccination History: Administration Date", "alias": "administrationDate", "type": "date"}, {"id": 4624, "name": "Vaccination History: Vaccine Received", "alias": "vaccineReceived", "type": "list"}, {"id": 4625, "name": "Vaccination History: Dosage", "alias": "dosage", "type": "list"}, {"id": 4626, "name": "Vaccination History: Verified", "alias": "verified", "type": "checkbox"}, {"id": 4627, "name": "Vaccination History: Date Verified", "alias": "dateVerified", "type": "date"}, {"id": 4628, "name": "Vaccination History: Office Eligible Date", "alias": "officeEligibleDate", "type": "date"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidVaccinationExemptions", "fields": [{"id": 4630, "name": "Vaccination Exemptions: Exemption Date", "alias": "exemptionDate", "type": "date"}, {"id": 4631, "name": "Vaccination Exemptions: Exemption Reason", "alias": "exemptionReason", "type": "list"}, {"id": 4632, "name": "Vaccination Exemptions: Exemption Documentation Collected", "alias": "exemptionDocumentationCollected", "type": "checkbox"}, {"id": 4633, "name": "Vaccination Exemptions: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeCovidExposures", "fields": [{"id": 4635, "name": "Exposure Tracker: Exposure Date", "alias": "exposureDate", "type": "date"}, {"id": 4636, "name": "Exposure Tracker: Vaccination Status", "alias": "vaccinationStatus", "type": "list"}, {"id": 4637, "name": "Exposure Tracker: Notified", "alias": "notified", "type": "checkbox"}, {"id": 4638, "name": "Exposure Tracker: Comments", "alias": "comments", "type": "textarea"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeEquityGrants", "fields": [{"id": 4933, "name": "Equity: Grant Type", "alias": "grantTypeId", "type": "list"}, {"id": 4934, "name": "Equity: Custom Grant Type Name", "alias": "customGrantTypeName", "type": "text"}, {"id": 4931, "name": "Equity: Grant Date", "alias": "grantDate", "type": "date"}, {"id": 4932, "name": "Equity: Vesting Start Date", "alias": "vestingStartDate", "type": "date"}, {"id": 4935, "name": "Equity: # of Equity Granted", "alias": "numberOfEquityGranted", "type": "int"}, {"id": 4936, "name": "Equity: Strike Price", "alias": "strikePrice", "type": "currency"}, {"id": 4937, "name": "Equity: Vesting Schedule", "alias": "vestingScheduleTypeId", "type": "list"}, {"id": 4938, "name": "Equity: Vesting Months", "alias": "vestingMonths", "type": "int"}, {"id": 4939, "name": "Equity: Cliff Months", "alias": "cliffMonths", "type": "int"}]}, "emitted_at": 1710872564725}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "levelsAndBands", "fields": [{"id": 5020, "name": "Levels and Bands: Name", "alias": "name", "type": "text"}, {"id": 5021, "name": "Levels and Bands: Mid", "alias": "mid", "type": "int"}, {"id": 5022, "name": "Levels and Bands: Low", "alias": "low", "type": "int"}, {"id": 5023, "name": "Levels and Bands: High", "alias": "high", "type": "int"}, {"id": 5024, "name": "Levels and Bands: Currency Code", "alias": "currencyCode", "type": "text"}, {"id": 5025, "name": "Levels and Bands: Percentage Range", "alias": "percentageRange", "type": "percentage"}, {"id": 5026, "name": "Levels and Bands: Compensation Type", "alias": "compensationType", "type": "text"}]}, "emitted_at": 1710872564726}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "employeeProjectPayRates", "fields": [{"id": 5068, "name": "Project Pay Rates: Start Date", "alias": "startDate", "type": "date"}, {"id": 5069, "name": "Project Pay Rates: End Date", "alias": "endDate", "type": "date"}, {"id": 5070, "name": "Project Pay Rates: Project or Task Name", "alias": "projectTask", "type": "project_task"}, {"id": 5071, "name": "Project Pay Rates: Pay Rate", "alias": "payRate", "type": "currency"}, {"id": 5072, "name": "Project Pay Rates: Comment", "alias": "comment", "type": "textarea"}]}, "emitted_at": 1710872564726}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customBonus", "fields": [{"id": 4483, "name": "Spot Bonus - Date", "alias": "customDate", "type": "date"}, {"id": 4484, "name": "Spot Bonus: Amount", "alias": "customAmount", "type": "currency"}, {"id": 4485, "name": "Bonus Reason", "alias": "customBonusReason", "type": "list"}, {"id": 4486, "name": "Spot Bonus: Comment", "alias": "customComment", "type": "textarea"}]}, "emitted_at": 1710872564726}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customTargetVariable", "fields": [{"id": 4488, "name": "Target Variable - Date", "alias": "customDate1", "type": "date"}, {"id": 4489, "name": "Target Variable: Amount", "alias": "customAmount1", "type": "currency"}, {"id": 4490, "name": "Target Variable Reason", "alias": "customTargetVariableReason", "type": "list"}, {"id": 4491, "name": "Target Variable: Comment", "alias": "customComment1", "type": "textarea"}, {"id": 4568, "name": "Target Variable: Change Reason", "alias": "customChangeReason", "type": "list"}]}, "emitted_at": 1710872564726}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAdditionalJobInformation", "fields": [{"id": 4497, "name": "Effective Date - Additional Job Information", "alias": "customEffectiveDate", "type": "date"}, {"id": 4498, "name": "Division #", "alias": "customDepartment#", "type": "list"}, {"id": 4499, "name": "Team Name", "alias": "customJobCode", "type": "list"}, {"id": 4500, "name": "Entity", "alias": "customHRTitle", "type": "list"}, {"id": 4561, "name": "Headcount", "alias": "customHeadcount", "type": "list"}, {"id": 4650, "name": "E-staff", "alias": "customE-staff", "type": "employee"}, {"id": 4901, "name": "Job Change Reason", "alias": "customJobChangeReason", "type": "text"}, {"id": 5074, "name": "Position #", "alias": "customPosition", "type": "list"}]}, "emitted_at": 1710872564726}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAssets", "fields": [{"id": 4507, "name": "Asset category", "alias": "customAssetcategory", "type": "list"}, {"id": 4508, "name": "Asset description", "alias": "customAssetdescription", "type": "text"}, {"id": 4509, "name": "Serial #", "alias": "customSerial#", "type": "text"}, {"id": 4510, "name": "Date loaned", "alias": "customDateloaned", "type": "date"}, {"id": 4511, "name": "Date returned", "alias": "customDatereturned", "type": "date"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customStockOptions", "fields": [{"id": 4606, "name": "Effective Date - Stock Options", "alias": "customEffectiveDate1", "type": "date"}, {"id": 4608, "name": "Stock Options: Change Reason", "alias": "customChangeReason1", "type": "list"}, {"id": 4609, "name": "Stock Options: Amount", "alias": "customAmount2", "type": "int"}, {"id": 4765, "name": "Stock Options: Comment", "alias": "customComment2", "type": "text"}, {"id": 5076, "name": "Stock Options: Date Added", "alias": "customDateAdded", "type": "date"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customJobLeveling", "fields": [{"id": 4852, "name": "Corporate Job Level", "alias": "customCorporateJobLevel", "type": "list"}, {"id": 4855, "name": "Effective Date - Job Leveling", "alias": "customEffectiveDate-JobLeveling", "type": "date"}, {"id": 4856, "name": "Corporate Title", "alias": "customCorporateTitle", "type": "list"}, {"id": 4860, "name": "Comments", "alias": "customComments1", "type": "textarea"}, {"id": 4863, "name": "Benchmark Code", "alias": "customBenchmarkCode", "type": "text"}, {"id": 4913, "name": "Corporate Career Path", "alias": "customCorporateCareerPath", "type": "list"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customSalesJobInformation", "fields": [{"id": 4965, "name": "Effective Date - Sales", "alias": "customEffectiveDate-Sales", "type": "date"}, {"id": 4966, "name": "MBO", "alias": "customMBO", "type": "list"}, {"id": 4967, "name": "% Sales Commissions", "alias": "custom%SalesCommissions", "type": "textarea"}, {"id": 4968, "name": "% Variable Bonus", "alias": "custom%VariableBonus", "type": "textarea"}, {"id": 4969, "name": "Non-Recoverable Draw", "alias": "customNon-RecoverableDraw", "type": "list"}, {"id": 4970, "name": "Non-Recoverable Draw Monthly Amount", "alias": "customNon-RecoverableDrawMonthlyAmount", "type": "currency"}, {"id": 4971, "name": "Non-Recoverable Draw Total Amount", "alias": "customNon-RecoverableDrawTotalAmount", "type": "currency"}, {"id": 4974, "name": "Recoverable Draw", "alias": "customRecoverableDraw", "type": "list"}, {"id": 4975, "name": "Recoverable Draw Monthly Amount", "alias": "customRecoverableDrawMonthlyAmount", "type": "currency"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customTemporaryHireInformation", "fields": [{"id": 4999, "name": "Effective Date - Non-Employee", "alias": "customEffectiveDate-TemporaryHire", "type": "date"}, {"id": 5000, "name": "Non-Employee Type", "alias": "customTemporaryHireType", "type": "list"}, {"id": 5001, "name": "Agency Name", "alias": "customAgencyName", "type": "text"}, {"id": 5002, "name": "Anticipated End Date", "alias": "customAnticipatedEndDate", "type": "date"}, {"id": 5066, "name": "Notice Requirement", "alias": "customNoticeRequirement", "type": "textarea"}, {"id": 5067, "name": "Comments - Non-Employee", "alias": "customCommentsNonEmployee", "type": "textarea"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customContractExceptions", "fields": [{"id": 5085, "name": "Prior Inventions", "alias": "customPriorInventions", "type": "list"}, {"id": 5087, "name": "Guaranteed Severance", "alias": "customGuaranteedSeverance1", "type": "list"}, {"id": 5088, "name": "Vesting Acceleration", "alias": "customVestingAcceleration1", "type": "list"}, {"id": 5089, "name": "Notes", "alias": "customNotes", "type": "textarea"}, {"id": 5090, "name": "Post Term Obligations", "alias": "customPostTermObligations", "type": "textarea"}, {"id": 5104, "name": "Effective Date - Contract Exceptions", "alias": "customEffectiveDateContractExceptions", "type": "date"}]}, "emitted_at": 1710872564727}} -{"type": "RECORD", "record": {"stream": "meta_tables_stream", "data": {"alias": "customAuraRoles", "fields": [{"id": 5110, "name": "Effective Date", "alias": "customEffectiveDate2", "type": "date"}, {"id": 5111, "name": "Aura Role Indicator", "alias": "customAuraRoleIndicator", "type": "list"}, {"id": 5112, "name": "Aura Role", "alias": "customAuraRole4", "type": "list"}, {"id": 5113, "name": "Changed By", "alias": "customChangedBy", "type": "list"}, {"id": 5114, "name": "Change Reason", "alias": "customChangeReason2", "type": "text"}]}, "emitted_at": 1710872564728}} -{"type": "LOG", "log": {"level": "INFO", "message": "Read 35 records from meta_tables_stream stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_tables_stream as STOPPED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872564728.6602, "stream_status": {"stream_descriptor": {"name": "meta_tables_stream", "namespace": null}, "status": "COMPLETE"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing meta_tables_stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream meta_tables_stream 0:00:00.390416"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as STARTED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872565059.883, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "STARTED"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: custom_reports_stream "}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as RUNNING"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872565472.272, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "RUNNING"}}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872565471}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Full-Time to Part-Time", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "payRateEffectiveDate": "2014-12-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "payRateEffectiveDate": "2019-10-16", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Market Adj", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "payRateEffectiveDate": "2024-01-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "G&A"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Solutions Eng (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "payRateEffectiveDate": "2022-02-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "payRateEffectiveDate": "2021-10-15", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "payRateEffectiveDate": "2018-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "payRateEffectiveDate": "2019-12-15", "payChangeReason": "Market Adj", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "payRateEffectiveDate": "2018-09-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "payRateEffectiveDate": "2018-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "payRateEffectiveDate": "2019-01-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "payRateEffectiveDate": "2019-01-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "payRateEffectiveDate": "2019-01-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "payRateEffectiveDate": "2021-01-25", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "payRateEffectiveDate": "2019-04-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "payRateEffectiveDate": "2019-05-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "payRateEffectiveDate": "2019-05-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "payRateEffectiveDate": "2019-06-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "payRateEffectiveDate": "2019-06-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "payRateEffectiveDate": "2019-07-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "payRateEffectiveDate": "2019-07-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Aura Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "payRateEffectiveDate": "2019-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "payRateEffectiveDate": "2019-10-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "payRateEffectiveDate": "2018-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "payRateEffectiveDate": "2021-03-07", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "payRateEffectiveDate": "2020-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "payRateEffectiveDate": "2020-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "payRateEffectiveDate": "2019-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "payRateEffectiveDate": "2017-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "payRateEffectiveDate": "2018-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "payRateEffectiveDate": "2017-11-06", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "payRateEffectiveDate": "2019-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "payRateEffectiveDate": "2020-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "payRateEffectiveDate": "2019-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "payRateEffectiveDate": "2019-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "payRateEffectiveDate": "2017-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "payRateEffectiveDate": "2019-11-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "payRateEffectiveDate": "2019-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "payRateEffectiveDate": "2021-08-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "payRateEffectiveDate": "2023-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "payRateEffectiveDate": "2019-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "payRateEffectiveDate": "2017-05-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "payRateEffectiveDate": "2019-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "payRateEffectiveDate": "2020-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "payRateEffectiveDate": "2018-05-07", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "payRateEffectiveDate": "2018-05-14", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "payRateEffectiveDate": "2018-09-24", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "payRateEffectiveDate": "2023-09-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "payRateEffectiveDate": "2019-01-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "payRateEffectiveDate": "2019-02-04", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "payRateEffectiveDate": "2020-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "payRateEffectiveDate": "2019-02-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "payRateEffectiveDate": "2019-04-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "payRateEffectiveDate": "2019-05-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "payRateEffectiveDate": "2019-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "payRateEffectiveDate": "2020-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "payRateEffectiveDate": "2019-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "payRateEffectiveDate": "2022-11-14", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "payRateEffectiveDate": "2021-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": null}, "emitted_at": 1710872567059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "payRateEffectiveDate": "2019-04-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "payRateEffectiveDate": "2019-06-02", "payChangeReason": null, "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "payRateEffectiveDate": "2019-06-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "payRateEffectiveDate": "2017-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "payRateEffectiveDate": "2013-08-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "payRateEffectiveDate": "2009-11-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "payRateEffectiveDate": "2018-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "payRateEffectiveDate": "2018-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "payRateEffectiveDate": "2011-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "payRateEffectiveDate": "2011-05-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "payRateEffectiveDate": "2011-09-20", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "payRateEffectiveDate": "2011-10-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "payRateEffectiveDate": "2013-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "payRateEffectiveDate": "2012-09-24", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "payRateEffectiveDate": "2012-11-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "payRateEffectiveDate": "2013-01-28", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "payRateEffectiveDate": "2014-01-02", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "payRateEffectiveDate": "2017-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "payRateEffectiveDate": "2014-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "payRateEffectiveDate": "2014-05-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "payRateEffectiveDate": "2014-10-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "payRateEffectiveDate": "2015-01-05", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "payRateEffectiveDate": "2015-10-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "payRateEffectiveDate": "2015-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "payRateEffectiveDate": "2015-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "payRateEffectiveDate": "2016-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Support Eng (EMEA)", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "payRateEffectiveDate": "2017-11-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "payRateEffectiveDate": "2016-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "payRateEffectiveDate": "2016-06-06", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "payRateEffectiveDate": "2017-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "payRateEffectiveDate": "2017-01-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "payRateEffectiveDate": "2018-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "payRateEffectiveDate": "2017-03-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "payRateEffectiveDate": "2017-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "payRateEffectiveDate": "2017-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "payRateEffectiveDate": "2017-04-03", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "payRateEffectiveDate": "2017-04-17", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "payRateEffectiveDate": "2017-07-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "payRateEffectiveDate": "2017-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "payRateEffectiveDate": "2019-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "payRateEffectiveDate": "2017-09-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "payRateEffectiveDate": "2017-10-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Pre-Sales Eng (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "payRateEffectiveDate": "2017-10-03", "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "payRateEffectiveDate": "2017-10-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "payRateEffectiveDate": "2017-11-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "payRateEffectiveDate": "2018-01-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "payRateEffectiveDate": "2018-01-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "payRateEffectiveDate": "2018-02-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "payRateEffectiveDate": "2018-03-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "payRateEffectiveDate": "2018-03-26", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "payRateEffectiveDate": "2018-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "payRateEffectiveDate": "2018-06-11", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "payRateEffectiveDate": "2018-06-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "PS Consulting-US", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "payRateEffectiveDate": "2018-06-18", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "payRateEffectiveDate": "2019-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "payRateEffectiveDate": "2018-07-16", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing (EMEA)", "division": null}, "emitted_at": 1710872567067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "payRateEffectiveDate": "2018-08-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Dev Relations - EMEA", "division": null}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "payRateEffectiveDate": "2019-03-25", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "payRateEffectiveDate": "2019-04-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": null}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "payRateEffectiveDate": "2019-07-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "G&A - Finance/Admin (EMEA)", "division": null}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "payRateEffectiveDate": "2020-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "payRateEffectiveDate": "2020-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "payRateEffectiveDate": "2019-12-10", "payChangeReason": null, "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "payRateEffectiveDate": "2019-10-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "G&A"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "payRateEffectiveDate": "2021-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "payRateEffectiveDate": "2019-11-11", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "payRateEffectiveDate": "2020-01-21", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales (US)", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "payRateEffectiveDate": "2019-12-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Analytics", "division": "G&A"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "payRateEffectiveDate": "2020-02-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "payRateEffectiveDate": "2020-01-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "payRateEffectiveDate": "2017-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "payRateEffectiveDate": "2020-03-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "payRateEffectiveDate": "2020-04-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "payRateEffectiveDate": "2020-03-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "payRateEffectiveDate": "2019-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "payRateEffectiveDate": "2020-04-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "payRateEffectiveDate": "2021-07-21", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "payRateEffectiveDate": "2023-11-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "payRateEffectiveDate": "2021-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "payRateEffectiveDate": "2021-10-28", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "payRateEffectiveDate": "2020-07-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "payRateEffectiveDate": "2020-06-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "G&A"}, "emitted_at": 1710872567074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "payRateEffectiveDate": "2020-09-15", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "payRateEffectiveDate": "2020-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "payRateEffectiveDate": "2023-08-26", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "payRateEffectiveDate": "2023-12-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "payRateEffectiveDate": "2020-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "payRateEffectiveDate": "2020-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "payRateEffectiveDate": "2021-02-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "payRateEffectiveDate": "2020-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "payRateEffectiveDate": "2023-05-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "payRateEffectiveDate": "2020-10-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "payRateEffectiveDate": "2020-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "payRateEffectiveDate": "2021-08-21", "payChangeReason": "Full-Time to Part-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "payRateEffectiveDate": "2020-11-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "payRateEffectiveDate": "2020-11-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "payRateEffectiveDate": "2021-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "payRateEffectiveDate": "2020-11-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "payRateEffectiveDate": "2022-01-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "payRateEffectiveDate": "2020-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "payRateEffectiveDate": "2024-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "payRateEffectiveDate": "2023-09-18", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "payRateEffectiveDate": "2021-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "E-Staff", "division": "G&A"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "payRateEffectiveDate": "2020-12-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "payRateEffectiveDate": "2021-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "payRateEffectiveDate": "2021-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "payRateEffectiveDate": "2021-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "payRateEffectiveDate": "2021-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "payRateEffectiveDate": "2021-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "payRateEffectiveDate": "2021-04-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Aura Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "payRateEffectiveDate": "2021-03-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "payRateEffectiveDate": "2021-09-09", "payChangeReason": null, "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "payRateEffectiveDate": "2021-03-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "payRateEffectiveDate": "2021-03-22", "payChangeReason": null, "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "payRateEffectiveDate": "2021-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "payRateEffectiveDate": "2021-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "payRateEffectiveDate": "2022-02-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "payRateEffectiveDate": "2021-04-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "payRateEffectiveDate": "2021-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "payRateEffectiveDate": "2021-06-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "payRateEffectiveDate": "2020-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "payRateEffectiveDate": "2021-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "payRateEffectiveDate": "2021-05-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "payRateEffectiveDate": "2021-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "payRateEffectiveDate": "2021-07-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "payRateEffectiveDate": "2021-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "payRateEffectiveDate": "2021-06-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "payRateEffectiveDate": "2021-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "payRateEffectiveDate": "2021-05-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "payRateEffectiveDate": "2021-06-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "payRateEffectiveDate": "2021-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "payRateEffectiveDate": "2021-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "payRateEffectiveDate": "2021-07-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "payRateEffectiveDate": "2021-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "payRateEffectiveDate": "2021-07-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "payRateEffectiveDate": "2022-06-07", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "payRateEffectiveDate": "2021-08-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "payRateEffectiveDate": "2021-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "payRateEffectiveDate": "2021-07-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "payRateEffectiveDate": "2021-08-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "payRateEffectiveDate": "2021-07-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "payRateEffectiveDate": "2021-07-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "payRateEffectiveDate": "2021-08-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "payRateEffectiveDate": "2021-08-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "payRateEffectiveDate": "2021-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "payRateEffectiveDate": "2021-08-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "payRateEffectiveDate": "2023-08-14", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "payRateEffectiveDate": "2021-09-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "payRateEffectiveDate": "2022-01-04", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "payRateEffectiveDate": "2021-09-08", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "payRateEffectiveDate": "2021-09-27", "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "payRateEffectiveDate": "2021-09-13", "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "payRateEffectiveDate": "2021-10-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "payRateEffectiveDate": "2021-09-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Solutions", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "payRateEffectiveDate": "2021-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "payRateEffectiveDate": "2021-11-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "payRateEffectiveDate": "2021-09-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "payRateEffectiveDate": "2021-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "payRateEffectiveDate": "2021-10-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "payRateEffectiveDate": "2021-10-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "payRateEffectiveDate": "2021-10-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "payRateEffectiveDate": "2023-03-13", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "payRateEffectiveDate": "2023-03-13", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "payRateEffectiveDate": "2021-10-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "payRateEffectiveDate": "2021-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "payRateEffectiveDate": "2022-01-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "payRateEffectiveDate": "2022-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "payRateEffectiveDate": "2021-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "payRateEffectiveDate": "2022-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "payRateEffectiveDate": "2022-01-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "payRateEffectiveDate": "2021-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "payRateEffectiveDate": "2022-01-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "payRateEffectiveDate": "2022-01-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "payRateEffectiveDate": "2023-10-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "payRateEffectiveDate": "2022-04-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Analytics", "division": "G&A"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "payRateEffectiveDate": "2022-02-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "payRateEffectiveDate": "2022-02-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "payRateEffectiveDate": "2022-03-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "payRateEffectiveDate": "2022-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "payRateEffectiveDate": "2022-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "payRateEffectiveDate": "2022-02-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "payRateEffectiveDate": "2022-02-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "payRateEffectiveDate": "2022-04-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "payRateEffectiveDate": "2022-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "payRateEffectiveDate": "2023-05-30", "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "payRateEffectiveDate": "2022-02-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "payRateEffectiveDate": "2022-03-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Human Resources", "division": "G&A"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "payRateEffectiveDate": "2022-05-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "payRateEffectiveDate": "2022-04-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "payRateEffectiveDate": "2022-06-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "payRateEffectiveDate": "2022-04-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "payRateEffectiveDate": "2022-04-04", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "payRateEffectiveDate": "2022-03-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "payRateEffectiveDate": "2022-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "payRateEffectiveDate": "2022-04-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "payRateEffectiveDate": "2022-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "payRateEffectiveDate": "2022-04-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "payRateEffectiveDate": "2022-05-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "payRateEffectiveDate": "2022-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "payRateEffectiveDate": "2022-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "payRateEffectiveDate": "2022-04-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "payRateEffectiveDate": "2023-02-21", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "payRateEffectiveDate": "2023-06-01", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "payRateEffectiveDate": "2022-06-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "payRateEffectiveDate": "2022-05-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Job Evaluation", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "payRateEffectiveDate": "2022-06-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "payRateEffectiveDate": "2022-05-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "payRateEffectiveDate": "2022-07-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Comp Adjustment", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "payRateEffectiveDate": "2022-06-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "payRateEffectiveDate": "2023-01-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "payRateEffectiveDate": "2022-06-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "payRateEffectiveDate": "2023-07-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "payRateEffectiveDate": "2023-06-27", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Facilities", "division": "G&A"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "payRateEffectiveDate": "2022-07-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "payRateEffectiveDate": "2022-06-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "payRateEffectiveDate": "2022-06-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "payRateEffectiveDate": "2022-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "payRateEffectiveDate": "2022-07-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "payRateEffectiveDate": "2022-07-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "payRateEffectiveDate": "2022-06-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "payRateEffectiveDate": "2022-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "payRateEffectiveDate": "2022-08-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "payRateEffectiveDate": "2022-07-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "payRateEffectiveDate": "2022-10-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "payRateEffectiveDate": "2022-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "payRateEffectiveDate": "2022-08-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "payRateEffectiveDate": "2023-11-16", "payChangeReason": "Transfer", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "payRateEffectiveDate": "2022-08-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "payRateEffectiveDate": "2022-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "payRateEffectiveDate": "2022-08-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "payRateEffectiveDate": "2022-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "payRateEffectiveDate": "2022-08-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "payRateEffectiveDate": "2023-08-07", "payChangeReason": "Re-hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "payRateEffectiveDate": "2022-10-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "payRateEffectiveDate": "2022-10-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "payRateEffectiveDate": "2022-08-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "payRateEffectiveDate": "2022-08-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "payRateEffectiveDate": "2022-09-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "payRateEffectiveDate": "2022-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "payRateEffectiveDate": "2022-09-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "payRateEffectiveDate": "2022-09-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "payRateEffectiveDate": "2022-09-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "payRateEffectiveDate": "2022-10-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "payRateEffectiveDate": "2022-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "payRateEffectiveDate": "2022-09-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "payRateEffectiveDate": "2022-12-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "payRateEffectiveDate": "2021-09-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "payRateEffectiveDate": "2022-10-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "payRateEffectiveDate": "2023-01-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "payRateEffectiveDate": "2023-10-23", "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "payRateEffectiveDate": "2022-10-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "payRateEffectiveDate": "2023-01-01", "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "payRateEffectiveDate": "2022-10-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "payRateEffectiveDate": "2022-10-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "payRateEffectiveDate": "2023-01-01", "payChangeReason": "Merit", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "payRateEffectiveDate": "2022-11-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "payRateEffectiveDate": "2022-11-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "payRateEffectiveDate": "2022-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "payRateEffectiveDate": "2022-12-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "payRateEffectiveDate": "2022-12-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "payRateEffectiveDate": "2023-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "payRateEffectiveDate": "2022-11-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "payRateEffectiveDate": "2023-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "payRateEffectiveDate": "2023-01-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "payRateEffectiveDate": "2023-01-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "payRateEffectiveDate": "2022-12-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "payRateEffectiveDate": "2023-11-24", "payChangeReason": "Promotion", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "payRateEffectiveDate": "2023-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "payRateEffectiveDate": "2022-12-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "payRateEffectiveDate": "2022-12-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "payRateEffectiveDate": "2023-02-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "payRateEffectiveDate": "2022-12-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "payRateEffectiveDate": "2023-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "payRateEffectiveDate": "2023-01-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "payRateEffectiveDate": "2023-01-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "payRateEffectiveDate": "2023-02-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "Adjustment", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "payRateEffectiveDate": "2023-02-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "payRateEffectiveDate": "2023-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "payRateEffectiveDate": "2023-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "payRateEffectiveDate": "2023-01-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "payRateEffectiveDate": "2023-01-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "payRateEffectiveDate": "2023-02-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "payRateEffectiveDate": "2023-01-30", "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "payRateEffectiveDate": "2023-02-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "payRateEffectiveDate": "2023-02-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "payRateEffectiveDate": "2023-02-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "payRateEffectiveDate": "2023-05-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "payRateEffectiveDate": "2023-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "payRateEffectiveDate": "2023-02-20", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "payRateEffectiveDate": "2023-03-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "payRateEffectiveDate": "2023-04-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "E-Staff", "division": "R&D"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "payRateEffectiveDate": "2023-06-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "payRateEffectiveDate": "2023-03-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "payRateEffectiveDate": "2023-04-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "payRateEffectiveDate": "2023-03-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "payRateEffectiveDate": "2023-03-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "payRateEffectiveDate": "2023-04-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "payRateEffectiveDate": "2023-04-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "payRateEffectiveDate": "2023-05-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "payRateEffectiveDate": "2023-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "payRateEffectiveDate": "2023-04-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "payRateEffectiveDate": "2023-04-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "Conversion", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "payRateEffectiveDate": "2023-05-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Self Serve Growth", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "payRateEffectiveDate": "2023-07-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "payRateEffectiveDate": "2023-05-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "payRateEffectiveDate": "2023-05-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "payRateEffectiveDate": "2023-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "payRateEffectiveDate": "2023-06-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "payRateEffectiveDate": "2023-06-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "payRateEffectiveDate": "2023-06-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "payRateEffectiveDate": "2024-03-05", "payChangeReason": "Intern to Full-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "payRateEffectiveDate": "2023-07-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "payRateEffectiveDate": "2023-05-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "payRateEffectiveDate": "2023-06-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "payRateEffectiveDate": "2023-06-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "payRateEffectiveDate": "2023-05-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "payRateEffectiveDate": "2023-05-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "payRateEffectiveDate": "2023-06-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "payRateEffectiveDate": "2023-04-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "payRateEffectiveDate": "2023-06-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "payRateEffectiveDate": "2023-07-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "payRateEffectiveDate": "2023-06-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "payRateEffectiveDate": "2023-07-17", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "payRateEffectiveDate": "2023-07-10", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "payRateEffectiveDate": "2023-08-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "payRateEffectiveDate": "2023-07-24", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "payRateEffectiveDate": "2023-07-31", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "payRateEffectiveDate": "2023-08-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "payRateEffectiveDate": "2023-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "payRateEffectiveDate": "2024-02-05", "payChangeReason": "Intern to Full-Time", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "payRateEffectiveDate": "2023-08-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Business Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "payRateEffectiveDate": "2023-08-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "payRateEffectiveDate": "2023-09-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "payRateEffectiveDate": "2023-08-21", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "payRateEffectiveDate": "2023-08-28", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "payRateEffectiveDate": "2023-09-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "payRateEffectiveDate": "2023-09-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "payRateEffectiveDate": "2023-09-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "payRateEffectiveDate": "2023-10-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "payRateEffectiveDate": "2023-09-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "payRateEffectiveDate": "2023-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "payRateEffectiveDate": "2023-09-25", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "payRateEffectiveDate": "2023-10-09", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "payRateEffectiveDate": "2023-10-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "payRateEffectiveDate": "2023-11-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Legal", "division": "G&A"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "payRateEffectiveDate": "2023-10-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "payRateEffectiveDate": "2023-10-23", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "payRateEffectiveDate": "2023-11-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Renewals", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "payRateEffectiveDate": "2023-11-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "payRateEffectiveDate": "2023-11-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "payRateEffectiveDate": "2023-11-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "payRateEffectiveDate": "2023-10-30", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "payRateEffectiveDate": "2023-11-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "payRateEffectiveDate": "2023-11-20", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "payRateEffectiveDate": "2024-01-03", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "payRateEffectiveDate": "2023-11-27", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Information Technology", "division": "G&A"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "payRateEffectiveDate": "2023-12-13", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "payRateEffectiveDate": "2023-12-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "payRateEffectiveDate": "2023-12-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "payRateEffectiveDate": "2023-11-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "payRateEffectiveDate": "2024-03-07", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "payRateEffectiveDate": "2023-12-06", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Aura", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "payRateEffectiveDate": "2023-12-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "payRateEffectiveDate": "2024-01-02", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "payRateEffectiveDate": "2023-12-14", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "payRateEffectiveDate": "2024-01-08", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "payRateEffectiveDate": "2024-01-15", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "payRateEffectiveDate": "2024-01-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Aura", "division": "R&D"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "payRateEffectiveDate": "2024-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "payRateEffectiveDate": "2024-01-22", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "payRateEffectiveDate": "2024-01-16", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "payRateEffectiveDate": "2024-01-29", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "payRateEffectiveDate": "2024-02-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "payRateEffectiveDate": "2024-02-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "payRateEffectiveDate": "2024-02-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "payRateEffectiveDate": "2024-02-19", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Recruiting", "division": "G&A"}, "emitted_at": 1710872567121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales Development", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "payRateEffectiveDate": "2024-03-05", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "People", "division": "G&A"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Finance & Administration", "division": "G&A"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Field Engineering - Customer Support", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "payRateEffectiveDate": "2024-02-26", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "payRateEffectiveDate": "2024-03-04", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Engineering - Neo4j", "division": "R&D"}, "emitted_at": 1710872567122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Developer Relations", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Field Engineering - Customer Success", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "payRateEffectiveDate": "2024-03-01", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Revenue Operations", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "payRateEffectiveDate": "2024-03-18", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Sales", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "payRateEffectiveDate": "2024-03-11", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": "Marketing", "division": "Sales & Marketing"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "payRateEffectiveDate": "2024-03-12", "payChangeReason": "New Hire", "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": "Product - Neo4j", "division": "R&D"}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "payRateEffectiveDate": null, "payChangeReason": null, "genderIdentityCustom": null, "department": null, "division": null}, "emitted_at": 1710872567124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "employeeNumber": "241", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-05", "ethnicity": "White", "firstName": "Anne", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-09"}, "emitted_at": 1710872569486}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "employeeNumber": "239", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": "White", "firstName": "Kelly", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-01"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "employeeNumber": "212", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-12", "ethnicity": "Asian", "firstName": "Tina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "employeeNumber": "247", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-10-15", "ethnicity": null, "firstName": "Michaela", "gender": "Female", "genderIdentity": null, "hireDate": "2010-10-15"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "employeeNumber": "286", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-09", "ethnicity": null, "firstName": "Lotta", "gender": "Female", "genderIdentity": null, "hireDate": "2015-09-10"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "employeeNumber": "100", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-01", "ethnicity": null, "firstName": "Aileen", "gender": "Female", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "employeeNumber": "101", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-10", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569487}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "employeeNumber": "102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Lars", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "employeeNumber": "103", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2012-05-08", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-08"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "employeeNumber": "104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-14", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-30"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "employeeNumber": "105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-18", "ethnicity": null, "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "employeeNumber": "106", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-23", "ethnicity": "Asian", "firstName": "Patricia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-23"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "employeeNumber": "107", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-23", "ethnicity": "Asian", "firstName": "Lance", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-14"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "employeeNumber": "108", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-15", "ethnicity": "Two or More Races", "firstName": "Matt", "gender": "Male", "genderIdentity": null, "hireDate": "2013-11-04"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "employeeNumber": "109", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-02-25", "ethnicity": "Asian", "firstName": "Viksit", "gender": "Male", "genderIdentity": null, "hireDate": "2014-02-25"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "employeeNumber": "110", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-08", "ethnicity": "Two or More Races", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-10"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "employeeNumber": "111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-14", "ethnicity": "White", "firstName": "Greta", "gender": "Female", "genderIdentity": null, "hireDate": "2014-06-02"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "employeeNumber": "112", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-18", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-18"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "employeeNumber": "113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-04", "ethnicity": "White", "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2011-06-01"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "employeeNumber": "114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-01"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "employeeNumber": "115", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-05", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-08"}, "emitted_at": 1710872569488}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "employeeNumber": "116", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-15"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "employeeNumber": "117", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-04-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "employeeNumber": "118", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-04-01", "ethnicity": "Asian", "firstName": "Seshaiyengar", "gender": "Male", "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "employeeNumber": "119", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-07", "ethnicity": "Asian", "firstName": "Sayuri", "gender": "Female", "genderIdentity": null, "hireDate": "2015-04-13"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "employeeNumber": "120", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-01", "ethnicity": "White", "firstName": "Matzen", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-04"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "employeeNumber": "121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-29", "ethnicity": "White", "firstName": "Bryce", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "employeeNumber": "122", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-05", "ethnicity": "White", "firstName": "Alexandria", "gender": "Female", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "employeeNumber": "123", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-06-29", "ethnicity": "Asian", "firstName": "Rohan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-29"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "employeeNumber": "124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2015-08-11"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "employeeNumber": "125", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-22", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "employeeNumber": "126", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "Asian", "firstName": "Kenny", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-28"}, "emitted_at": 1710872569489}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "employeeNumber": "127", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-05"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "employeeNumber": "128", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-10-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-05"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "employeeNumber": "129", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-11-02", "ethnicity": "White", "firstName": "Dana", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-02"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "employeeNumber": "130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-01", "ethnicity": "White", "firstName": "Ginger", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-09"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "employeeNumber": "131", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Renee", "gender": "Female", "genderIdentity": "Female", "hireDate": "2016-03-28"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "employeeNumber": "132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2016-05-09"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "employeeNumber": "133", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-06", "ethnicity": "Asian", "firstName": "Jianna", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-13"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "employeeNumber": "134", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-10-05", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2016-10-05"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "employeeNumber": "135", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-16", "ethnicity": "Hispanic or Latino", "firstName": "Darryl", "gender": "Male", "genderIdentity": null, "hireDate": "2016-11-01"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "employeeNumber": "136", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-11", "ethnicity": "White", "firstName": "Alessandro", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "employeeNumber": "137", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Julio", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-19"}, "emitted_at": 1710872569490}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "employeeNumber": "138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Christine", "gender": "Female", "genderIdentity": null, "hireDate": "2017-01-03"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "employeeNumber": "139", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-11", "ethnicity": "Asian", "firstName": "Candace", "gender": "Female", "genderIdentity": null, "hireDate": "2017-01-11"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "employeeNumber": "140", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Keoni", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-17"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "employeeNumber": "141", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-01-25", "ethnicity": "Asian", "firstName": "Navneet", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-25"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "employeeNumber": "142", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-02-01", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-01"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "employeeNumber": "143", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-03", "ethnicity": "White", "firstName": "Rostyslav", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-06"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "employeeNumber": "144", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-18", "ethnicity": "White", "firstName": "Amy", "gender": "Female", "genderIdentity": null, "hireDate": "2017-03-01"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "employeeNumber": "145", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-10"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "employeeNumber": "146", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "employeeNumber": "147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-21", "ethnicity": "White", "firstName": "Blake", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-15"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "employeeNumber": "148", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-21", "ethnicity": "White", "firstName": "Gabriella", "gender": "Female", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "employeeNumber": "149", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-01", "ethnicity": "Asian", "firstName": "Fawad", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "employeeNumber": "150", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-01-10", "ethnicity": "White", "firstName": "Nir", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-13"}, "emitted_at": 1710872569491}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "employeeNumber": "151", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-01", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "employeeNumber": "152", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-05", "ethnicity": "White", "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-05"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "employeeNumber": "153", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-15", "ethnicity": "Asian", "firstName": "Gopal", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-19"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "employeeNumber": "154", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-01", "ethnicity": "Asian", "firstName": "Ravi", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "employeeNumber": "155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Lewis", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-24"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "employeeNumber": "156", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ali", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-28"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "employeeNumber": "157", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": "White", "firstName": "Kurt", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "employeeNumber": "158", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-01", "ethnicity": "Asian", "firstName": "Nitin", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "employeeNumber": "159", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-18", "ethnicity": "White", "firstName": "Steven", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "employeeNumber": "160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-21", "ethnicity": "Asian", "firstName": "Noriko", "gender": "Female", "genderIdentity": null, "hireDate": "2017-10-02"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "employeeNumber": "161", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-05", "ethnicity": "Two or More Races", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-23"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "employeeNumber": "162", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-10-23", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-23"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "employeeNumber": "163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-18", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-25"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "employeeNumber": "164", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-13", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-06"}, "emitted_at": 1710872569492}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "employeeNumber": "165", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-30", "ethnicity": null, "firstName": "Karin", "gender": "Female", "genderIdentity": null, "hireDate": "2017-11-27"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "employeeNumber": "166", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-12-18", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-18"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "employeeNumber": "167", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-12-18", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-18"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "employeeNumber": "168", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-11", "ethnicity": "Hispanic or Latino", "firstName": "Rodrigo", "gender": "Male", "genderIdentity": null, "hireDate": "2018-01-02"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "employeeNumber": "169", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-01-08", "ethnicity": "Asian", "firstName": "Aji", "gender": "Female", "genderIdentity": null, "hireDate": "2018-01-08"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "employeeNumber": "170", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-31", "ethnicity": "White", "firstName": "Lance", "gender": "Male", "genderIdentity": null, "hireDate": "2018-01-22"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "employeeNumber": "171", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-05", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-05"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "employeeNumber": "172", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-15", "ethnicity": "White", "firstName": "Brock", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "employeeNumber": "173", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-20", "ethnicity": "Asian", "firstName": "Dung Thanh", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "employeeNumber": "174", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-05-19", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-20"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "employeeNumber": "175", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-01", "ethnicity": "Asian", "firstName": "Cecilia", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-26"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "employeeNumber": "176", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-26", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-26"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "employeeNumber": "177", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-04-09", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-09"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "employeeNumber": "178", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-14", "ethnicity": "White", "firstName": "Julianne", "gender": "Female", "genderIdentity": null, "hireDate": "2018-04-09"}, "emitted_at": 1710872569493}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "employeeNumber": "179", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Rod", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-30"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "employeeNumber": "180", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-05-07", "ethnicity": "White", "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-07"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "employeeNumber": "181", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-23", "ethnicity": "White", "firstName": "Jocelyn", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-16"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "employeeNumber": "182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-23", "ethnicity": "Asian", "firstName": "Leena", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-21"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "employeeNumber": "183", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-27", "ethnicity": "White", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "employeeNumber": "184", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-06-25", "ethnicity": "Asian", "firstName": "Ravindranatha", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-25"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "employeeNumber": "185", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-15", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-02"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "employeeNumber": "186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-20", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-09"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "employeeNumber": "187", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-28", "ethnicity": "White", "firstName": "Elaine", "gender": "Female", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "employeeNumber": "188", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-16", "ethnicity": "Asian", "firstName": "Anurag", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "employeeNumber": "189", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Susan", "gender": "Female", "genderIdentity": null, "hireDate": "2018-07-23"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "employeeNumber": "190", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-30", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-30"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "employeeNumber": "192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "Hispanic or Latino", "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-29"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "employeeNumber": "193", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-24", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-10"}, "emitted_at": 1710872569494}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "employeeNumber": "194", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-02-01", "ethnicity": "White", "firstName": "Kurt", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-20"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "employeeNumber": "195", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-15", "ethnicity": "Asian", "firstName": "Sumeet", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-15"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "employeeNumber": "196", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-29", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-29"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "employeeNumber": "197", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-11-12", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-12"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "employeeNumber": "198", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-27"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "employeeNumber": "199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-31", "ethnicity": "White", "firstName": "Justin", "gender": "Male", "genderIdentity": null, "hireDate": "2018-12-03"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "employeeNumber": "200", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-07", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "employeeNumber": "201", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-16", "ethnicity": null, "firstName": "Raji", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "employeeNumber": "202", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-11", "ethnicity": "White", "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-11"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "employeeNumber": "203", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-14", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Nina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "employeeNumber": "204", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "employeeNumber": "205", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "White", "firstName": "Sara", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-16"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "employeeNumber": "206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-20", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-28"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "employeeNumber": "207", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": "Asian", "firstName": "Pragya", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-28"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "employeeNumber": "208", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-22", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-25"}, "emitted_at": 1710872569495}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "employeeNumber": "209", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-02", "ethnicity": "White", "firstName": "Alicia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "employeeNumber": "210", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-18"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "employeeNumber": "211", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-03-25", "ethnicity": "White", "firstName": "Rob", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "employeeNumber": "213", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": "Hispanic or Latino", "firstName": "Yancarlo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-01"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "employeeNumber": "214", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-15", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-08"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "employeeNumber": "215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-23", "ethnicity": "Hispanic or Latino", "firstName": "Veronica", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "employeeNumber": "216", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-16", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-16"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "employeeNumber": "217", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-22", "ethnicity": "Asian", "firstName": "Naveen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-22"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "employeeNumber": "218", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-29", "ethnicity": "White", "firstName": "Cynthia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "employeeNumber": "219", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-29", "ethnicity": "Asian", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "employeeNumber": "220", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "White", "firstName": "Logan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-29"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "employeeNumber": "221", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-07", "ethnicity": "White", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-01"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "employeeNumber": "222", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": "White", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "employeeNumber": "223", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-19", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569496}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "employeeNumber": "224", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-01", "ethnicity": "White", "firstName": "Merton", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-20"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "employeeNumber": "225", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-10", "ethnicity": "White", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-30"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "employeeNumber": "226", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": "White", "firstName": "Joann", "gender": "Female", "genderIdentity": null, "hireDate": "2019-06-03"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "employeeNumber": "227", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-06-10", "ethnicity": "White", "firstName": "Geoffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "employeeNumber": "228", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-12", "ethnicity": "Asian", "firstName": "Allison", "gender": "Female", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "employeeNumber": "229", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-09", "ethnicity": "Asian", "firstName": "Shreyans", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-23"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "employeeNumber": "230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-21", "ethnicity": "Asian", "firstName": "Amit", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-24"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "employeeNumber": "231", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-22"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "employeeNumber": "232", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-13", "ethnicity": "White", "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-22"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "employeeNumber": "233", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-02", "ethnicity": "White", "firstName": "Corbett", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-29"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "employeeNumber": "234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Suresh Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-27"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "employeeNumber": "235", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-22", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-08-12"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "employeeNumber": "236", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-08-19", "ethnicity": "Asian", "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-19"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "employeeNumber": "237", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-08-19", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-19"}, "emitted_at": 1710872569497}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "employeeNumber": "238", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-13", "ethnicity": "White", "firstName": "Derek", "gender": "Male", "genderIdentity": null, "hireDate": "2019-08-28"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "employeeNumber": "240", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-03", "ethnicity": "Hispanic or Latino", "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-03"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "employeeNumber": "242", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-21", "ethnicity": "White", "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2019-09-30"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "employeeNumber": "243", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-19", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "employeeNumber": "244", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-21", "ethnicity": "White", "firstName": "Kambiz", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-14"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "employeeNumber": "245", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-24", "ethnicity": null, "firstName": "Tobias", "gender": "Male", "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "employeeNumber": "246", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-02-01", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2010-02-01"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "employeeNumber": "248", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2010-10-25", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2010-10-25"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "employeeNumber": "249", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2011-01-01"}, "emitted_at": 1710872569498}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "employeeNumber": "250", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-01-01", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2009-10-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "employeeNumber": "251", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": "White", "firstName": "Alistair", "gender": "Male", "genderIdentity": null, "hireDate": "2011-08-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "employeeNumber": "252", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-16", "ethnicity": null, "firstName": "Cedric", "gender": "Male", "genderIdentity": null, "hireDate": "2012-07-03"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "employeeNumber": "253", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "employeeNumber": "254", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": "White", "firstName": "Rik", "gender": "Male", "genderIdentity": null, "hireDate": "2012-08-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "employeeNumber": "255", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2013-10-01", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "employeeNumber": "256", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2012-06-01", "ethnicity": null, "firstName": "Lasse", "gender": "Male", "genderIdentity": null, "hireDate": "2012-06-01"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "employeeNumber": "257", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-19", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2013-05-13"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "employeeNumber": "258", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-05-14", "ethnicity": null, "firstName": "Benjamin", "gender": "Male", "genderIdentity": null, "hireDate": "2013-09-02"}, "emitted_at": 1710872569499}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "employeeNumber": "259", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-30", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2013-09-02"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "employeeNumber": "260", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2013-10-01", "ethnicity": null, "firstName": "Magnus", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-01"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "employeeNumber": "261", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-31", "ethnicity": null, "firstName": "Claudia", "gender": "Female", "genderIdentity": null, "hireDate": "2014-01-20"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "employeeNumber": "262", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-01", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-11"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "employeeNumber": "263", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-04", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-05-19"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "employeeNumber": "264", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-21", "ethnicity": null, "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-06"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "employeeNumber": "265", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-07-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2014-07-01"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "employeeNumber": "266", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-29", "ethnicity": null, "firstName": "Kostiantyn", "gender": "Male", "genderIdentity": null, "hireDate": "2014-07-15"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "employeeNumber": "267", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-01", "ethnicity": "White", "firstName": "Oskar", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-01"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "employeeNumber": "268", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-08-04", "ethnicity": null, "firstName": "Pontus", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-04"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "employeeNumber": "269", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-08-31", "ethnicity": null, "firstName": "Nigel", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-06"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "employeeNumber": "270", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-22", "ethnicity": null, "firstName": "Craig", "gender": "Male", "genderIdentity": null, "hireDate": "2014-08-06"}, "emitted_at": 1710872569500}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "employeeNumber": "271", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-01-31", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2014-09-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "employeeNumber": "272", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-30", "ethnicity": null, "firstName": "Zhen", "gender": "Female", "genderIdentity": null, "hireDate": "2014-09-15"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "employeeNumber": "273", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Petra", "gender": "Female", "genderIdentity": null, "hireDate": "2014-10-15"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "employeeNumber": "274", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2014-11-03", "ethnicity": null, "firstName": "Cornelis", "gender": "Male", "genderIdentity": null, "hireDate": "2014-11-03"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "employeeNumber": "275", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-23", "ethnicity": null, "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "employeeNumber": "276", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-01-01", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "employeeNumber": "277", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Bruno", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-07"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "employeeNumber": "278", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2021-09-23", "ethnicity": "White", "firstName": "Mats", "gender": "Male", "genderIdentity": null, "hireDate": "2015-03-23"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "employeeNumber": "279", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "employeeNumber": "280", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-22", "ethnicity": null, "firstName": "Mykhailo", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-22"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "employeeNumber": "281", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-06-01", "ethnicity": null, "firstName": "Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "employeeNumber": "282", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-07-01", "ethnicity": null, "firstName": "Jesus", "gender": "Male", "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "employeeNumber": "283", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-07-01", "ethnicity": null, "firstName": "Eva", "gender": "Female", "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569501}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "employeeNumber": "284", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-01", "ethnicity": null, "firstName": "Henrik", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "employeeNumber": "285", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-01", "ethnicity": null, "firstName": "Ragnar", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "employeeNumber": "287", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-09-14", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2015-09-14"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "employeeNumber": "288", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-10-01", "ethnicity": null, "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2015-10-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "employeeNumber": "289", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2015-11-01", "ethnicity": null, "firstName": "Jonatan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "employeeNumber": "290", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-01-11", "ethnicity": "White", "firstName": "Olivia", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-11"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "employeeNumber": "291", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-19", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-18"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "employeeNumber": "292", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Eve", "gender": "Female", "genderIdentity": null, "hireDate": "2016-02-29"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "employeeNumber": "293", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-31", "ethnicity": null, "firstName": "Sven", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "employeeNumber": "294", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-31", "ethnicity": null, "firstName": "Alastair", "gender": "Male", "genderIdentity": null, "hireDate": "2016-04-20"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "employeeNumber": "295", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Anton", "gender": "Male", "genderIdentity": null, "hireDate": "2016-05-02"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "employeeNumber": "296", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-14", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-01"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "employeeNumber": "297", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Dirk", "gender": "Male", "genderIdentity": null, "hireDate": "2016-10-03"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "employeeNumber": "298", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-11-07", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2016-11-07"}, "emitted_at": 1710872569502}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "employeeNumber": "299", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-23", "ethnicity": null, "firstName": "Ragnar", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "employeeNumber": "300", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2016-12-05", "ethnicity": null, "firstName": "Jos\u00e9", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-05"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "employeeNumber": "301", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-21"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "employeeNumber": "302", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-02-27", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-27"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "employeeNumber": "303", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Charlotte", "gender": "Female", "genderIdentity": null, "hireDate": "2017-03-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "employeeNumber": "304", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-01", "ethnicity": null, "firstName": "Petar", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "employeeNumber": "305", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-01", "ethnicity": "White", "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "employeeNumber": "306", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-04-18", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-18"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "employeeNumber": "307", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-02-01", "ethnicity": null, "firstName": "Caroline", "gender": "Female", "genderIdentity": null, "hireDate": "2017-04-27"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "employeeNumber": "308", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Tom", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "employeeNumber": "309", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Anton", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "employeeNumber": "310", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-01", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2017-05-01"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "employeeNumber": "311", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-09", "ethnicity": null, "firstName": "Gordon", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-08"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "employeeNumber": "312", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-05-15", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-15"}, "emitted_at": 1710872569503}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "employeeNumber": "313", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-12-31", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-22"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "employeeNumber": "314", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-06-01", "ethnicity": null, "firstName": "Sascha", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-01"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "employeeNumber": "315", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-01", "ethnicity": null, "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "employeeNumber": "316", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-10", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-10"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "employeeNumber": "317", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-15", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-15"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "employeeNumber": "318", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-24", "ethnicity": null, "firstName": "Julien", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "employeeNumber": "319", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-17", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "employeeNumber": "320", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-07-17", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "employeeNumber": "321", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": null, "firstName": "Ljubica", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "employeeNumber": "322", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-07"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "employeeNumber": "323", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2022-06-06", "ethnicity": null, "firstName": "Satia", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-14"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "employeeNumber": "324", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-21", "ethnicity": null, "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-21"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "employeeNumber": "325", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-08-21", "ethnicity": null, "firstName": "Louise", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-21"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "employeeNumber": "326", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-11-13", "ethnicity": null, "firstName": "Sandrine", "gender": "Female", "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569504}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "employeeNumber": "327", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-01", "ethnicity": null, "firstName": "Gerrit", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "employeeNumber": "328", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-05", "ethnicity": null, "firstName": "Umar", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-05"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "employeeNumber": "329", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-09-18", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-18"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "employeeNumber": "330", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-01", "ethnicity": null, "firstName": "Christos", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-01"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "employeeNumber": "331", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2017-10-16", "ethnicity": null, "firstName": "Karl-Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-16"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "employeeNumber": "332", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-17", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-10-16"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "employeeNumber": "333", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-28", "ethnicity": null, "firstName": "Tiago Andre da Silva", "gender": "Male", "genderIdentity": null, "hireDate": "2017-11-09"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "employeeNumber": "334", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-30", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-01"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "employeeNumber": "335", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-02-12", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2018-02-12"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "employeeNumber": "336", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Matt", "gender": "Male", "genderIdentity": null, "hireDate": "2018-04-02"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "employeeNumber": "337", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-09", "ethnicity": null, "firstName": "Frederic", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-07"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "employeeNumber": "338", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-31", "ethnicity": null, "firstName": "Dinuke", "gender": "Male", "genderIdentity": null, "hireDate": "2018-05-14"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "employeeNumber": "339", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-06-01", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-01"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "employeeNumber": "340", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-01", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-06-07"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "employeeNumber": "341", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2010-09-01"}, "emitted_at": 1710872569505}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "employeeNumber": "342", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-07-01", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "employeeNumber": "343", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-08-06", "ethnicity": null, "firstName": "Irfan Nuri", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-06"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "employeeNumber": "344", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-08-13"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "employeeNumber": "345", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2018-09-01", "ethnicity": null, "firstName": "Jan", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "employeeNumber": "346", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "employeeNumber": "347", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-09-10", "ethnicity": null, "firstName": "Arvid", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-10"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "employeeNumber": "348", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-15", "ethnicity": null, "firstName": "Wayne", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-24"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "employeeNumber": "349", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-01", "ethnicity": null, "firstName": "Therese", "gender": "Female", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "employeeNumber": "350", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2018-10-01", "ethnicity": null, "firstName": "Jaroslaw", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "employeeNumber": "351", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "S\u00f6ren", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "employeeNumber": "352", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-01", "ethnicity": "White", "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-01"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "employeeNumber": "353", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-10-15", "ethnicity": null, "firstName": "Tobias", "gender": "Male", "genderIdentity": null, "hireDate": "2018-10-15"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "employeeNumber": "354", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2018-11-19", "ethnicity": null, "firstName": "Mattias", "gender": "Male", "genderIdentity": null, "hireDate": "2018-11-19"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "employeeNumber": "355", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Sabine", "gender": "Female", "genderIdentity": null, "hireDate": "2018-11-27"}, "emitted_at": 1710872569506}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "employeeNumber": "356", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-01", "ethnicity": null, "firstName": "Linus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-01"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "employeeNumber": "357", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-01", "ethnicity": null, "firstName": "Penny", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-01"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "employeeNumber": "358", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-07", "ethnicity": null, "firstName": "Lorena", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "employeeNumber": "359", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "employeeNumber": "360", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Petr", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "employeeNumber": "361", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-14", "ethnicity": null, "firstName": "Elizaveta", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-14"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "employeeNumber": "362", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Clemens", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-15"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "employeeNumber": "363", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-01-16", "ethnicity": null, "firstName": "Sara", "gender": "Female", "genderIdentity": null, "hireDate": "2019-01-16"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "employeeNumber": "364", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Herman", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-01"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "employeeNumber": "365", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-31", "ethnicity": null, "firstName": "Jochem", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-04"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "employeeNumber": "366", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-02", "ethnicity": null, "firstName": "Elliot", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-11"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "employeeNumber": "367", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-07", "ethnicity": null, "firstName": "J\u00e9r\u00e9mie", "gender": "Male", "genderIdentity": null, "hireDate": "2019-02-18"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "employeeNumber": "368", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2019-03-01", "ethnicity": "White", "firstName": "Gal", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-01"}, "emitted_at": 1710872569507}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "employeeNumber": "369", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": null, "firstName": "Florentin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "employeeNumber": "370", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2019-03-01", "ethnicity": null, "firstName": "Yossi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-01"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "employeeNumber": "371", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-03-04", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "employeeNumber": "372", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-09-13"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "employeeNumber": "373", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-01", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-01"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "employeeNumber": "374", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-03", "ethnicity": null, "firstName": "Dimitrios", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-03"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "employeeNumber": "375", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-11", "ethnicity": null, "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-08"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "employeeNumber": "376", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-15", "ethnicity": null, "firstName": "Valdemar", "gender": "Male", "genderIdentity": null, "hireDate": "2019-04-15"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "employeeNumber": "377", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-04-17", "ethnicity": null, "firstName": "Angeliki", "gender": "Female", "genderIdentity": null, "hireDate": "2019-04-17"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "employeeNumber": "378", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-30", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-01"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "employeeNumber": "379", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-05-07", "ethnicity": null, "firstName": "Lucy", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-07"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "employeeNumber": "380", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-05-13", "ethnicity": null, "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-05-13"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "employeeNumber": "381", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": "White", "firstName": "Angelo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-05-13"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "employeeNumber": "382", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-08-31", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-01"}, "emitted_at": 1710872569508}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "employeeNumber": "383", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Jonatan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-10"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "employeeNumber": "384", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-06-15", "ethnicity": null, "firstName": "Bledi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-15"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "employeeNumber": "385", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-30", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "employeeNumber": "386", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "employeeNumber": "387", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": "White", "firstName": "Bert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "employeeNumber": "388", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-07-01", "ethnicity": "White", "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2019-07-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "employeeNumber": "389", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "Two or More Races", "firstName": "Sadie", "gender": "Female", "genderIdentity": null, "hireDate": "2019-07-03"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "employeeNumber": "390", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-01", "ethnicity": null, "firstName": "Nicolas", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "employeeNumber": "391", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-24", "ethnicity": "White", "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-02"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "employeeNumber": "392", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-30", "ethnicity": null, "firstName": "Dario", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-02"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "employeeNumber": "393", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-09-09", "ethnicity": null, "firstName": "Luis", "gender": "Male", "genderIdentity": null, "hireDate": "2019-09-09"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "employeeNumber": "394", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-01", "ethnicity": null, "firstName": "Riccardo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "employeeNumber": "395", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-28", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569509}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "employeeNumber": "396", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Lasse", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "employeeNumber": "397", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-01", "ethnicity": null, "firstName": "Valerio", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "employeeNumber": "398", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-21", "ethnicity": null, "firstName": "Pontus", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-01"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "employeeNumber": "399", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-07", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-07"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "employeeNumber": "400", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-14"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "employeeNumber": "401", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-14", "ethnicity": null, "firstName": "Maria", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-14"}, "emitted_at": 1710872569510}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "employeeNumber": "402", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-18", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "employeeNumber": "403", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-21", "ethnicity": null, "firstName": "Rui", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "employeeNumber": "404", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": null, "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "employeeNumber": "405", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-11-05", "ethnicity": null, "firstName": "Vladislav", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-05"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "employeeNumber": "406", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-07", "ethnicity": null, "firstName": "Marie", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-07"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "employeeNumber": "410", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-06", "ethnicity": "Asian", "firstName": "Marissa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-29"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "employeeNumber": "414", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-04", "ethnicity": null, "firstName": "Heorhi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-04"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "employeeNumber": "Inactive100", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-08-25", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "employeeNumber": "Inactive102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-04-01", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "employeeNumber": "Inactive103", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-11-21", "ethnicity": "White", "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "employeeNumber": "Inactive104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-12-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "employeeNumber": "Inactive105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-01-02", "ethnicity": "White", "firstName": "Allison", "gender": "Female", "genderIdentity": null, "hireDate": "2012-02-01"}, "emitted_at": 1710872569511}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "employeeNumber": "Inactive106", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-11-01", "ethnicity": "White", "firstName": "Yuri", "gender": "Male", "genderIdentity": null, "hireDate": "2012-05-30"}, "emitted_at": 1710872569512}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "employeeNumber": "Inactive107", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-04-16", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2012-09-06"}, "emitted_at": 1710872569512}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "employeeNumber": "Inactive108", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-07-12", "ethnicity": "White", "firstName": "Kerstin", "gender": "Female", "genderIdentity": null, "hireDate": "2012-09-13"}, "emitted_at": 1710872569512}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "employeeNumber": "Inactive109", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-30", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2012-10-15"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "employeeNumber": "Inactive110", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-08-07", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2012-12-10"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "employeeNumber": "Inactive111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-30", "ethnicity": "Asian", "firstName": "Ruma", "gender": "Female", "genderIdentity": null, "hireDate": "2013-01-21"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "employeeNumber": "Inactive112", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-01-07", "ethnicity": null, "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2013-06-17"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "employeeNumber": "Inactive113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-02-04", "ethnicity": "White", "firstName": "Rebecca", "gender": "Female", "genderIdentity": null, "hireDate": "2013-06-24"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "employeeNumber": "Inactive114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-10-13", "ethnicity": "White", "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2013-08-19"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "employeeNumber": "Inactive115", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-11-14", "ethnicity": "White", "firstName": "Kenneth", "gender": "Male", "genderIdentity": null, "hireDate": "2013-10-01"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "employeeNumber": "Inactive116", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-05-15", "ethnicity": "White", "firstName": "Gabriel", "gender": "Male", "genderIdentity": null, "hireDate": "2013-12-09"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "employeeNumber": "Inactive117", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-11-02", "ethnicity": "White", "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2014-01-06"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "employeeNumber": "Inactive118", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-14", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-17"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "employeeNumber": "Inactive119", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-10-01", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2014-03-17"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "employeeNumber": "Inactive120", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": "Asian", "firstName": "Utpal", "gender": "Male", "genderIdentity": null, "hireDate": "2014-05-23"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "employeeNumber": "Inactive121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-14", "ethnicity": "Asian", "firstName": "Vivek", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-02"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "employeeNumber": "Inactive122", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-04", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-16"}, "emitted_at": 1710872569513}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "employeeNumber": "Inactive123", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-09-14", "ethnicity": "White", "firstName": "Tristan", "gender": "Male", "genderIdentity": null, "hireDate": "2014-06-30"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "employeeNumber": "Inactive124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-22", "ethnicity": "White", "firstName": "Nicole", "gender": "Female", "genderIdentity": null, "hireDate": "2014-07-14"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "employeeNumber": "Inactive125", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-10-16", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2014-09-02"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "employeeNumber": "Inactive126", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-10-31", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2014-09-16"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "employeeNumber": "Inactive127", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-02-26", "ethnicity": "White", "firstName": "Julianne", "gender": "Female", "genderIdentity": null, "hireDate": "2014-10-06"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "employeeNumber": "Inactive128", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-12-11", "ethnicity": "White", "firstName": "Kamille", "gender": "Female", "genderIdentity": null, "hireDate": "2014-12-01"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "employeeNumber": "Inactive129", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-13", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2014-12-08"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "employeeNumber": "Inactive130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-14", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2015-01-19"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "employeeNumber": "Inactive131", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-04-22", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2015-02-23"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "employeeNumber": "Inactive132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-03-04", "ethnicity": "White", "firstName": "Trey", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-04"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "employeeNumber": "Inactive133", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-10-09", "ethnicity": "White", "firstName": "Elizabeth", "gender": "Female", "genderIdentity": null, "hireDate": "2015-05-11"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "employeeNumber": "Inactive134", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-09-21", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2015-05-18"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "employeeNumber": "Inactive135", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-09-02", "ethnicity": "White", "firstName": "Lee", "gender": "Male", "genderIdentity": null, "hireDate": "2015-06-29"}, "emitted_at": 1710872569514}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "employeeNumber": "Inactive136", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-28", "ethnicity": "White", "firstName": "Igor", "gender": "Male", "genderIdentity": null, "hireDate": "2015-11-02"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "employeeNumber": "Inactive137", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-09", "ethnicity": "White", "firstName": "Kaitlyn", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-03"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "employeeNumber": "Inactive138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-03", "ethnicity": "Hispanic or Latino", "firstName": "Nancy", "gender": "Female", "genderIdentity": null, "hireDate": "2015-11-23"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "employeeNumber": "Inactive139", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-01", "ethnicity": "White", "firstName": "Corie", "gender": "Female", "genderIdentity": null, "hireDate": "2015-12-07"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "employeeNumber": "Inactive140", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-15", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2015-12-14"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "employeeNumber": "Inactive141", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-09", "ethnicity": null, "firstName": "Robert", "gender": "Male", "genderIdentity": null, "hireDate": "2015-12-16"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "employeeNumber": "Inactive142", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-11-17", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2016-01-13"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "employeeNumber": "Inactive143", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-15", "ethnicity": "White", "firstName": "Jan Reijers", "gender": "Male", "genderIdentity": null, "hireDate": "2016-01-18"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "employeeNumber": "Inactive144", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-15", "ethnicity": null, "firstName": "Janet", "gender": "Female", "genderIdentity": null, "hireDate": "2016-01-27"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "employeeNumber": "Inactive145", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-27", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2016-02-01"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "employeeNumber": "Inactive146", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-19", "ethnicity": "Asian", "firstName": "Lorgen", "gender": "Female", "genderIdentity": null, "hireDate": "2016-02-29"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "employeeNumber": "Inactive147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-04-20", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2016-03-08"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "employeeNumber": "Inactive148", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-03-06", "ethnicity": "White", "firstName": "Angelica", "gender": "Female", "genderIdentity": null, "hireDate": "2016-03-28"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "employeeNumber": "Inactive149", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-12-15", "ethnicity": "Asian", "firstName": "Yasir", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569515}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "employeeNumber": "Inactive150", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Joy Stephanie", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "employeeNumber": "Inactive151", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Yaqi", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "employeeNumber": "Inactive152", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "Asian", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "employeeNumber": "Inactive153", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-08-12", "ethnicity": "White", "firstName": "Danielle", "gender": "Female", "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "employeeNumber": "Inactive154", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-15", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2016-12-01"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "employeeNumber": "Inactive155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-15", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-30"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "employeeNumber": "Inactive156", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Sherman", "gender": "Male", "genderIdentity": null, "hireDate": "2017-02-15"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "employeeNumber": "Inactive157", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-28", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2017-03-13"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "employeeNumber": "Inactive158", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-12-31", "ethnicity": "White", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2017-04-03"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "employeeNumber": "Inactive159", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-17", "ethnicity": "White", "firstName": "Cody", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-17"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "employeeNumber": "Inactive160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-14", "ethnicity": "White", "firstName": "Zachary", "gender": "Male", "genderIdentity": null, "hireDate": "2017-05-22"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "employeeNumber": "Inactive161", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-11", "ethnicity": "Asian", "firstName": "Brandon", "gender": "Male", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "employeeNumber": "Inactive162", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-11", "ethnicity": "Asian", "firstName": "Shangjun", "gender": "Female", "genderIdentity": null, "hireDate": "2017-06-05"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "employeeNumber": "Inactive163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-07", "ethnicity": "White", "firstName": "Didrik", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-12"}, "emitted_at": 1710872569516}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "employeeNumber": "Inactive164", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-26", "ethnicity": "White", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2017-07-17"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "employeeNumber": "Inactive165", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-31", "ethnicity": "White", "firstName": "Margaret", "gender": "Female", "genderIdentity": null, "hireDate": "2017-07-31"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "employeeNumber": "Inactive166", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-20", "ethnicity": "White", "firstName": "Sina", "gender": "Male", "genderIdentity": null, "hireDate": "2017-08-24"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "employeeNumber": "Inactive167", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-11", "ethnicity": "Asian", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2018-02-05"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "employeeNumber": "Inactive169", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-04", "ethnicity": "White", "firstName": "Patricia", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-14"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "employeeNumber": "Inactive170", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-09-30", "ethnicity": null, "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2018-05-29"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "employeeNumber": "Inactive171", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-28", "ethnicity": "Asian", "firstName": "Aayushi", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-04"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "employeeNumber": "Inactive172", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-28", "ethnicity": "Asian", "firstName": "Amy", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "employeeNumber": "Inactive173", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-10-10", "ethnicity": "Asian", "firstName": "Meghna", "gender": "Female", "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "employeeNumber": "Inactive174", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-05-01", "ethnicity": "Asian", "firstName": "Anandkumar", "gender": "Male", "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "employeeNumber": "Inactive175", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-07", "ethnicity": "White", "firstName": "Harland", "gender": "Male", "genderIdentity": null, "hireDate": "2018-09-17"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "employeeNumber": "Inactive176", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-01-15", "ethnicity": "White", "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2019-01-07"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "employeeNumber": "Inactive177", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-08-16", "ethnicity": "Asian", "firstName": "Syed Fahad", "gender": "Male", "genderIdentity": null, "hireDate": "2019-06-03"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "employeeNumber": "498", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "Asian", "firstName": "Soham", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569517}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "employeeNumber": "Inactive180", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-10-12", "ethnicity": null, "firstName": "Johan", "gender": null, "genderIdentity": null, "hireDate": "2009-10-01"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "employeeNumber": "Inactive181", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-03-12", "ethnicity": null, "firstName": "Anders", "gender": null, "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "employeeNumber": "Inactive182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-03-31", "ethnicity": null, "firstName": "Peter", "gender": null, "genderIdentity": null, "hireDate": "2009-11-01"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "employeeNumber": "Inactive183", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-01-26", "ethnicity": null, "firstName": "David", "gender": null, "genderIdentity": null, "hireDate": "2010-09-01"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "employeeNumber": "Inactive184", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-23", "ethnicity": null, "firstName": "Andres", "gender": null, "genderIdentity": null, "hireDate": "2010-10-12"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "employeeNumber": "Inactive185", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2012-04-30", "ethnicity": null, "firstName": "Thomas", "gender": null, "genderIdentity": null, "hireDate": "2011-02-01"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "employeeNumber": "Inactive186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-05-31", "ethnicity": null, "firstName": "Ian", "gender": null, "genderIdentity": null, "hireDate": "2011-05-09"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "employeeNumber": "Inactive188", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-09-30", "ethnicity": null, "firstName": "Rickard", "gender": null, "genderIdentity": null, "hireDate": "2011-09-20"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "employeeNumber": "Inactive189", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-10-31", "ethnicity": null, "firstName": "Bj\u00f6rn", "gender": null, "genderIdentity": null, "hireDate": "2011-10-26"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "employeeNumber": "Inactive190", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-03-11", "ethnicity": null, "firstName": "Julian", "gender": null, "genderIdentity": null, "hireDate": "2018-12-17"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "employeeNumber": "Inactive191", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-12-01", "ethnicity": null, "firstName": "Pernilla", "gender": null, "genderIdentity": null, "hireDate": "2012-09-24"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "employeeNumber": "Inactive192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2013-11-17", "ethnicity": null, "firstName": "Arturas", "gender": null, "genderIdentity": null, "hireDate": "2012-11-05"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "employeeNumber": "Inactive193", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-01-31", "ethnicity": null, "firstName": "Dax", "gender": null, "genderIdentity": null, "hireDate": "2013-01-28"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "employeeNumber": "Inactive194", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2014-06-30", "ethnicity": null, "firstName": "Ida", "gender": null, "genderIdentity": null, "hireDate": "2013-06-03"}, "emitted_at": 1710872569518}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "employeeNumber": "Inactive195", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-01-14", "ethnicity": null, "firstName": "Davide", "gender": null, "genderIdentity": null, "hireDate": "2014-02-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "employeeNumber": "Inactive196", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-03-18", "ethnicity": null, "firstName": "Jakub", "gender": null, "genderIdentity": null, "hireDate": "2014-02-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "employeeNumber": "Inactive198", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Holger", "gender": null, "genderIdentity": null, "hireDate": "2014-05-05"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "employeeNumber": "Inactive199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-02-03", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2014-10-13"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "employeeNumber": "Inactive200", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-11-30", "ethnicity": null, "firstName": "Pedro", "gender": null, "genderIdentity": null, "hireDate": "2015-01-05"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "employeeNumber": "Inactive201", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-02-24", "ethnicity": null, "firstName": "Maxwell", "gender": null, "genderIdentity": null, "hireDate": "2015-02-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "employeeNumber": "Inactive202", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-10-31", "ethnicity": null, "firstName": "Pieter", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "employeeNumber": "Inactive203", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-01-22", "ethnicity": null, "firstName": "Stephane", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "employeeNumber": "Inactive204", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-07-03", "ethnicity": null, "firstName": "Art", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "employeeNumber": "Inactive205", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2015-08-31", "ethnicity": null, "firstName": "Alexander", "gender": null, "genderIdentity": null, "hireDate": "2015-04-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "employeeNumber": "Inactive206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-11-30", "ethnicity": null, "firstName": "Steven", "gender": null, "genderIdentity": null, "hireDate": "2015-07-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "employeeNumber": "Inactive207", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-03-23", "ethnicity": null, "firstName": "Jonas", "gender": null, "genderIdentity": null, "hireDate": "2015-09-14"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "employeeNumber": "Inactive209", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Santo", "gender": null, "genderIdentity": null, "hireDate": "2016-02-01"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "employeeNumber": "Inactive210", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Praveena", "gender": null, "genderIdentity": null, "hireDate": "2016-02-22"}, "emitted_at": 1710872569519}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "employeeNumber": "Inactive211", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-07-31", "ethnicity": null, "firstName": "Mengqi", "gender": null, "genderIdentity": null, "hireDate": "2016-04-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "employeeNumber": "488", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-04", "ethnicity": null, "firstName": "Felix", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-04"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "employeeNumber": "Inactive213", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2016-06-22", "ethnicity": null, "firstName": "Ida", "gender": null, "genderIdentity": null, "hireDate": "2016-06-06"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "employeeNumber": "Inactive214", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-04-30", "ethnicity": null, "firstName": "Sophia", "gender": null, "genderIdentity": null, "hireDate": "2016-10-17"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "employeeNumber": "Inactive215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-20", "ethnicity": null, "firstName": "Hessan", "gender": null, "genderIdentity": null, "hireDate": "2017-01-23"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "employeeNumber": "Inactive216", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-10", "ethnicity": null, "firstName": "Vanessa", "gender": null, "genderIdentity": null, "hireDate": "2017-01-23"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "employeeNumber": "Inactive217", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-30", "ethnicity": null, "firstName": "Benoit", "gender": null, "genderIdentity": null, "hireDate": "2017-03-15"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "employeeNumber": "Inactive218", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-30", "ethnicity": null, "firstName": "Mattias", "gender": null, "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "employeeNumber": "Inactive219", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-09-30", "ethnicity": null, "firstName": "Li", "gender": null, "genderIdentity": null, "hireDate": "2017-04-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "employeeNumber": "Inactive220", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-14", "ethnicity": null, "firstName": "Angelica", "gender": null, "genderIdentity": null, "hireDate": "2017-04-03"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "employeeNumber": "Inactive221", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-04-30", "ethnicity": null, "firstName": "Tiest", "gender": null, "genderIdentity": null, "hireDate": "2017-04-17"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "employeeNumber": "Inactive223", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-31", "ethnicity": null, "firstName": "Sara", "gender": null, "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "employeeNumber": "Inactive224", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-08-31", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2017-07-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "employeeNumber": "525", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": null, "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "employeeNumber": "Inactive226", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-12-18", "ethnicity": null, "firstName": "Przemyslaw", "gender": null, "genderIdentity": null, "hireDate": "2017-07-10"}, "emitted_at": 1710872569520}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "employeeNumber": "Inactive227", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-04-30", "ethnicity": null, "firstName": "Philip", "gender": null, "genderIdentity": null, "hireDate": "2017-09-01"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "employeeNumber": "Inactive228", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-02-09", "ethnicity": null, "firstName": "Elin", "gender": null, "genderIdentity": null, "hireDate": "2017-09-13"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "employeeNumber": "Inactive229", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-02-16", "ethnicity": null, "firstName": "Gunnar", "gender": null, "genderIdentity": null, "hireDate": "2017-10-01"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "employeeNumber": "Inactive230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2017-12-31", "ethnicity": null, "firstName": "Martin", "gender": null, "genderIdentity": null, "hireDate": "2017-10-03"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "employeeNumber": "Inactive231", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-09-24", "ethnicity": null, "firstName": "Deniz", "gender": null, "genderIdentity": null, "hireDate": "2017-10-09"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "employeeNumber": "Inactive232", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-30", "ethnicity": null, "firstName": "Valentin", "gender": null, "genderIdentity": null, "hireDate": "2017-11-22"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "employeeNumber": "Inactive233", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-11-13", "ethnicity": null, "firstName": "Peter", "gender": null, "genderIdentity": null, "hireDate": "2018-01-08"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "employeeNumber": "Inactive234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-05", "ethnicity": null, "firstName": "Andrei", "gender": null, "genderIdentity": null, "hireDate": "2018-01-22"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "employeeNumber": "Inactive235", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-30", "ethnicity": null, "firstName": "Alexander", "gender": null, "genderIdentity": null, "hireDate": "2018-02-01"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "employeeNumber": "Inactive236", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": null, "firstName": "Anton", "gender": null, "genderIdentity": null, "hireDate": "2018-03-26"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "employeeNumber": "Inactive237", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-05-31", "ethnicity": null, "firstName": "Victor", "gender": null, "genderIdentity": null, "hireDate": "2018-03-26"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "employeeNumber": "Inactive238", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-31", "ethnicity": null, "firstName": "Kevin", "gender": null, "genderIdentity": null, "hireDate": "2018-06-01"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "employeeNumber": "Inactive239", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-17", "ethnicity": null, "firstName": "Matilda", "gender": null, "genderIdentity": null, "hireDate": "2018-06-11"}, "emitted_at": 1710872569521}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "employeeNumber": "Inactive240", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-07-04", "ethnicity": null, "firstName": "Fabian", "gender": null, "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "employeeNumber": "Inactive241", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-06-22", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2018-06-18"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "employeeNumber": "Inactive242", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-08", "ethnicity": null, "firstName": "Sherman", "gender": null, "genderIdentity": null, "hireDate": "2018-07-01"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "employeeNumber": "Inactive243", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-10", "ethnicity": null, "firstName": "Noah", "gender": null, "genderIdentity": null, "hireDate": "2018-07-16"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "employeeNumber": "Inactive244", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2018-08-17", "ethnicity": null, "firstName": "Yuvan", "gender": null, "genderIdentity": null, "hireDate": "2018-08-13"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "employeeNumber": "Inactive245", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-06-07", "ethnicity": null, "firstName": "Matilda", "gender": null, "genderIdentity": null, "hireDate": "2019-03-25"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "employeeNumber": "Inactive246", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-07-06", "ethnicity": null, "firstName": "Stef", "gender": null, "genderIdentity": null, "hireDate": "2019-04-23"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "employeeNumber": "Inactive247", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2019-08-16", "ethnicity": null, "firstName": "Alva", "gender": null, "genderIdentity": null, "hireDate": "2019-07-15"}, "emitted_at": 1710872569522}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "employeeNumber": "415", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-01", "ethnicity": null, "firstName": "Angelo", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "employeeNumber": "416", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-01", "ethnicity": null, "firstName": "Leila", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "employeeNumber": "417", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-12", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "employeeNumber": "412", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-01", "ethnicity": null, "firstName": "Niels", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "employeeNumber": "409", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-10-21", "ethnicity": null, "firstName": "Morgan", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "employeeNumber": "418", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-01", "ethnicity": null, "firstName": "Jimmy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "employeeNumber": "419", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": "White", "firstName": "Jesper", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "employeeNumber": "420", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": null, "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "employeeNumber": "421", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-03", "ethnicity": null, "firstName": "Jasraj", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-01"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "employeeNumber": "422", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-02", "ethnicity": null, "firstName": "Veselin", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-02"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "employeeNumber": "423", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-09", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-10"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "employeeNumber": "424", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-18", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-18"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "employeeNumber": "425", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-03-13", "ethnicity": "Asian", "firstName": "Shashi", "gender": "Male", "genderIdentity": null, "hireDate": "2019-10-29"}, "emitted_at": 1710872569523}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "employeeNumber": "426", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Julia", "gender": "Female", "genderIdentity": null, "hireDate": "2019-10-21"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "employeeNumber": "427", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-11-11", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-11"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "employeeNumber": "428", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "White", "firstName": "Thursday", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "employeeNumber": "431", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-09"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "employeeNumber": "432", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Pascal", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "employeeNumber": "433", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-03", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2019-11-11"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "employeeNumber": "434", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-09", "ethnicity": "Asian", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "employeeNumber": "435", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-02-03", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-21"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "employeeNumber": "436", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-13", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "employeeNumber": "437", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-13", "ethnicity": "Asian", "firstName": "Ramanan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569524}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "employeeNumber": "438", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "Asian", "firstName": "Vikram", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "employeeNumber": "439", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-07", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-07"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "employeeNumber": "443", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-09", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "employeeNumber": "444", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2019-12-16"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "employeeNumber": "445", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-17", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-30"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "employeeNumber": "446", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-20", "ethnicity": "White", "firstName": "Bal\u00e1zs", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-20"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "employeeNumber": "447", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2019-12-12", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-12"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "employeeNumber": "448", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-01-06", "ethnicity": "White", "firstName": "Reneta", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "employeeNumber": "449", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "employeeNumber": "450", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": null, "firstName": "Tomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "employeeNumber": "451", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-01", "ethnicity": "White", "firstName": "H\u00e5kan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-01"}, "emitted_at": 1710872569525}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "employeeNumber": "452", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-01", "ethnicity": "White", "firstName": "Morten", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-01"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "employeeNumber": "453", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-01"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "employeeNumber": "454", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Kristina", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "employeeNumber": "455", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-01", "ethnicity": null, "firstName": "Linn\u00e9a", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "employeeNumber": "457", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-26", "ethnicity": null, "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "employeeNumber": "458", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-20"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "employeeNumber": "459", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-08", "ethnicity": "Black or African American", "firstName": "Kondwani", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-27"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "employeeNumber": "460", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "Two or More Races", "firstName": "Tammy", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "employeeNumber": "461", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-15", "ethnicity": "White", "firstName": "Deborah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "employeeNumber": "462", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-03", "ethnicity": "White", "firstName": "Randy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-03"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "employeeNumber": "463", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "White", "firstName": "Kenneth", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "employeeNumber": "464", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-10", "ethnicity": "White", "firstName": "Marcy", "gender": "Female", "genderIdentity": null, "hireDate": "2020-02-10"}, "emitted_at": 1710872569526}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "employeeNumber": "465", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-07", "ethnicity": "White", "firstName": "Brent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "employeeNumber": "466", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "Asian", "firstName": "Gopi Krishna Phani", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "employeeNumber": "467", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-15", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2019-12-09"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "employeeNumber": "468", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-09", "ethnicity": null, "firstName": "Mahnoor", "gender": "Female", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "employeeNumber": "469", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-01-02", "ethnicity": "Asian", "firstName": "Rutvij", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-02"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "employeeNumber": "470", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-01-06", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-06"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "employeeNumber": "471", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2017-12-01", "ethnicity": "Asian", "firstName": "Fanghua", "gender": "Male", "genderIdentity": null, "hireDate": "2017-12-01"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "employeeNumber": "472", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-01-13", "ethnicity": "White", "firstName": "Keith", "gender": "Male", "genderIdentity": null, "hireDate": "2020-01-13"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "employeeNumber": "473", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2017-01-10"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "employeeNumber": "474", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-02-10", "ethnicity": null, "firstName": "Shawn", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-10"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "employeeNumber": "475", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-01", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Joy", "gender": "Female", "genderIdentity": null, "hireDate": "2017-08-01"}, "emitted_at": 1710872569527}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "employeeNumber": "476", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": "White", "firstName": "Holly", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "employeeNumber": "477", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "employeeNumber": "478", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-14", "ethnicity": null, "firstName": "Emma", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-14"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "employeeNumber": "479", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": null, "firstName": "Pierre", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "employeeNumber": "480", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-02", "ethnicity": null, "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "employeeNumber": "481", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-02-24", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2020-02-24"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "employeeNumber": "482", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-05", "ethnicity": "White", "firstName": "Yigitcan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "employeeNumber": "483", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-06-22", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-02"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "employeeNumber": "484", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-21", "ethnicity": null, "firstName": "Human", "gender": null, "genderIdentity": null, "hireDate": "0000-00-00"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "employeeNumber": "485", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-04", "ethnicity": "White", "firstName": "Janell", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "employeeNumber": "486", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Yaacov", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-16"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "employeeNumber": "487", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-20", "ethnicity": null, "firstName": "Ewa", "gender": "Female", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569528}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "employeeNumber": "489", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-11", "ethnicity": null, "firstName": "Gustav", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "employeeNumber": "490", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-07-01", "ethnicity": null, "firstName": "Oskar", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-01"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "employeeNumber": "491", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "employeeNumber": "492", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "employeeNumber": "493", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Carsten", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-01"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "employeeNumber": "494", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-11", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-15"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "employeeNumber": "495", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jeremy", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "employeeNumber": "496", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "employeeNumber": "497", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": "Asian", "firstName": "Kesavan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "employeeNumber": "499", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-04-28", "ethnicity": null, "firstName": "Theodore", "gender": "Male", "genderIdentity": null, "hireDate": "2019-03-04"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "employeeNumber": "500", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-04-16", "ethnicity": null, "firstName": "Chin Liang", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-06"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "employeeNumber": "501", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-04-06", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-06"}, "emitted_at": 1710872569529}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "employeeNumber": "503", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-15", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-15"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "employeeNumber": "504", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-01", "ethnicity": null, "firstName": "Magnus", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-01"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "employeeNumber": "507", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-01", "ethnicity": "White", "firstName": "Neil", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-01"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "employeeNumber": "508", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-18", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-18"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "employeeNumber": "509", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": "White", "firstName": "Nadia", "gender": "Female", "genderIdentity": null, "hireDate": "2020-05-11"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "employeeNumber": "510", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-30", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-20"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "employeeNumber": "512", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-04-27", "ethnicity": "Asian", "firstName": "Xin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-04-27"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "employeeNumber": "513", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-05-18", "ethnicity": null, "firstName": "Krzysztof", "gender": "Male", "genderIdentity": null, "hireDate": "2020-05-18"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "employeeNumber": "514", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-22", "ethnicity": "Asian", "firstName": "Alicia", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-22"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "employeeNumber": "515", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Jon Ander", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-08"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "employeeNumber": "516", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-21", "ethnicity": "White", "firstName": "Fredrik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-05"}, "emitted_at": 1710872569530}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "employeeNumber": "517", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-08", "ethnicity": "White", "firstName": "Kent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-08"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "employeeNumber": "519", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": null, "firstName": "Victor", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "employeeNumber": "521", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-06"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "employeeNumber": "522", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": "White", "firstName": "Jack", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "employeeNumber": "523", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": "Two or More Races", "firstName": "Antonio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "employeeNumber": "524", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-06-29", "ethnicity": null, "firstName": "Aleksey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-29"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "employeeNumber": "527", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-31", "ethnicity": null, "firstName": "Leonid", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-01"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "employeeNumber": "528", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-29", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-06"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "employeeNumber": "530", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "employeeNumber": "531", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-03", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-03"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "employeeNumber": "532", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Auberie", "gender": "Female", "genderIdentity": null, "hireDate": "2020-08-01"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "employeeNumber": "533", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": null, "firstName": "Love", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569531}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "employeeNumber": "534", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-07-20", "ethnicity": "White", "firstName": "Mari", "gender": "Female", "genderIdentity": null, "hireDate": "2020-07-20"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "employeeNumber": "535", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-10-21", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-13"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "employeeNumber": "536", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-07-31", "ethnicity": null, "firstName": "Sarah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-06-10"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "employeeNumber": "537", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-31", "ethnicity": "Hispanic or Latino", "firstName": "Jaime", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-13"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "employeeNumber": "539", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Federico", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-15"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "employeeNumber": "540", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-07-01", "ethnicity": null, "firstName": "Tomaz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-07-01"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "employeeNumber": "541", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-04", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-03"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "employeeNumber": "542", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-28", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "employeeNumber": "543", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-14", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "employeeNumber": "544", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-02", "ethnicity": "White", "firstName": "Romain", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-02"}, "emitted_at": 1710872569532}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "employeeNumber": "545", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-08-24", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-24"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "employeeNumber": "546", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-10", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "employeeNumber": "547", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-01", "ethnicity": "White", "firstName": "Brendon", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "employeeNumber": "548", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Dirk", "gender": "Male", "genderIdentity": null, "hireDate": "2020-08-14"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "employeeNumber": "549", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-01", "ethnicity": "White", "firstName": "Claudio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "employeeNumber": "550", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "employeeNumber": "551", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "Blaise", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "employeeNumber": "552", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2020-08-24", "ethnicity": null, "firstName": "Adrianna", "gender": "Female", "genderIdentity": null, "hireDate": "2020-08-24"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "employeeNumber": "553", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-21", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "employeeNumber": "554", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-09-01", "ethnicity": null, "firstName": "Rafal", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "employeeNumber": "555", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-26", "ethnicity": "Asian", "firstName": "Sophean", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-01"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "employeeNumber": "556", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Aleksey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "employeeNumber": "557", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-14", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-14"}, "emitted_at": 1710872569533}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "employeeNumber": "558", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-06", "ethnicity": null, "firstName": "F\u00e1bio", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-06"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "employeeNumber": "559", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-01", "ethnicity": "White", "firstName": "Florent", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-01"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "employeeNumber": "560", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-29", "ethnicity": "White", "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "employeeNumber": "561", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Deb", "gender": "Female", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "employeeNumber": "562", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-21", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-21"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "employeeNumber": "563", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-10", "ethnicity": "White", "firstName": "Rui", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "employeeNumber": "564", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-09-28", "ethnicity": null, "firstName": "Krzysztof", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "employeeNumber": "565", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "White", "firstName": "Will", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-21"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "employeeNumber": "566", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-31", "ethnicity": null, "firstName": "Lola", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "employeeNumber": "567", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "employeeNumber": "568", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Maya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "employeeNumber": "569", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-19", "ethnicity": "White", "firstName": "Aleksandra", "gender": "Non-binary", "genderIdentity": "Non-binary", "hireDate": "2020-10-19"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "employeeNumber": "570", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-09", "ethnicity": null, "firstName": "Patricija", "gender": "Female", "genderIdentity": null, "hireDate": "2020-09-09"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "employeeNumber": "571", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-05-01", "ethnicity": "Asian", "firstName": "Sombat", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "employeeNumber": "572", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": "White", "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569534}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "employeeNumber": "573", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-10-05", "ethnicity": "White", "firstName": "Ronald", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "employeeNumber": "574", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Nadja", "gender": "Female", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "employeeNumber": "575", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-11-02", "ethnicity": null, "firstName": "Mateusz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "employeeNumber": "576", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": null, "firstName": "Reshama", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "employeeNumber": "577", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-25", "ethnicity": "White", "firstName": "Suzanne", "gender": "Female", "genderIdentity": null, "hireDate": "2020-10-05"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "employeeNumber": "578", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-31", "ethnicity": null, "firstName": "Jerushah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-09-28"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "employeeNumber": "580", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": null, "firstName": "Sergey", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "employeeNumber": "581", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-04", "ethnicity": "White", "firstName": "Alena", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "employeeNumber": "582", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Kristof", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "employeeNumber": "583", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-25", "ethnicity": null, "firstName": "Ralph", "gender": "Male", "genderIdentity": null, "hireDate": "2020-10-12"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "employeeNumber": "584", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-30", "ethnicity": "Asian", "firstName": "Akshay", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-30"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "employeeNumber": "585", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "employeeNumber": "586", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "employeeNumber": "587", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-11-02", "ethnicity": "Black or African American", "firstName": "Adrienne", "gender": "Female", "genderIdentity": null, "hireDate": "2020-11-02"}, "emitted_at": 1710872569535}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "employeeNumber": "588", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-12", "ethnicity": null, "firstName": "\u0141ukasz", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "employeeNumber": "589", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-22", "ethnicity": null, "firstName": "Christopher", "gender": null, "genderIdentity": null, "hireDate": "2020-11-16"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "employeeNumber": "590", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-04-05", "ethnicity": "Asian", "firstName": "Frank", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "employeeNumber": "591", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Hailong", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-16"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "employeeNumber": "592", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-31", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-18"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "employeeNumber": "593", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": "White", "firstName": "Aur\u00e9lien", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "employeeNumber": "594", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Jon", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "employeeNumber": "595", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2020-12-18", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "employeeNumber": "597", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": null, "firstName": "Dmytro", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "employeeNumber": "598", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-07", "ethnicity": "Two or More Races", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-07"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "employeeNumber": "599", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-01", "ethnicity": null, "firstName": "Chandler", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "employeeNumber": "600", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2020-11-09", "ethnicity": null, "firstName": "Roni", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-09"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "employeeNumber": "601", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "Black or African American", "firstName": "Sydney", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "employeeNumber": "602", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-12", "ethnicity": "Black or African American", "firstName": "Rence", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569536}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "employeeNumber": "603", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": "Two or More Races", "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-17"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "employeeNumber": "604", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-01", "ethnicity": "White", "firstName": "Darrell", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "employeeNumber": "605", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "Asian", "firstName": "Robin", "gender": "Male", "genderIdentity": null, "hireDate": "2020-11-23"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "employeeNumber": "606", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-15", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-15"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "employeeNumber": "607", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "White", "firstName": "Clair", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "employeeNumber": "608", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-21", "ethnicity": "White", "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-21"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "employeeNumber": "609", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Vaughn", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "employeeNumber": "610", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-03-19", "ethnicity": "Asian", "firstName": "Matthias", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "employeeNumber": "611", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": "White", "firstName": "Kym", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-01"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "employeeNumber": "612", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "employeeNumber": "613", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": "White", "firstName": "Elin", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-01"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "employeeNumber": "614", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Maria Luisa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "employeeNumber": "615", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "employeeNumber": "616", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "employeeNumber": "617", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-16", "ethnicity": "Asian", "firstName": "Xiaojin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569537}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "employeeNumber": "618", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-01", "ethnicity": "Asian", "firstName": "Snehal", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "employeeNumber": "619", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-04", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "employeeNumber": "620", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "employeeNumber": "621", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-01", "ethnicity": "Asian", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "employeeNumber": "622", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-16", "ethnicity": null, "firstName": "Lorenzo", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "employeeNumber": "623", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-11", "ethnicity": null, "firstName": "Anirudh", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "employeeNumber": "624", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2020-12-14", "ethnicity": "White", "firstName": "Kristin", "gender": "Female", "genderIdentity": null, "hireDate": "2020-12-14"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "employeeNumber": "626", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Tara", "gender": "Male", "genderIdentity": null, "hireDate": "2020-12-17"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "employeeNumber": "628", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-01", "ethnicity": null, "firstName": "Lavanya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-04"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "employeeNumber": "629", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-06"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "employeeNumber": "631", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-03", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "employeeNumber": "632", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-01", "ethnicity": null, "firstName": "Nicole", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "employeeNumber": "633", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Rouven", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "employeeNumber": "634", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-18", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569538}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "employeeNumber": "636", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ken", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "employeeNumber": "637", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "employeeNumber": "638", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-01-11", "ethnicity": "White", "firstName": "Claes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "employeeNumber": "639", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-01", "ethnicity": "Two or More Races", "firstName": "Kristin", "gender": "Female", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "employeeNumber": "640", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-09", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "employeeNumber": "641", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-17", "ethnicity": "Asian", "firstName": "Nikunj", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-11"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "employeeNumber": "642", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-01", "ethnicity": "White", "firstName": "Stephen", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "employeeNumber": "643", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-10", "ethnicity": "White", "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-01-19"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "employeeNumber": "644", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-08", "ethnicity": "White", "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "employeeNumber": "645", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-15", "ethnicity": "White", "firstName": "Kristian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-15"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "employeeNumber": "646", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-19", "ethnicity": null, "firstName": "Pierre", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "employeeNumber": "647", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-02-08", "ethnicity": "White", "firstName": "Merrilee", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "employeeNumber": "648", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": "White", "firstName": "Arne", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "employeeNumber": "649", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-22", "ethnicity": null, "firstName": "Karl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "employeeNumber": "650", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2020-03-23", "ethnicity": null, "firstName": "Zaw Win", "gender": "Male", "genderIdentity": null, "hireDate": "2020-03-23"}, "emitted_at": 1710872569539}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "employeeNumber": "651", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-15", "ethnicity": "White", "firstName": "Marius", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "employeeNumber": "652", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Kara", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "employeeNumber": "653", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-14", "ethnicity": "White", "firstName": "Austin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "employeeNumber": "654", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "Asian", "firstName": "Qiu Jin Jasreel", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-08"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "employeeNumber": "655", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-02-01", "ethnicity": null, "firstName": "Priya", "gender": "Female", "genderIdentity": null, "hireDate": "2021-02-01"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "employeeNumber": "656", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": null, "firstName": "Kadday", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "employeeNumber": "658", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": null, "firstName": "Natalia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "employeeNumber": "659", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Konstantinos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-02-23"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "employeeNumber": "660", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-08", "ethnicity": null, "firstName": "Torbj\u00f6rn", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-08"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "employeeNumber": "661", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-08", "ethnicity": null, "firstName": "Prashanth", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "employeeNumber": "662", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-01", "ethnicity": "White", "firstName": "Cameron", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-01"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "employeeNumber": "663", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-26", "ethnicity": "White", "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569540}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "employeeNumber": "664", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-31", "ethnicity": "Asian", "firstName": "Thao", "gender": "Female", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "employeeNumber": "665", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-03-22", "ethnicity": "Asian", "firstName": "Ravi Kiran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "employeeNumber": "666", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": "White", "firstName": "Alyssa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "employeeNumber": "667", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-11-23", "ethnicity": "Asian", "firstName": "Raushan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-23"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "employeeNumber": "668", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Markus", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "employeeNumber": "669", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": "Asian", "firstName": "Armida", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-09"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "employeeNumber": "670", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-13", "ethnicity": "White", "firstName": "Dana", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "employeeNumber": "671", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-23", "ethnicity": null, "firstName": "Barry", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "employeeNumber": "672", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "employeeNumber": "673", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": "Asian", "firstName": "Maruthi", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-08"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "employeeNumber": "674", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "employeeNumber": "675", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2021-03-15"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "employeeNumber": "676", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Guangxue", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "employeeNumber": "677", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-24", "ethnicity": null, "firstName": "Emma", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-24"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "employeeNumber": "678", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Nikita", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569541}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "employeeNumber": "679", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "employeeNumber": "680", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-01", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "employeeNumber": "681", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-02", "ethnicity": "Asian", "firstName": "Jaimie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "employeeNumber": "682", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-21", "ethnicity": null, "firstName": "Bryce", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-21"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "employeeNumber": "683", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-06", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "employeeNumber": "684", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-20", "ethnicity": null, "firstName": "Divya", "gender": null, "genderIdentity": null, "hireDate": "2021-03-22"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "employeeNumber": "685", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-15", "ethnicity": "White", "firstName": "Izabela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "employeeNumber": "688", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-18", "ethnicity": "White", "firstName": "Zofia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-01"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "employeeNumber": "689", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "Hispanic or Latino", "firstName": "Silvia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "employeeNumber": "690", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Astrid", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "employeeNumber": "691", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-01", "ethnicity": null, "firstName": "Nicolas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-01"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "employeeNumber": "692", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-24", "ethnicity": null, "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569542}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "employeeNumber": "693", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-26", "ethnicity": null, "firstName": "Elliot", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "employeeNumber": "694", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Xiaojie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "employeeNumber": "695", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Ke", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-05"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "employeeNumber": "696", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Ali", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-06"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "employeeNumber": "697", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "employeeNumber": "698", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": "Two or More Races", "firstName": "Bianca", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "employeeNumber": "699", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-19", "ethnicity": null, "firstName": "Jessica", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-19"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "employeeNumber": "700", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Ghlen", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "employeeNumber": "701", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-12", "ethnicity": "Hispanic or Latino", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-12"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "employeeNumber": "702", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-04", "ethnicity": "White", "firstName": "Antony", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-04"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "employeeNumber": "703", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Andrea", "gender": "Female", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "employeeNumber": "704", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-07", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "employeeNumber": "705", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-22", "ethnicity": "White", "firstName": "Joshua", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569543}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "employeeNumber": "706", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-03", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "employeeNumber": "707", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Carl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-09"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "employeeNumber": "708", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-14", "ethnicity": null, "firstName": "Janica", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "employeeNumber": "709", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-11", "ethnicity": null, "firstName": "Steven", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-03"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "employeeNumber": "710", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2020-06-26", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2020-06-26"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "employeeNumber": "711", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-04-26", "ethnicity": "White", "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2021-04-26"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "employeeNumber": "712", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-17", "ethnicity": "White", "firstName": "Aisling", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "employeeNumber": "713", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-01", "ethnicity": "Asian", "firstName": "Rahul", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "employeeNumber": "715", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "employeeNumber": "716", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Sandeep", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "employeeNumber": "717", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-05-17", "ethnicity": null, "firstName": "Andre", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "employeeNumber": "718", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "Asian", "firstName": "Harshit", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "employeeNumber": "719", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-09", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2021-05-10"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "employeeNumber": "720", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": "Asian", "firstName": "Senthil", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-17"}, "emitted_at": 1710872569544}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "employeeNumber": "721", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-16", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "employeeNumber": "722", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Jeff", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "employeeNumber": "723", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-26", "ethnicity": null, "firstName": "Graeme", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "employeeNumber": "724", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Shay", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "employeeNumber": "725", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-01", "ethnicity": "White", "firstName": "Heiko", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "employeeNumber": "726", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-30", "ethnicity": null, "firstName": "Arie", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-30"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "employeeNumber": "727", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-23", "ethnicity": null, "firstName": "Tselmeg", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "employeeNumber": "728", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Aleksandar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "employeeNumber": "729", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-26", "ethnicity": "White", "firstName": "Krisztian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "employeeNumber": "730", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-01", "ethnicity": null, "firstName": "Damiano", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "employeeNumber": "731", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-30", "ethnicity": "Asian", "firstName": "Alec", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "employeeNumber": "732", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-02", "ethnicity": null, "firstName": "Tianci", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "employeeNumber": "733", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2021-05-24", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-05-24"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "employeeNumber": "734", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": "Hispanic or Latino", "firstName": "Rose", "gender": "Female", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569545}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "employeeNumber": "735", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-01", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "employeeNumber": "736", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "employeeNumber": "737", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-06-28", "ethnicity": null, "firstName": "Maheswaran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-28"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "employeeNumber": "738", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-22", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-01"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "employeeNumber": "739", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "White", "firstName": "Olof", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "employeeNumber": "740", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-09", "ethnicity": "White", "firstName": "Stefanos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-09"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "employeeNumber": "741", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Karl", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "employeeNumber": "742", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-07-16", "ethnicity": "Asian", "firstName": "Nathaniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-07"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "employeeNumber": "743", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-24", "ethnicity": "Asian", "firstName": "Kimberly", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-05"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "employeeNumber": "744", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-05"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "employeeNumber": "745", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-06-25", "ethnicity": "White", "firstName": "Stewart", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-14"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "employeeNumber": "746", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-29", "ethnicity": "Asian", "firstName": "Rosalyn", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-06"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "employeeNumber": "747", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-17", "ethnicity": "Asian", "firstName": "Bhavin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-06-16"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "employeeNumber": "748", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-09-21", "ethnicity": null, "firstName": "Geeta", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "employeeNumber": "749", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-29", "ethnicity": "Two or More Races", "firstName": "Taline", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569546}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "employeeNumber": "750", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-07-06", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-06"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "employeeNumber": "751", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": "Asian", "firstName": "Chunyu", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "employeeNumber": "753", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": "White", "firstName": "Max", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "employeeNumber": "754", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-22", "ethnicity": null, "firstName": "Victor", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-07"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "employeeNumber": "755", "employmentHistoryStatus": "Part-Time", "employeeStatusDate": "2023-10-01", "ethnicity": null, "firstName": "Eija", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "employeeNumber": "756", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-25"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "employeeNumber": "757", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-02", "ethnicity": "White", "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "employeeNumber": "758", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": "Asian", "firstName": "Yi Ren", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "employeeNumber": "759", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "employeeNumber": "760", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-13", "ethnicity": "White", "firstName": "Ignacio", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "employeeNumber": "761", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-28", "ethnicity": null, "firstName": "Dominic", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "employeeNumber": "762", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-01", "ethnicity": null, "firstName": "Andr\u00e9s", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-01"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "employeeNumber": "764", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-15", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "employeeNumber": "765", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-02-04", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-11"}, "emitted_at": 1710872569547}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "employeeNumber": "766", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-19", "ethnicity": "White", "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-19"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "employeeNumber": "767", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-20", "ethnicity": null, "firstName": "Irene", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "employeeNumber": "768", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-07-15"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "employeeNumber": "769", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-09", "ethnicity": "Two or More Races", "firstName": "Medina", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "employeeNumber": "770", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": "White", "firstName": "Odise", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "employeeNumber": "771", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-20", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-01"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "employeeNumber": "772", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-02", "ethnicity": null, "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-02"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "employeeNumber": "773", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-07", "ethnicity": null, "firstName": "Dubal", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "employeeNumber": "774", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2021-07-26"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "employeeNumber": "775", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-27", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "employeeNumber": "776", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-09", "ethnicity": null, "firstName": "H\u00e9lo\u00efse", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-09"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "employeeNumber": "777", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "Ana", "gender": "Female", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "employeeNumber": "778", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "employeeNumber": "779", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Joakim", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569548}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "employeeNumber": "780", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-08", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-17"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "employeeNumber": "781", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-16", "ethnicity": "White", "firstName": "Steve", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-16"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "employeeNumber": "782", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Juan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "employeeNumber": "783", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-07", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "employeeNumber": "784", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-23", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "employeeNumber": "785", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "employeeNumber": "786", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-08-23", "ethnicity": "Two or More Races", "firstName": "Felipe", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "employeeNumber": "787", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": "White", "firstName": "Zachary", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "employeeNumber": "788", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-13", "ethnicity": null, "firstName": "Gregory", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "employeeNumber": "789", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-08-30", "ethnicity": null, "firstName": "Abdullah", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "employeeNumber": "790", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-15", "ethnicity": "White", "firstName": "Tomasz", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-15"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "employeeNumber": "791", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-23", "ethnicity": null, "firstName": "Dain", "gender": null, "genderIdentity": null, "hireDate": "2021-08-23"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "employeeNumber": "792", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-09-07", "ethnicity": null, "firstName": "Brenda", "gender": null, "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "employeeNumber": "793", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": null, "firstName": "Bastien", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "employeeNumber": "794", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "employeeNumber": "796", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-29", "ethnicity": null, "firstName": "Okta", "gender": null, "genderIdentity": null, "hireDate": "0000-00-00"}, "emitted_at": 1710872569549}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "employeeNumber": "797", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Shiny", "gender": "Male", "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "employeeNumber": "798", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-24", "ethnicity": "Asian", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "employeeNumber": "799", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-20", "ethnicity": "Asian", "firstName": "Kenju", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "employeeNumber": "800", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Neha", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "employeeNumber": "801", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-09-27", "ethnicity": null, "firstName": "Sterin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "employeeNumber": "802", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": null, "firstName": "Margaret", "gender": null, "genderIdentity": null, "hireDate": "2021-08-30"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "employeeNumber": "803", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": "Asian", "firstName": "Junxiang", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "employeeNumber": "804", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-11", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "employeeNumber": "805", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Owen", "gender": null, "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "employeeNumber": "806", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "employeeNumber": "807", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "White", "firstName": "Harley", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "employeeNumber": "808", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": null, "firstName": "Finbar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "employeeNumber": "809", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": "White", "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "employeeNumber": "810", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-29", "ethnicity": "Black or African American", "firstName": "Lydia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "employeeNumber": "811", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Amelia", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-07"}, "emitted_at": 1710872569550}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "employeeNumber": "812", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-10-27", "ethnicity": null, "firstName": "Kevin", "gender": null, "genderIdentity": null, "hireDate": "2021-09-08"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "employeeNumber": "813", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Angela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "employeeNumber": "814", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-20", "ethnicity": "Hispanic or Latino", "firstName": "Ruben", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-20"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "employeeNumber": "815", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-04", "ethnicity": "Asian", "firstName": "Connie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "employeeNumber": "816", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2021-09-08", "ethnicity": null, "firstName": "Myat", "gender": null, "genderIdentity": null, "hireDate": "2021-09-08"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "employeeNumber": "817", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Julie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-13"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "employeeNumber": "818", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "employeeNumber": "819", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Ioannis", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "employeeNumber": "820", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-15", "ethnicity": "White", "firstName": "Paulette", "gender": "Female", "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "employeeNumber": "821", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-17", "ethnicity": null, "firstName": "Shiyong", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "employeeNumber": "822", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-14", "ethnicity": "Asian", "firstName": "Cheng", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-28"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "employeeNumber": "823", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Emil", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-20"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "employeeNumber": "824", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-09-21", "ethnicity": null, "firstName": "Yeow Hong", "gender": "Male", "genderIdentity": null, "hireDate": "2021-09-21"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "employeeNumber": "825", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Florin", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "employeeNumber": "826", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": null, "firstName": "Johannes", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "employeeNumber": "827", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-11", "ethnicity": "White", "firstName": "Cassandra", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569551}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "employeeNumber": "828", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "Hispanic or Latino", "firstName": "Paulina", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "employeeNumber": "829", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-12-01", "ethnicity": null, "firstName": "Aayush", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-01"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "employeeNumber": "830", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": "Asian", "firstName": "Taran", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-17"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "employeeNumber": "831", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-29", "ethnicity": "Asian", "firstName": "Abhinav", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "employeeNumber": "832", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-02", "ethnicity": null, "firstName": "Job", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-02"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "employeeNumber": "833", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-31", "ethnicity": null, "firstName": "Chintan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-30"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "employeeNumber": "834", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": null, "firstName": "Damarius", "gender": null, "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "employeeNumber": "835", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Jianfu", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "employeeNumber": "836", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-01", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-01"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "employeeNumber": "837", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-04"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "employeeNumber": "838", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-01", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "employeeNumber": "839", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-04-15", "ethnicity": "Asian", "firstName": "Karuna", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "employeeNumber": "840", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-15", "ethnicity": "Asian", "firstName": "Omar", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "employeeNumber": "841", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-19", "ethnicity": "White", "firstName": "Hope", "gender": "Female", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "employeeNumber": "842", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Ethan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569552}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "employeeNumber": "843", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": null, "firstName": "Ben", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "employeeNumber": "844", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "employeeNumber": "845", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2024-01-26", "ethnicity": "Two or More Races", "firstName": "Nima", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "employeeNumber": "846", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-05", "ethnicity": null, "firstName": "Palanisamy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-05"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "employeeNumber": "847", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2021-12-30", "ethnicity": null, "firstName": "Timothy", "gender": null, "genderIdentity": null, "hireDate": "2021-10-11"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "employeeNumber": "848", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-24", "ethnicity": "White", "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "employeeNumber": "849", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-17", "ethnicity": "Asian", "firstName": "Benny", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "employeeNumber": "850", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-10-18", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "employeeNumber": "851", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Trevor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "employeeNumber": "852", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-24", "ethnicity": null, "firstName": "Nicola", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "employeeNumber": "853", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-25", "ethnicity": "Asian", "firstName": "Irwan", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "employeeNumber": "854", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Jon", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-18"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "employeeNumber": "855", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Alan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "employeeNumber": "856", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-09", "ethnicity": "White", "firstName": "Sefton", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "employeeNumber": "857", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2021-10-25"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "employeeNumber": "858", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-01", "ethnicity": "Two or More Races", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-01"}, "emitted_at": 1710872569553}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "employeeNumber": "859", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-04", "ethnicity": "White", "firstName": "Nicola", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "employeeNumber": "860", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "H\u00e9l\u00e8ne", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-29"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "employeeNumber": "861", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-08", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-08"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "employeeNumber": "862", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-09", "ethnicity": "White", "firstName": "Dave", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "employeeNumber": "863", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Grant", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "employeeNumber": "864", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Ye", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "employeeNumber": "865", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Molly", "gender": null, "genderIdentity": null, "hireDate": "2021-11-01"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "employeeNumber": "866", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Ansar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "employeeNumber": "867", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-11", "ethnicity": null, "firstName": "Frederick", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "employeeNumber": "868", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Lars", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "employeeNumber": "869", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-03-03", "ethnicity": null, "firstName": "Jamie", "gender": null, "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "employeeNumber": "870", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "employeeNumber": "871", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-02", "ethnicity": "White", "firstName": "Megan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "employeeNumber": "872", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-11-15", "ethnicity": null, "firstName": "Promit", "gender": null, "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "employeeNumber": "873", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Fraser", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "employeeNumber": "874", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-15", "ethnicity": "Hispanic or Latino", "firstName": "Eduardo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569554}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "employeeNumber": "875", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-03", "ethnicity": null, "firstName": "Paulo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "employeeNumber": "876", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-16", "ethnicity": "White", "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2021-11-15"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "employeeNumber": "877", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "employeeNumber": "878", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "employeeNumber": "879", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-11-22", "ethnicity": "Black or African American", "firstName": "Rahim", "gender": "Male", "genderIdentity": null, "hireDate": "2021-11-22"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "employeeNumber": "880", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-17", "ethnicity": "White", "firstName": "Susann", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-17"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "employeeNumber": "881", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Stefan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "employeeNumber": "882", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-12", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-09"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "employeeNumber": "883", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Harit", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "employeeNumber": "884", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": "Asian", "firstName": "Ravikiran", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "employeeNumber": "885", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-15", "ethnicity": "Hispanic or Latino", "firstName": "Harold", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-15"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "employeeNumber": "886", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "employeeNumber": "887", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Tushar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "employeeNumber": "888", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-15", "ethnicity": null, "firstName": "Juan Carlos", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-15"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "employeeNumber": "889", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Pamela", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-06"}, "emitted_at": 1710872569555}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "employeeNumber": "890", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-28", "ethnicity": "White", "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "employeeNumber": "891", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-26", "ethnicity": "Asian", "firstName": "Wen", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "employeeNumber": "892", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-09", "ethnicity": "Black or African American", "firstName": "Carrie", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-09"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "employeeNumber": "893", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "employeeNumber": "894", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-13", "ethnicity": "White", "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-25"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "employeeNumber": "895", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-14", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "employeeNumber": "896", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-28", "ethnicity": "Two or More Races", "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2021-12-28"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "employeeNumber": "897", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2021-12-13", "ethnicity": "White", "firstName": "Rhys", "gender": "Male", "genderIdentity": null, "hireDate": "2021-12-13"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "employeeNumber": "898", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-01-11", "ethnicity": null, "firstName": "Leonardo", "gender": null, "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "employeeNumber": "899", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "Two or More Races", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "employeeNumber": "900", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": null, "firstName": "Edward", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "employeeNumber": "901", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Rory", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "employeeNumber": "902", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-07", "ethnicity": "White", "firstName": "Katharine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "employeeNumber": "903", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-05", "ethnicity": null, "firstName": "Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-05"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "employeeNumber": "904", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-01", "ethnicity": "Asian", "firstName": "Amey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "employeeNumber": "905", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569556}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "employeeNumber": "906", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "employeeNumber": "907", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "employeeNumber": "908", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": "White", "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "employeeNumber": "909", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-19", "ethnicity": null, "firstName": "Liam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "employeeNumber": "910", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": null, "firstName": "Yuen Leung", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "employeeNumber": "911", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-03", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-03"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "employeeNumber": "912", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Joe", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "employeeNumber": "913", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-13", "ethnicity": "White", "firstName": "Simone", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "employeeNumber": "914", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-04", "ethnicity": "White", "firstName": "Katianne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "employeeNumber": "915", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-07", "ethnicity": "Asian", "firstName": "Puneet", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "employeeNumber": "918", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "employeeNumber": "919", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-06", "ethnicity": "White", "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "employeeNumber": "920", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "Asian", "firstName": "Arvind", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "employeeNumber": "921", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-15", "ethnicity": null, "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-15"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "employeeNumber": "922", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-04", "ethnicity": null, "firstName": "Lovepreet", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-04"}, "emitted_at": 1710872569557}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "employeeNumber": "923", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "employeeNumber": "924", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-28", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "employeeNumber": "925", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "Stefano", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "employeeNumber": "926", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-10", "ethnicity": "White", "firstName": "Yolande", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-10"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "employeeNumber": "927", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": "Asian", "firstName": "Sarvesh", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "employeeNumber": "929", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": "Asian", "firstName": "Yamini", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "employeeNumber": "930", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-24", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "employeeNumber": "931", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-18", "ethnicity": "White", "firstName": "Blake", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-18"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "employeeNumber": "932", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-18", "ethnicity": "Asian", "firstName": "Rajib", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-17"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "employeeNumber": "934", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "employeeNumber": "935", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "employeeNumber": "936", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-24", "ethnicity": "Hispanic or Latino", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-01-24"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "employeeNumber": "937", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-19"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "employeeNumber": "938", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-14", "ethnicity": "Asian", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-14"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "employeeNumber": "939", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "employeeNumber": "941", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-28", "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "employeeNumber": "942", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-01", "ethnicity": "White", "firstName": "Georgios", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569558}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "employeeNumber": "943", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-30", "ethnicity": "Asian", "firstName": "Yuan Yee", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "employeeNumber": "944", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Narin\u00e9", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "employeeNumber": "945", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Kim", "gender": "Female", "genderIdentity": null, "hireDate": "2022-01-31"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "employeeNumber": "946", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "employeeNumber": "947", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-23", "ethnicity": null, "firstName": "Yang", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-07"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "employeeNumber": "948", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-14", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-14"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "employeeNumber": "949", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-10", "ethnicity": "Asian", "firstName": "Tin Yan Audrey", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-10"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "employeeNumber": "950", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Ralph", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "employeeNumber": "951", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-22"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "employeeNumber": "953", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-07", "ethnicity": "Hispanic or Latino", "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "employeeNumber": "954", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-30", "ethnicity": null, "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-09"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "employeeNumber": "955", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-02-15", "ethnicity": null, "firstName": "Paula", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-15"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "employeeNumber": "956", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-06", "ethnicity": null, "firstName": "Li Kim", "gender": "Female", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "employeeNumber": "957", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "Black or African American", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "employeeNumber": "958", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-16", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-16"}, "emitted_at": 1710872569559}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "employeeNumber": "959", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Alfredo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "employeeNumber": "960", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": "White", "firstName": "Cato", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "employeeNumber": "961", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-07", "ethnicity": "Asian", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "employeeNumber": "962", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-02-28", "ethnicity": "White", "firstName": "Jacqueline", "gender": "Female", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "employeeNumber": "963", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "Asian", "firstName": "Chandra", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "employeeNumber": "964", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-18", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "employeeNumber": "965", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": "Asian", "firstName": "Yu", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "employeeNumber": "966", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-20", "ethnicity": null, "firstName": "Amanda", "gender": null, "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "employeeNumber": "967", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Masayuki", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "employeeNumber": "968", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-14", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-14"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "employeeNumber": "970", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-09", "ethnicity": "Asian", "firstName": "Rajesh", "gender": "Male", "genderIdentity": null, "hireDate": "2022-02-28"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "employeeNumber": "972", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-07"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "employeeNumber": "973", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-01", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-01"}, "emitted_at": 1710872569560}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "employeeNumber": "974", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Wanhang", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "employeeNumber": "975", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "employeeNumber": "976", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": "White", "firstName": "Mark", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "employeeNumber": "977", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": "Asian", "firstName": "Mansi", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "employeeNumber": "978", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-25", "ethnicity": "Asian", "firstName": "Narayanan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-30"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "employeeNumber": "979", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Gemma", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "employeeNumber": "980", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2022-02-22", "ethnicity": null, "firstName": "Nitin", "gender": null, "genderIdentity": null, "hireDate": "2022-02-22"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "employeeNumber": "982", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-03", "ethnicity": "White", "firstName": "Emily", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "employeeNumber": "984", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": null, "firstName": "Mounir", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "employeeNumber": "985", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-03-05", "ethnicity": null, "firstName": "Reza", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-05"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "employeeNumber": "986", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Anthony", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "employeeNumber": "987", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Trevor", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "employeeNumber": "988", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "employeeNumber": "989", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "Asian", "firstName": "Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "employeeNumber": "990", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Paolo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "employeeNumber": "991", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-12", "ethnicity": null, "firstName": "Vallyn", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "employeeNumber": "992", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-15", "ethnicity": "Asian", "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569561}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "employeeNumber": "993", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-04", "ethnicity": "Asian", "firstName": "Vishvjeet", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "employeeNumber": "994", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-16", "ethnicity": "Hispanic or Latino", "firstName": "Francisco", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-16"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "employeeNumber": "995", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Ezhilvendhan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "employeeNumber": "996", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-24", "ethnicity": "Asian", "firstName": "Wens", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "employeeNumber": "997", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "employeeNumber": "998", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-09", "ethnicity": null, "firstName": "Georgia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "employeeNumber": "1000", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-21", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-11"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "employeeNumber": "1001", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-19", "ethnicity": null, "firstName": "Anna", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-19"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "employeeNumber": "1002", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-18", "ethnicity": null, "firstName": "Ingrid", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "employeeNumber": "1003", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": "White", "firstName": "Stuart", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "employeeNumber": "1004", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-26", "ethnicity": null, "firstName": "Arjun", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-26"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "employeeNumber": "1005", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-18", "ethnicity": null, "firstName": "Anthony", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "employeeNumber": "1006", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": "White", "firstName": "Xavier", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "employeeNumber": "1007", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-02", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "employeeNumber": "1008", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Asian", "firstName": "Sharon", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "employeeNumber": "1009", "employmentHistoryStatus": "Part-Time Contractor", "employeeStatusDate": "2022-03-28", "ethnicity": null, "firstName": "Sarika", "gender": null, "genderIdentity": null, "hireDate": "2022-03-28"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "employeeNumber": "1010", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-26", "ethnicity": null, "firstName": "Bj\u00f6rn", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-07"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "employeeNumber": "1011", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Maks", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569562}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "employeeNumber": "1012", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-09", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "employeeNumber": "1013", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-19", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "employeeNumber": "1014", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Noah", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "employeeNumber": "1015", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-19", "ethnicity": null, "firstName": "Sabrina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-19"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "employeeNumber": "1016", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-06-29", "ethnicity": null, "firstName": "Erez", "gender": null, "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "employeeNumber": "1017", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-04-04", "ethnicity": null, "firstName": "Miguel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-04"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "employeeNumber": "1018", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-18", "ethnicity": null, "firstName": "Sammy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-18"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "employeeNumber": "1019", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "White", "firstName": "Jason", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "employeeNumber": "1020", "employmentHistoryStatus": "Vendor", "employeeStatusDate": "2022-04-01", "ethnicity": null, "firstName": "Dane", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "employeeNumber": "1021", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "White", "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "employeeNumber": "1022", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Jim", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "employeeNumber": "1024", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Darren", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-09"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "employeeNumber": "1025", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-12", "ethnicity": "Hispanic or Latino", "firstName": "Gaston", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "employeeNumber": "1026", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-11", "ethnicity": "Two or More Races", "firstName": "Yuki", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "employeeNumber": "1027", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-05", "ethnicity": "White", "firstName": "August", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "employeeNumber": "1028", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-30", "ethnicity": "White", "firstName": "Teodosiy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "employeeNumber": "1029", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Scott", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "employeeNumber": "1030", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-23", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569563}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "employeeNumber": "1031", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Borun", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "employeeNumber": "1032", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-02", "ethnicity": null, "firstName": "Jose", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "employeeNumber": "1033", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-05", "ethnicity": null, "firstName": "Graeme", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "employeeNumber": "1034", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "employeeNumber": "1036", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Jenny", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "employeeNumber": "1037", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-20", "ethnicity": null, "firstName": "Jean-Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-20"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "employeeNumber": "1039", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": "Hispanic or Latino", "firstName": "Federico", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "employeeNumber": "1040", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-31", "ethnicity": null, "firstName": "Josefin", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "employeeNumber": "1041", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Anders", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "employeeNumber": "1042", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-07-29", "ethnicity": "White", "firstName": "Giovani", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "employeeNumber": "1043", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-05-25", "ethnicity": "Asian", "firstName": "Rohan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-02"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "employeeNumber": "1044", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "employeeNumber": "1045", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-04-25", "ethnicity": null, "firstName": "Simone", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "employeeNumber": "1046", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-01", "ethnicity": null, "firstName": "Lidia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-01"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "employeeNumber": "1047", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-30", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "employeeNumber": "1049", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-30", "ethnicity": "White", "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-30"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "employeeNumber": "1050", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-10-31", "ethnicity": "Asian", "firstName": "Kaixuan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-04-25"}, "emitted_at": 1710872569564}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "employeeNumber": "1051", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": null, "firstName": "Felipe Lee", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "employeeNumber": "1052", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": null, "firstName": "Aleksandras", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "employeeNumber": "1053", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-21", "ethnicity": "Asian", "firstName": "Sravani", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-21"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "employeeNumber": "1054", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-05-23", "ethnicity": "White", "firstName": "Jeffrey", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "employeeNumber": "1055", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Karen", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "employeeNumber": "1056", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-01", "ethnicity": "White", "firstName": "Cydney", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "employeeNumber": "1057", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Suzanne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "employeeNumber": "1058", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Thorsten", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "employeeNumber": "1059", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Micha\u0142", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "employeeNumber": "1060", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "Hispanic or Latino", "firstName": "Pahola", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "employeeNumber": "1061", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": "White", "firstName": "Ella", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "employeeNumber": "1062", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "employeeNumber": "1063", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-02", "ethnicity": null, "firstName": "Jacob", "gender": "Male", "genderIdentity": null, "hireDate": "2022-05-23"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "employeeNumber": "1065", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Virginia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "employeeNumber": "1066", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-06", "ethnicity": "Asian", "firstName": "Danny", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "employeeNumber": "1068", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "employeeNumber": "1069", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-12", "ethnicity": "White", "firstName": "Katherine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "employeeNumber": "1070", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": "White", "firstName": "Camilla", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "employeeNumber": "1071", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Ryan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569565}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "employeeNumber": "1073", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Alexandra", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "employeeNumber": "1074", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-06-01", "ethnicity": "Asian", "firstName": "Haisheng", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "employeeNumber": "1075", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": null, "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "employeeNumber": "1076", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-06", "ethnicity": "White", "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "employeeNumber": "1077", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Pauliina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "employeeNumber": "1078", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Jens", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "employeeNumber": "1079", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Paul", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "employeeNumber": "1080", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-01", "ethnicity": null, "firstName": "Sam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "employeeNumber": "1081", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-16", "ethnicity": "Asian", "firstName": "Vama", "gender": "Female", "genderIdentity": null, "hireDate": "2022-05-31"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "employeeNumber": "1083", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "employeeNumber": "1084", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-25", "ethnicity": "White", "firstName": "Jonathan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-25"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "employeeNumber": "1085", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Stacey", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "employeeNumber": "1086", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-16", "ethnicity": "Asian", "firstName": "Sharmi", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "employeeNumber": "1087", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-17", "ethnicity": "Asian", "firstName": "Rajendran", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-26"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "employeeNumber": "1088", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Suba", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-06"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "employeeNumber": "1089", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-23", "ethnicity": "White", "firstName": "Madison", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-13"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "employeeNumber": "1090", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-23", "ethnicity": null, "firstName": "Sanjeev", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "employeeNumber": "1091", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Kevin", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569566}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "employeeNumber": "1092", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-04", "ethnicity": null, "firstName": "Maurizio", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-04"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "employeeNumber": "1093", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "employeeNumber": "1094", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-01", "ethnicity": null, "firstName": "Lovisa", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-27"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "employeeNumber": "1096", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-01", "ethnicity": null, "firstName": "Fausto", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "employeeNumber": "1097", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-11", "ethnicity": null, "firstName": "Fabian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "employeeNumber": "1098", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Jesper", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "employeeNumber": "1100", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": null, "firstName": "Imad", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "employeeNumber": "1101", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "employeeNumber": "1102", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Gloria", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "employeeNumber": "1104", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-03", "ethnicity": null, "firstName": "Padmashree", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "employeeNumber": "1105", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Caleb", "gender": null, "genderIdentity": null, "hireDate": "2022-06-15"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "employeeNumber": "1106", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-28", "ethnicity": null, "firstName": "Soumya Jyoti", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-25"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "employeeNumber": "1107", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-06-27", "ethnicity": null, "firstName": "Gustavo", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-27"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "employeeNumber": "1108", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "employeeNumber": "1110", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": "White", "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "employeeNumber": "1111", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Daniel", "gender": null, "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "employeeNumber": "1112", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Lindsay", "gender": "Female", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569567}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "employeeNumber": "1113", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-11"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "employeeNumber": "1114", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-30", "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "employeeNumber": "1115", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-18", "ethnicity": null, "firstName": "Jeferson", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "employeeNumber": "1116", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Sebastian", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "employeeNumber": "1117", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Ioan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "employeeNumber": "1118", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-28", "ethnicity": "Native Hawaiian or Other Pacific Islander", "firstName": "Assaf", "gender": "Male", "genderIdentity": null, "hireDate": "2022-06-28"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "employeeNumber": "1119", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-26", "ethnicity": null, "firstName": "Liam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "employeeNumber": "1120", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-01", "ethnicity": null, "firstName": "Konstanze", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "employeeNumber": "1121", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-09-09", "ethnicity": null, "firstName": "Philip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "employeeNumber": "1122", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-01", "ethnicity": "Hispanic or Latino", "firstName": "Santiago", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-01"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "employeeNumber": "1123", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-06-30", "ethnicity": "Two or More Races", "firstName": "Selena", "gender": "Female", "genderIdentity": null, "hireDate": "2022-06-30"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "employeeNumber": "1124", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-10", "ethnicity": null, "firstName": "Gregory", "gender": null, "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "employeeNumber": "1126", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-07-05", "ethnicity": "White", "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-05"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "employeeNumber": "1127", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Claire", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "employeeNumber": "1129", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Resa", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-31"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "employeeNumber": "1130", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Marco", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "employeeNumber": "1131", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Harsha", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569568}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "employeeNumber": "1132", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-08", "ethnicity": null, "firstName": "Eileen", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-13"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "employeeNumber": "1133", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Ivan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "employeeNumber": "1134", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": null, "firstName": "Maya", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "employeeNumber": "1135", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-01", "ethnicity": "White", "firstName": "Irena", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "employeeNumber": "1136", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": null, "firstName": "Yuval", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "employeeNumber": "1137", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": "White", "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-07-18"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "employeeNumber": "1138", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-30", "ethnicity": "Asian", "firstName": "Prakash", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "employeeNumber": "1139", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": null, "firstName": "Dennis", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "employeeNumber": "1140", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Chern Yue", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "employeeNumber": "1141", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-03", "ethnicity": null, "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-03"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "employeeNumber": "1142", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-26", "ethnicity": null, "firstName": "Paurush", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "employeeNumber": "1143", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "employeeNumber": "1144", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-26", "ethnicity": null, "firstName": "Stefano", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "employeeNumber": "1145", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Oliver", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "employeeNumber": "1146", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Grigory", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "employeeNumber": "1147", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-23", "ethnicity": null, "firstName": "Gabriel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-28"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "employeeNumber": "1148", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Waiariki", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "employeeNumber": "1149", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Ashwary", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "employeeNumber": "1150", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Pietro", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569569}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "employeeNumber": "1151", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": null, "firstName": "Siddhant", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "employeeNumber": "1152", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-16", "ethnicity": "White", "firstName": "Alessandro", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-16"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "employeeNumber": "1153", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-01", "ethnicity": "Asian", "firstName": "Gowrimani", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "employeeNumber": "1154", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-12", "ethnicity": null, "firstName": "Bryan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "employeeNumber": "1155", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-21", "ethnicity": null, "firstName": "Alexandre", "gender": null, "genderIdentity": null, "hireDate": "2022-05-03"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "employeeNumber": "1156", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-08", "ethnicity": "White", "firstName": "Bastien", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-08"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "employeeNumber": "1157", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-22", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-22"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "employeeNumber": "1158", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Christoffer", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "employeeNumber": "1159", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-07", "ethnicity": null, "firstName": "Chuck", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "employeeNumber": "1160", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-08-31", "ethnicity": null, "firstName": "Niall", "gender": null, "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "employeeNumber": "1161", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-07", "ethnicity": "White", "firstName": "Stina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "employeeNumber": "1162", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-03", "ethnicity": "Two or More Races", "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "employeeNumber": "1163", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Andrea", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "employeeNumber": "1164", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-30", "ethnicity": null, "firstName": "Jared", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-30"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "employeeNumber": "1165", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-25", "ethnicity": "Asian", "firstName": "Kumar", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-25"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "employeeNumber": "1166", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-19", "ethnicity": null, "firstName": "Fadi", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "employeeNumber": "1167", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-05", "ethnicity": null, "firstName": "Sheetal", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "employeeNumber": "1168", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-03", "ethnicity": "White", "firstName": "Mateusz", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "employeeNumber": "1169", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-08-29", "ethnicity": "Two or More Races", "firstName": "Lauren", "gender": "Female", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569570}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "employeeNumber": "1170", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-08-15", "ethnicity": null, "firstName": "Paulo", "gender": null, "genderIdentity": null, "hireDate": "2022-08-15"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "employeeNumber": "1171", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "employeeNumber": "1172", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "White", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "employeeNumber": "1173", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-09", "ethnicity": null, "firstName": "Chris", "gender": "Male", "genderIdentity": null, "hireDate": "2022-08-29"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "employeeNumber": "1174", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-07-21", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "employeeNumber": "1175", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-06", "ethnicity": "Asian", "firstName": "Joan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-06"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "employeeNumber": "1176", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-03", "ethnicity": null, "firstName": "Ariel", "gender": null, "genderIdentity": null, "hireDate": "2022-09-07"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "employeeNumber": "1177", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-09-12", "ethnicity": "Hispanic or Latino", "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "employeeNumber": "1178", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Viktoriya", "gender": null, "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "employeeNumber": "1179", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Chieh-Ling", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "employeeNumber": "1180", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": null, "firstName": "Mahir", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-09"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "employeeNumber": "1181", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Ming", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-12"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "employeeNumber": "1182", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-01-31", "ethnicity": "White", "firstName": "Filip", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-09"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "employeeNumber": "1184", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-09-19", "ethnicity": null, "firstName": "Ming", "gender": "Male", "genderIdentity": null, "hireDate": "2022-09-19"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "employeeNumber": "1185", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "Asian", "firstName": "Preeti", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "employeeNumber": "1186", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-21", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "employeeNumber": "1187", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-15", "ethnicity": null, "firstName": "Leonard", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-15"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "employeeNumber": "1188", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-31", "ethnicity": "White", "firstName": "Brie", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569571}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "employeeNumber": "1189", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-17", "ethnicity": "Asian", "firstName": "Robin", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "employeeNumber": "1190", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-10", "ethnicity": null, "firstName": "Laxman", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "employeeNumber": "1191", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Marianne", "gender": "Female", "genderIdentity": null, "hireDate": "2022-09-26"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "employeeNumber": "1192", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-17", "ethnicity": null, "firstName": "Timothy", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "employeeNumber": "1193", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-17", "ethnicity": "White", "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "employeeNumber": "1194", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-10-03", "ethnicity": null, "firstName": "Fabio", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-03"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "employeeNumber": "1195", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-19", "ethnicity": null, "firstName": "Jonas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-19"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "employeeNumber": "1196", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-13", "ethnicity": "White", "firstName": "Duncan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "employeeNumber": "1197", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2022-09-27", "ethnicity": null, "firstName": "James", "gender": null, "genderIdentity": null, "hireDate": "2021-09-27"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "employeeNumber": "1198", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Anuradha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "employeeNumber": "1199", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-05-31", "ethnicity": null, "firstName": "Catherine", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-10"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "employeeNumber": "1200", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-30", "ethnicity": "White", "firstName": "Olga", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-30"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "employeeNumber": "1201", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-14", "ethnicity": null, "firstName": "Sergii", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-14"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "employeeNumber": "1202", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Darbi", "gender": null, "genderIdentity": null, "hireDate": "2022-09-05"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "employeeNumber": "1203", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": null, "firstName": "Clint", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "employeeNumber": "1204", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": "White", "firstName": "Sofiya", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "employeeNumber": "1206", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-16", "ethnicity": null, "firstName": "Elizear", "gender": "Male", "genderIdentity": null, "hireDate": "2022-10-17"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "employeeNumber": "1207", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-01", "ethnicity": null, "firstName": "Conor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-01"}, "emitted_at": 1710872569572}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "employeeNumber": "1208", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-20", "ethnicity": null, "firstName": "Rachana", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-31"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "employeeNumber": "1209", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-10-31", "ethnicity": null, "firstName": "Alison", "gender": "Female", "genderIdentity": null, "hireDate": "2022-10-31"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "employeeNumber": "1210", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-07", "ethnicity": null, "firstName": "Nils", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "employeeNumber": "1211", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Highton", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "employeeNumber": "1212", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-15", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-07"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "employeeNumber": "1213", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-23", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "employeeNumber": "1214", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-28", "ethnicity": "Decline to answer", "firstName": "Guhan", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-28"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "employeeNumber": "1215", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-23", "ethnicity": null, "firstName": "Andreas", "gender": "Male", "genderIdentity": null, "hireDate": "2022-11-01"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "employeeNumber": "1216", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2022-01-31", "ethnicity": null, "firstName": "Kirstie", "gender": null, "genderIdentity": null, "hireDate": "2022-01-31"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "employeeNumber": "1217", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-01"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "employeeNumber": "1218", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Olivia", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-12"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "employeeNumber": "1219", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "Aaron", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "employeeNumber": "1220", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-01", "ethnicity": "White", "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-01"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "employeeNumber": "1221", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-11-21", "ethnicity": null, "firstName": "Meghan", "gender": "Female", "genderIdentity": null, "hireDate": "2022-11-21"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "employeeNumber": "1222", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-02", "ethnicity": null, "firstName": "Aman", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-02"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "employeeNumber": "1224", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-05", "ethnicity": null, "firstName": "Jarrod", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "employeeNumber": "1225", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-05", "ethnicity": null, "firstName": "Hylke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-05"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "employeeNumber": "1227", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Stacey", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569573}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "employeeNumber": "1228", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-05", "ethnicity": null, "firstName": "Gianandrea", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-05"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "employeeNumber": "1229", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-12", "ethnicity": "White", "firstName": "Peter", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-12"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "employeeNumber": "1230", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-11-15", "ethnicity": "Two or More Races", "firstName": "Eric", "gender": "Male", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "employeeNumber": "1231", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Austin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "employeeNumber": "1232", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-01", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-01"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "employeeNumber": "1233", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-19", "ethnicity": "White", "firstName": "Lori", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-19"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "employeeNumber": "1234", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-05", "ethnicity": null, "firstName": "Arun", "gender": null, "genderIdentity": null, "hireDate": "2022-12-09"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "employeeNumber": "1235", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-05", "ethnicity": null, "firstName": "Alyson", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-05"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "employeeNumber": "1236", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": "White", "firstName": "Jeppe", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "employeeNumber": "1237", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Fidaliya", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "employeeNumber": "1238", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2022-12-27", "ethnicity": null, "firstName": "Nancy", "gender": "Female", "genderIdentity": null, "hireDate": "2022-12-27"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "employeeNumber": "1239", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-03", "ethnicity": "Black or African American", "firstName": "Stacy", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-03"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "employeeNumber": "1240", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-23", "ethnicity": null, "firstName": "Dave", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-23"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "employeeNumber": "1241", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Charlie", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-11"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "employeeNumber": "1243", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Muddassir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-09"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "employeeNumber": "1244", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-01-09", "ethnicity": null, "firstName": "Giuliano", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-09"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "employeeNumber": "1245", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-21", "ethnicity": "White", "firstName": "Kent", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-21"}, "emitted_at": 1710872569574}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "employeeNumber": "1246", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Lisa", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-16"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "employeeNumber": "1247", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-30", "ethnicity": null, "firstName": "Evelina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-16"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "employeeNumber": "1248", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-01-17", "ethnicity": null, "firstName": "Ashley", "gender": "Female", "genderIdentity": null, "hireDate": "2023-01-17"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "employeeNumber": "1249", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-16", "ethnicity": null, "firstName": "Colin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-01-23"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "employeeNumber": "1250", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-13", "ethnicity": "White", "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "employeeNumber": "1251", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Rutger", "gender": null, "genderIdentity": null, "hireDate": "2022-01-01"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "employeeNumber": "1252", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-22", "ethnicity": null, "firstName": "Rebecca", "gender": "Female", "genderIdentity": null, "hireDate": "2023-02-22"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "employeeNumber": "1253", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-13", "ethnicity": null, "firstName": "Cliff", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "employeeNumber": "1254", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Sanjay", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "employeeNumber": "1255", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-04-25", "ethnicity": null, "firstName": "Juliana", "gender": null, "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "employeeNumber": "1256", "employmentHistoryStatus": "Consultant", "employeeStatusDate": "2023-02-06", "ethnicity": null, "firstName": "Taynara", "gender": null, "genderIdentity": null, "hireDate": "2023-02-06"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "employeeNumber": "1257", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": "White", "firstName": "Shawn", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "employeeNumber": "1258", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Neeraj", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "employeeNumber": "1259", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Mohit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "employeeNumber": "1260", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Rohit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569575}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "employeeNumber": "1261", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-07", "ethnicity": null, "firstName": "Vishwa", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "employeeNumber": "1262", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Sanjeev", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "employeeNumber": "1263", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-05-02", "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-02"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "employeeNumber": "1264", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-07", "ethnicity": "White", "firstName": "Caroline", "gender": "Female", "genderIdentity": null, "hireDate": "2023-03-07"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "employeeNumber": "1265", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Chauncey", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "employeeNumber": "1266", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "employeeNumber": "1267", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": "White", "firstName": "James", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "employeeNumber": "1268", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-02-20", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2023-02-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "employeeNumber": "1270", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-06", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-06"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "employeeNumber": "1271", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-03", "ethnicity": null, "firstName": "Sudhir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-03"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "employeeNumber": "1272", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Lucas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "employeeNumber": "1273", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Tomas", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-16"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "employeeNumber": "1274", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Adrian", "gender": null, "genderIdentity": null, "hireDate": "2023-01-30"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "employeeNumber": "1275", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Daevid", "gender": null, "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "employeeNumber": "1276", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-20", "ethnicity": "White", "firstName": "Dakotah", "gender": "Male", "genderIdentity": null, "hireDate": "2023-03-20"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "employeeNumber": "1277", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Laine", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "employeeNumber": "1278", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Kristine", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569576}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "employeeNumber": "1279", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Pinky", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "employeeNumber": "1280", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Arnel", "gender": null, "genderIdentity": null, "hireDate": "2023-02-13"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "employeeNumber": "1281", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Darell", "gender": null, "genderIdentity": null, "hireDate": "2022-04-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "employeeNumber": "1282", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Ferly-Ann", "gender": null, "genderIdentity": null, "hireDate": "2022-09-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "employeeNumber": "1283", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-03", "ethnicity": null, "firstName": "Lenegin", "gender": null, "genderIdentity": null, "hireDate": "2022-08-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "employeeNumber": "1284", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-03-16", "ethnicity": null, "firstName": "Albert", "gender": null, "genderIdentity": null, "hireDate": "2023-02-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "employeeNumber": "1285", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Sandy", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "employeeNumber": "1286", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-02-01", "ethnicity": null, "firstName": "Robert", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "employeeNumber": "1287", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-12-01", "ethnicity": null, "firstName": "Eloisa", "gender": null, "genderIdentity": null, "hireDate": "2022-06-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "employeeNumber": "1288", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2022-11-01", "ethnicity": null, "firstName": "Alvin", "gender": null, "genderIdentity": null, "hireDate": "2022-10-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "employeeNumber": "1289", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-27", "ethnicity": null, "firstName": "Kyle", "gender": null, "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "employeeNumber": "1290", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-11", "ethnicity": null, "firstName": "Michael", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-11"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "employeeNumber": "1291", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-03-27", "ethnicity": null, "firstName": "Christina", "gender": "Female", "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "employeeNumber": "1292", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-06-13", "ethnicity": null, "firstName": "Julia", "gender": null, "genderIdentity": null, "hireDate": "2023-03-27"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "employeeNumber": "1294", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": null, "firstName": "Frank", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-17"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "employeeNumber": "1295", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-10", "ethnicity": null, "firstName": "Ezekiel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-10"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "employeeNumber": "1297", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-04-17", "ethnicity": "White", "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-04-17"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "employeeNumber": "1298", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Yesenia", "gender": null, "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569577}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "employeeNumber": "1299", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-05-01", "ethnicity": null, "firstName": "Jeff", "gender": null, "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "employeeNumber": "1300", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-04-04", "ethnicity": null, "firstName": "Izhar", "gender": null, "genderIdentity": null, "hireDate": "2023-04-04"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "employeeNumber": "1301", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-19", "ethnicity": null, "firstName": "Nazrul", "gender": null, "genderIdentity": null, "hireDate": "2023-04-04"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "employeeNumber": "1302", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Kanaka", "gender": "Female", "genderIdentity": null, "hireDate": "2023-04-24"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "employeeNumber": "1303", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Alexander", "gender": "Male", "genderIdentity": null, "hireDate": "2023-05-01"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "employeeNumber": "1304", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-10", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "employeeNumber": "1305", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-03", "ethnicity": null, "firstName": "Divaker", "gender": null, "genderIdentity": null, "hireDate": "2023-05-03"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "employeeNumber": "1306", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Niccolo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "employeeNumber": "1307", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-25", "ethnicity": null, "firstName": "Barrett", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "employeeNumber": "1308", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-17", "ethnicity": null, "firstName": "Simone", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-17"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "employeeNumber": "1309", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-22", "ethnicity": null, "firstName": "Isabel", "gender": "Female", "genderIdentity": null, "hireDate": "2023-05-29"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "employeeNumber": "1310", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Piret", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-21"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "employeeNumber": "1311", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Xanda", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "employeeNumber": "1312", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-23", "ethnicity": null, "firstName": "Nicole", "gender": null, "genderIdentity": null, "hireDate": "2023-05-29"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "employeeNumber": "1313", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Wendy", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "employeeNumber": "1314", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "Jacob", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "employeeNumber": "1315", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "James", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "employeeNumber": "1316", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-22", "ethnicity": null, "firstName": "Liam", "gender": null, "genderIdentity": null, "hireDate": "2023-05-22"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "employeeNumber": "1317", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-26", "ethnicity": null, "firstName": "Nissanka", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569578}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "employeeNumber": "1318", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-07"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "employeeNumber": "1319", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Julian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "employeeNumber": "1320", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-11", "ethnicity": null, "firstName": "Alfred", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "employeeNumber": "1321", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-05", "ethnicity": null, "firstName": "Anshu", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-05"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "employeeNumber": "1322", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-18", "ethnicity": null, "firstName": "Simon", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-12"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "employeeNumber": "1323", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-05", "ethnicity": null, "firstName": "Lukas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-05"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "employeeNumber": "1324", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Tora", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "employeeNumber": "1325", "employmentHistoryStatus": "Fixed Term", "employeeStatusDate": "2023-09-04", "ethnicity": null, "firstName": "Elin", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "employeeNumber": "1326", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-03", "ethnicity": null, "firstName": "Julian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-03"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "employeeNumber": "1327", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-17", "ethnicity": null, "firstName": "John", "gender": null, "genderIdentity": null, "hireDate": "2023-05-19"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "employeeNumber": "1328", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Massimo", "gender": null, "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "employeeNumber": "1329", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-04-06", "ethnicity": null, "firstName": "Marius", "gender": null, "genderIdentity": null, "hireDate": "2023-04-06"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "employeeNumber": "1330", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-13", "ethnicity": null, "firstName": "Petru", "gender": null, "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "employeeNumber": "1331", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2021-08-02", "ethnicity": null, "firstName": "Szymon", "gender": null, "genderIdentity": null, "hireDate": "2021-08-02"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "employeeNumber": "1332", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-03-13", "ethnicity": null, "firstName": "Ciprian", "gender": null, "genderIdentity": null, "hireDate": "2023-03-13"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "employeeNumber": "1333", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Lorenzo", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "employeeNumber": "1334", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Alberto", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "employeeNumber": "1335", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Andrea", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569579}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "employeeNumber": "1336", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Giuseppe", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "employeeNumber": "1337", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2020-06-22", "ethnicity": null, "firstName": "Mauro", "gender": null, "genderIdentity": null, "hireDate": "2020-06-22"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "employeeNumber": "1338", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-31", "ethnicity": null, "firstName": "Guillaume", "gender": null, "genderIdentity": null, "hireDate": "2020-10-13"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "employeeNumber": "1339", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-03-21", "ethnicity": null, "firstName": "Marouane", "gender": null, "genderIdentity": null, "hireDate": "2022-03-21"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "employeeNumber": "1340", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-02-01", "ethnicity": null, "firstName": "Maxime", "gender": null, "genderIdentity": null, "hireDate": "2022-02-01"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "employeeNumber": "1341", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2022-09-28", "ethnicity": null, "firstName": "Sharon", "gender": null, "genderIdentity": null, "hireDate": "2022-09-28"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "employeeNumber": "1342", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-26", "ethnicity": null, "firstName": "Payam", "gender": null, "genderIdentity": null, "hireDate": "2023-05-26"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "employeeNumber": "1343", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-26", "ethnicity": null, "firstName": "Derek", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "employeeNumber": "1344", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-14", "ethnicity": null, "firstName": "Neha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-14"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "employeeNumber": "1345", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Mariana", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "employeeNumber": "1346", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Gloria", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "employeeNumber": "1347", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-17", "ethnicity": null, "firstName": "Fl\u00e1via", "gender": null, "genderIdentity": null, "hireDate": "2023-05-17"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "employeeNumber": "1348", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-05-08", "ethnicity": null, "firstName": "Mariana", "gender": null, "genderIdentity": null, "hireDate": "2023-05-08"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "employeeNumber": "1349", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-06-19", "ethnicity": null, "firstName": "Martin", "gender": "Male", "genderIdentity": null, "hireDate": "2023-06-19"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "employeeNumber": "1350", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-10", "ethnicity": null, "firstName": "Brittany", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "employeeNumber": "1351", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-04-24", "ethnicity": null, "firstName": "Kim", "gender": null, "genderIdentity": null, "hireDate": "2023-04-24"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "employeeNumber": "1352", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-10", "ethnicity": null, "firstName": "Lakshmi Soujanya", "gender": "Female", "genderIdentity": null, "hireDate": "2023-06-26"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "employeeNumber": "1353", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-08", "ethnicity": null, "firstName": "Mia", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-05"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "employeeNumber": "1354", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Jay Mark", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569580}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "employeeNumber": "1356", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Sheila", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "employeeNumber": "1357", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-06-20", "ethnicity": null, "firstName": "Jeffrey", "gender": null, "genderIdentity": null, "hireDate": "2023-06-20"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "employeeNumber": "1358", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-06-21", "ethnicity": null, "firstName": "Viktor", "gender": null, "genderIdentity": null, "hireDate": "2023-06-21"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "employeeNumber": "1359", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-26", "ethnicity": null, "firstName": "Clayton", "gender": null, "genderIdentity": null, "hireDate": "2023-06-07"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "employeeNumber": "1360", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Adrien", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "employeeNumber": "1361", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-17", "ethnicity": null, "firstName": "Elizabeth", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-17"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "employeeNumber": "1362", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Emily", "gender": null, "genderIdentity": null, "hireDate": "2023-06-27"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "employeeNumber": "1364", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-10-31", "ethnicity": null, "firstName": "Jaleen", "gender": null, "genderIdentity": null, "hireDate": "2023-07-10"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "employeeNumber": "1366", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-06", "ethnicity": null, "firstName": "Rafael", "gender": null, "genderIdentity": null, "hireDate": "2023-07-06"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "employeeNumber": "1367", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-01", "ethnicity": null, "firstName": "Ram", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-01"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "employeeNumber": "1368", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-07", "ethnicity": null, "firstName": "Casey", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "employeeNumber": "1369", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-07-13", "ethnicity": null, "firstName": "Jesel", "gender": null, "genderIdentity": null, "hireDate": "2023-07-13"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "employeeNumber": "1370", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Clement", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "employeeNumber": "1371", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Yizhi", "gender": "Female", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "employeeNumber": "1372", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-24", "ethnicity": null, "firstName": "Micah", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-24"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "employeeNumber": "1373", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Ahtesham", "gender": "Male", "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "employeeNumber": "1374", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Joshua", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "employeeNumber": "1375", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Asbj\u00f8rn", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-01"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "employeeNumber": "1376", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Lisa", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569581}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "employeeNumber": "1377", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Ashley", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "employeeNumber": "1378", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Shannon", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "employeeNumber": "1379", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-07-31", "ethnicity": null, "firstName": "Joan", "gender": null, "genderIdentity": null, "hireDate": "2023-07-31"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "employeeNumber": "1380", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Muhammad Arif", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "employeeNumber": "1381", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Michelle", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "employeeNumber": "1382", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-21", "ethnicity": null, "firstName": "Steve", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-21"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "employeeNumber": "1384", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-07", "ethnicity": null, "firstName": "Harjot", "gender": null, "genderIdentity": null, "hireDate": "2023-08-07"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "employeeNumber": "1385", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Ioana", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "employeeNumber": "1386", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-05", "ethnicity": null, "firstName": "Joel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-05"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "employeeNumber": "1387", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-31", "ethnicity": null, "firstName": "Theodor", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "employeeNumber": "1388", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Amanda", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "employeeNumber": "1389", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-14", "ethnicity": null, "firstName": "Nathalie", "gender": "Female", "genderIdentity": null, "hireDate": "2023-08-14"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "employeeNumber": "1390", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-08-10", "ethnicity": null, "firstName": "Marquis", "gender": null, "genderIdentity": null, "hireDate": "2023-08-10"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "employeeNumber": "1391", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-04", "ethnicity": null, "firstName": "Emerson", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-04"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "employeeNumber": "1392", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Gary", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "employeeNumber": "1393", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-09-13", "ethnicity": null, "firstName": "Limisa", "gender": null, "genderIdentity": null, "hireDate": "2023-08-29"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "employeeNumber": "1394", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-08-28", "ethnicity": null, "firstName": "Charles", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "employeeNumber": "1395", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-31", "ethnicity": null, "firstName": "Billi", "gender": null, "genderIdentity": null, "hireDate": "2023-08-24"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "employeeNumber": "1396", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-26", "ethnicity": null, "firstName": "Hugo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-08-28"}, "emitted_at": 1710872569582}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "employeeNumber": "1397", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-11", "ethnicity": null, "firstName": "Adam", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-11"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "employeeNumber": "1398", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-25", "ethnicity": null, "firstName": "Dalila", "gender": "Female", "genderIdentity": null, "hireDate": "2023-09-25"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "employeeNumber": "1399", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "employeeNumber": "1400", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-29", "ethnicity": null, "firstName": "Isak", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-01"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "employeeNumber": "1401", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Anand", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-09"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "employeeNumber": "1402", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-09-18", "ethnicity": null, "firstName": "Eli\u00e9zer", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-18"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "employeeNumber": "1403", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Donna", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "employeeNumber": "1404", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Ionut", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "employeeNumber": "1405", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-15", "ethnicity": null, "firstName": "Evgenii", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-15"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "employeeNumber": "1406", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-09-25", "ethnicity": null, "firstName": "Bryan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-09-25"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "employeeNumber": "1407", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-01", "ethnicity": null, "firstName": "Willem", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-01"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "employeeNumber": "1408", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-09", "ethnicity": null, "firstName": "Bruno", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-09"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "employeeNumber": "1409", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Denis", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "employeeNumber": "1410", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-02", "ethnicity": null, "firstName": "Andrew", "gender": null, "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "employeeNumber": "1411", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-01", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-01"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "employeeNumber": "1412", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "employeeNumber": "1413", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Joan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "employeeNumber": "1414", "employmentHistoryStatus": "LOA", "employeeStatusDate": "2023-11-29", "ethnicity": null, "firstName": "Holly", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "employeeNumber": "1415", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Cayley", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-16"}, "emitted_at": 1710872569583}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "employeeNumber": "1416", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-01", "ethnicity": null, "firstName": "Or", "gender": null, "genderIdentity": null, "hireDate": "2023-10-01"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "employeeNumber": "1417", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-18", "ethnicity": null, "firstName": "Ellen", "gender": null, "genderIdentity": null, "hireDate": "2023-10-02"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "employeeNumber": "1418", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-14", "ethnicity": null, "firstName": "Megan", "gender": null, "genderIdentity": null, "hireDate": "2021-07-14"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "employeeNumber": "1419", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2021-07-14", "ethnicity": null, "firstName": "Karyn", "gender": null, "genderIdentity": null, "hireDate": "2021-07-14"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "employeeNumber": "1420", "employmentHistoryStatus": "Vendor", "employeeStatusDate": "2023-06-08", "ethnicity": null, "firstName": "Chiara", "gender": null, "genderIdentity": null, "hireDate": "2023-06-08"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "employeeNumber": "1421", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-16", "ethnicity": null, "firstName": "Giok Han", "gender": "Male", "genderIdentity": "Male", "hireDate": "2023-10-16"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "employeeNumber": "1422", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Luke", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "employeeNumber": "1423", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2023-10-23"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "employeeNumber": "1424", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-06", "ethnicity": null, "firstName": "Ken", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-06"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "employeeNumber": "1425", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Yan Yee", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "employeeNumber": "1426", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Hannah", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "employeeNumber": "1427", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-23", "ethnicity": null, "firstName": "Stefan", "gender": null, "genderIdentity": null, "hireDate": "2023-10-23"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "employeeNumber": "1428", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Manuel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "employeeNumber": "1429", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "employeeNumber": "1430", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Sumit", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "employeeNumber": "1431", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Pagely", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "employeeNumber": "1432", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-10-30", "ethnicity": null, "firstName": "Safina", "gender": null, "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569584}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "employeeNumber": "1433", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "employeeNumber": "1434", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-06", "ethnicity": null, "firstName": "Paula", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-06"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "employeeNumber": "1435", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Alice", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "employeeNumber": "1436", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-15", "ethnicity": null, "firstName": "Suzanne", "gender": null, "genderIdentity": null, "hireDate": "2023-11-15"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "employeeNumber": "1437", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Tiarnan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "employeeNumber": "1438", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Samantha", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "employeeNumber": "1439", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-01-19", "ethnicity": null, "firstName": "Shahidah", "gender": null, "genderIdentity": null, "hireDate": "2023-10-30"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "employeeNumber": "1441", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "employeeNumber": "1443", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Anne Frederik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "employeeNumber": "1444", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-01", "ethnicity": null, "firstName": "Viktor", "gender": null, "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "employeeNumber": "1445", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2023-12-15", "ethnicity": null, "firstName": "Nikos", "gender": null, "genderIdentity": null, "hireDate": "2023-11-24"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "employeeNumber": "1446", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Nathan", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "employeeNumber": "1447", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": "Cisgender", "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "employeeNumber": "1448", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-20", "ethnicity": null, "firstName": "Jennifer", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-20"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "employeeNumber": "1449", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Jamie", "gender": null, "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "employeeNumber": "1450", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-13", "ethnicity": null, "firstName": "Yuki", "gender": null, "genderIdentity": null, "hireDate": "2023-11-13"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "employeeNumber": "1451", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Evian", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "employeeNumber": "1452", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Ashwini", "gender": "Female", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569585}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "employeeNumber": "1453", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Shradha", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "employeeNumber": "1454", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Ankit", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "employeeNumber": "1455", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-03", "ethnicity": null, "firstName": "Francesca", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-03"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "employeeNumber": "1456", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-11-27", "ethnicity": null, "firstName": "Nicholas", "gender": "Male", "genderIdentity": null, "hireDate": "2023-11-27"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "employeeNumber": "1457", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2023-11-16", "ethnicity": null, "firstName": "Tory", "gender": null, "genderIdentity": null, "hireDate": "2023-11-16"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "employeeNumber": "1458", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Christian", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "employeeNumber": "1459", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Zain", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "employeeNumber": "1460", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-13", "ethnicity": null, "firstName": "Henrik", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-13"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "employeeNumber": "1461", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Jaume", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "employeeNumber": "1462", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Sophie", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "employeeNumber": "1463", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-01", "ethnicity": null, "firstName": "Sarah", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-11"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "employeeNumber": "1464", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-04", "ethnicity": null, "firstName": "Samuel", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-04"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "employeeNumber": "1465", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-11-29", "ethnicity": null, "firstName": "Whitney", "gender": null, "genderIdentity": null, "hireDate": "2023-11-29"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "employeeNumber": "1466", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Tamer", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "employeeNumber": "1467", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Johan", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "employeeNumber": "1468", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-07", "ethnicity": null, "firstName": "Johanna", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-07"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "employeeNumber": "1469", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Marshall", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "employeeNumber": "1470", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Theo", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-06"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "employeeNumber": "1471", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Seema", "gender": "Female", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569586}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "employeeNumber": "1472", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Farren", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "employeeNumber": "1473", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Pramod", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "employeeNumber": "1474", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Brian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "employeeNumber": "1475", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Yoav", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "employeeNumber": "1476", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Konstantin", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "employeeNumber": "1477", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Hannes", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "employeeNumber": "1478", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Alfred", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "employeeNumber": "1479", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Marcus", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "employeeNumber": "1480", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Richard", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "employeeNumber": "1481", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "employeeNumber": "1482", "employmentHistoryStatus": "Intern", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Emelie", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "employeeNumber": "1483", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-18", "ethnicity": null, "firstName": "Ademir", "gender": "Male", "genderIdentity": null, "hireDate": "2023-12-18"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "employeeNumber": "1484", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Kristen", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "employeeNumber": "1485", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Andr\u00e9", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "employeeNumber": "1486", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Thar Hwe", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "employeeNumber": "1487", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-02", "ethnicity": null, "firstName": "Andrew", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-02"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "employeeNumber": "1488", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2023-12-14", "ethnicity": null, "firstName": "Ranjeet", "gender": null, "genderIdentity": null, "hireDate": "2023-12-14"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "employeeNumber": "1489", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-08", "ethnicity": null, "firstName": "Henry", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-08"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "employeeNumber": "1490", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-15", "ethnicity": null, "firstName": "Ffion", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-15"}, "emitted_at": 1710872569587}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "employeeNumber": "1491", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Brett", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "employeeNumber": "1492", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-29", "ethnicity": null, "firstName": "Elfreda", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-29"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "employeeNumber": "1493", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "William", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "employeeNumber": "1494", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": null, "firstName": "Isabella", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-16"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "employeeNumber": "1495", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Melanie", "gender": null, "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "employeeNumber": "1496", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-16", "ethnicity": null, "firstName": "John", "gender": "Male", "genderIdentity": null, "hireDate": "2024-01-16"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "employeeNumber": "1497", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Alice", "gender": "Female", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "employeeNumber": "1498", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "employeeNumber": "1499", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Thomas", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "employeeNumber": "1500", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-01-29", "ethnicity": null, "firstName": "Sunny", "gender": "Female", "genderIdentity": null, "hireDate": "2024-01-29"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "employeeNumber": "1501", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-01", "ethnicity": null, "firstName": "Kristian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-01"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "employeeNumber": "1502", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Stefanie", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "employeeNumber": "1503", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-05", "ethnicity": null, "firstName": "Jyoti", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-05"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "employeeNumber": "1504", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Karolis", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "employeeNumber": "1505", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-02-12", "ethnicity": null, "firstName": "Victoria", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-12"}, "emitted_at": 1710872569588}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "employeeNumber": "1506", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-02-19", "ethnicity": null, "firstName": "Vincent", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "employeeNumber": "1507", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Konrad", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "employeeNumber": "1508", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Makbule", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "employeeNumber": "1509", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-01-22", "ethnicity": null, "firstName": "Oleksandr", "gender": null, "genderIdentity": null, "hireDate": "2024-01-22"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "employeeNumber": "1510", "employmentHistoryStatus": "Terminated", "employeeStatusDate": "2024-02-23", "ethnicity": null, "firstName": "Purav", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-19"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "employeeNumber": "1511", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Khodor", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "employeeNumber": "1512", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Matthew", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "employeeNumber": "1513", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Sean", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "employeeNumber": "1514", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Ezra", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "employeeNumber": "1515", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Joseph", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "employeeNumber": "1516", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Christopher", "gender": "Male", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "employeeNumber": "1517", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Harsharan", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "employeeNumber": "1518", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-05", "ethnicity": null, "firstName": "Monisha", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-05"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "employeeNumber": "1519", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Ankit", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "employeeNumber": "1520", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Marcelo", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "employeeNumber": "1521", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "employeeNumber": "1522", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Marc", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-06"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "employeeNumber": "1523", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Kieron", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569589}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "employeeNumber": "1524", "employmentHistoryStatus": "HR Admin Use Only", "employeeStatusDate": "2024-02-13", "ethnicity": null, "firstName": "Sofian", "gender": null, "genderIdentity": null, "hireDate": "2024-02-13"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "employeeNumber": "1526", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Freya", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-12"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "employeeNumber": "1527", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ian", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "employeeNumber": "1528", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Carolina", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "employeeNumber": "1529", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Daniel", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "employeeNumber": "1530", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Estelle", "gender": "Female", "genderIdentity": null, "hireDate": "2024-02-26"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "employeeNumber": "1531", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-04", "ethnicity": null, "firstName": "Raymond", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-04"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "employeeNumber": "1532", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Necla", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "employeeNumber": "1533", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Sachin", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-03"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "employeeNumber": "1535", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ben", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "employeeNumber": "1536", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-22", "ethnicity": null, "firstName": "Divya", "gender": null, "genderIdentity": null, "hireDate": "2024-02-22"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "employeeNumber": "1537", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Willibrord", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "employeeNumber": "1538", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Sandra", "gender": "Female", "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "employeeNumber": "1539", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-26", "ethnicity": null, "firstName": "Roberto", "gender": null, "genderIdentity": null, "hireDate": "2024-02-29"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "employeeNumber": "1540", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Alex", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-28"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "employeeNumber": "1541", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-02-27", "ethnicity": null, "firstName": "Ed", "gender": null, "genderIdentity": null, "hireDate": "2024-02-27"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "employeeNumber": "1542", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Ananthalakshmi", "gender": "Female", "genderIdentity": null, "hireDate": "2024-04-08"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "employeeNumber": "1543", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Aditya", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "employeeNumber": "1544", "employmentHistoryStatus": "Full-Time", "employeeStatusDate": "2024-03-18", "ethnicity": null, "firstName": "Patrick", "gender": "Male", "genderIdentity": null, "hireDate": "2024-03-18"}, "emitted_at": 1710872569590}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "employeeNumber": "1545", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Stephen", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "employeeNumber": "1546", "employmentHistoryStatus": "Contractor", "employeeStatusDate": "2024-03-11", "ethnicity": null, "firstName": "Sanjana", "gender": null, "genderIdentity": null, "hireDate": "2024-03-11"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "employeeNumber": "1547", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Emre", "gender": null, "genderIdentity": null, "hireDate": "2024-04-22"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "employeeNumber": "1548", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Erik", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "employeeNumber": "1549", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Joaquim", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "employeeNumber": "1550", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Luca", "gender": null, "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "employeeNumber": "1551", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Thomas", "gender": null, "genderIdentity": null, "hireDate": "2024-05-20"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "employeeNumber": "1552", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "David", "gender": "Male", "genderIdentity": null, "hireDate": "2024-05-13"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "employeeNumber": "1553", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Grant", "gender": null, "genderIdentity": null, "hireDate": "2024-03-25"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "employeeNumber": "1554", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Steve", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "employeeNumber": "1555", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Vamshi", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "employeeNumber": "1556", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Lauren", "gender": null, "genderIdentity": null, "hireDate": "2024-04-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "employeeNumber": "1557", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Maximilien", "gender": "Male", "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "employeeNumber": "1558", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Sina", "gender": null, "genderIdentity": null, "hireDate": "2024-06-24"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "employeeNumber": "1559", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Anjaneya", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "employeeNumber": "1560", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "BhanuMurthy", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "employeeNumber": "1561", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Bindhu", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "employeeNumber": "1562", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Manju", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "employeeNumber": "1563", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Pavan", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569591}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "employeeNumber": "1564", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Prasanth", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "employeeNumber": "1565", "employmentHistoryStatus": "Sub Contractor", "employeeStatusDate": "2024-03-01", "ethnicity": null, "firstName": "Kesava", "gender": null, "genderIdentity": null, "hireDate": "2024-03-01"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "employeeNumber": "1566", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Miguel", "gender": null, "genderIdentity": null, "hireDate": "2024-06-17"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "employeeNumber": "1567", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Abhijeet", "gender": null, "genderIdentity": null, "hireDate": "2024-04-02"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "employeeNumber": "1568", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Samantha Claire", "gender": null, "genderIdentity": null, "hireDate": "2024-05-07"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "employeeNumber": "1569", "employmentHistoryStatus": null, "employeeStatusDate": null, "ethnicity": null, "firstName": "Hanyu", "gender": "Male", "genderIdentity": null, "hireDate": "2024-06-10"}, "emitted_at": 1710872569592}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "jobTitle": "Director, People Strategy", "lastName": "Taylor", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "jobTitle": "VP, Finance & Administration", "lastName": "Zawalski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "jobTitle": "Sr. People Strategy Generalist", "lastName": "Nguyen", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571029}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "jobTitle": "VP, People Strategy & Business Operations - Product and Engineering Worldwide", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "jobTitle": "Director, People Strategy", "lastName": "Almryd", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "jobTitle": "Web Program Manager", "lastName": "Agricola", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "jobTitle": "VP, Enterprise Sales, Americas", "lastName": "Fischer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "jobTitle": "President, Field Operations and Chief Operating Officer", "lastName": "Nordwall", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "jobTitle": "Chief Technology Officer", "lastName": "Rathle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571030}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "jobTitle": "Finance Director", "lastName": "Newhagen", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "jobTitle": "Principal Pre-Sales Engineer", "lastName": "De Marzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "jobTitle": "Corporate Controller", "lastName": "Calalang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "jobTitle": "Sr. Director, Global Sales Ops", "lastName": "Kaji", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Fredrickson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "jobTitle": "Regional Vice President, Sales Engineering", "lastName": "Puri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "jobTitle": "Sr. Account Executive", "lastName": "Wilcox", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571031}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "jobTitle": "Product Marketing Manager", "lastName": "Workman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "jobTitle": "Principal Pre-Sales Engineer", "lastName": "Fauth", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "jobTitle": "Senior Software Engineer", "lastName": "Davis-Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "jobTitle": "Sr. Account Executive", "lastName": "Richards", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "jobTitle": "Sr. Account Executive", "lastName": "Landeros", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "jobTitle": "Sr. Marketing Analyst", "lastName": "Fisher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "jobTitle": "Director, Technical Support", "lastName": "Gordon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571032}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "jobTitle": "Software Architect", "lastName": "Raghuram", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "jobTitle": "Corporate Controller", "lastName": "Tschetter", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "lastName": "Shirley", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "jobTitle": "Sr. Manager, Content Marketing", "lastName": "Merkl Sasaki", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "jobTitle": "Sales Ops Analyst", "lastName": "Riggs", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "jobTitle": "Principal Customer Success Architect", "lastName": "Kharwar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571033}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "jobTitle": "Account Executive", "lastName": "Richards", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "jobTitle": "Staff Developer Advocate", "lastName": "Lyon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "jobTitle": "Global Sales Compensation Director", "lastName": "Huang", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "jobTitle": "VP Channel, Americas", "lastName": "Broad", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "jobTitle": "Principal Consulting Engineer", "lastName": "Upkes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "jobTitle": "Principal Technical Support Engineer", "lastName": "Canzano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571034}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "jobTitle": "VP, Account Management", "lastName": "Sanfilippo", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "lastName": "Hall", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "jobTitle": "Regional VP, Sales, East", "lastName": "Mohr", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "jobTitle": "Salesforce Administrator", "lastName": "Competente", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "jobTitle": "Account Executive", "lastName": "Zagalsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571035}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "jobTitle": "Account Executive", "lastName": "Salas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "jobTitle": "Head of Solutions Lab", "lastName": "Svensson", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "jobTitle": "Sr. Sales Development Representative", "lastName": "Bayona", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "jobTitle": "Enterprise Renewals Manager", "lastName": "Shaw", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "jobTitle": "Renewals Team Manager - NA", "lastName": "Shin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "jobTitle": "Sr. Manager, Sales Development", "lastName": "Gaspar", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571036}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "jobTitle": "Sr. Director, Global Solutions", "lastName": "Mathur", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "jobTitle": "Account Executive", "lastName": "Caito", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "jobTitle": "Principal Consulting Engineer", "lastName": "Gabay", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "jobTitle": "Sr. Director of Product Marketing", "lastName": "Hodler", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "jobTitle": "Director, Web User Experience", "lastName": "Fitzpatrick", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "jobTitle": "Principal Technical Support Engineer", "lastName": "Bowman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571037}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "jobTitle": "Director, Global Events and Experiences", "lastName": "Boris-Schacter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "jobTitle": "Sales Development Representative", "lastName": "Sanfilippo", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "jobTitle": "SVP, Bus and Corp Dev", "lastName": "Zakariya", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "jobTitle": "Solution Engineer", "lastName": "Avrahamov", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571038}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "jobTitle": "Account Executive", "lastName": "Anthony", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "jobTitle": "Regional Vice President, Sales Engineering", "lastName": "Crowther", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "jobTitle": "VP, WW Services - Customer Success & Support", "lastName": "Nagarajan", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "lastName": "Ramanathan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "jobTitle": "Sr. Sales Development Representative", "lastName": "Guess", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "jobTitle": "Sr. Customer Success Architect", "lastName": "Maddahian", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "jobTitle": "Director, Product Management - Cloud", "lastName": "Freytag", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571039}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "jobTitle": "Vice President, North America Marketing", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "jobTitle": "Regional Vice President, Central Sales", "lastName": "Turek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "jobTitle": "A/P Staff Accountant", "lastName": "Abe", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "jobTitle": "Account Executive", "lastName": "Richard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "jobTitle": "Manager, Sales Engineering", "lastName": "Rosenblum", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "jobTitle": "Sr. Pre-Sales Engineer", "lastName": "Rivilis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571040}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "jobTitle": "Senior Director, Developer Relations & Advocacy", "lastName": "Allen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "jobTitle": "Prog Mgr, Comm Dev and Enablement", "lastName": "Wolok", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "jobTitle": "Principal Sales Engineer", "lastName": "Laurie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "jobTitle": "Sr. Sales Engineer", "lastName": "Quinsland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "jobTitle": "Customer Success Architect", "lastName": "Haces Rozada", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "jobTitle": "Sr. Program Manager", "lastName": "Janis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571041}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "jobTitle": "Chief Marketing Officer", "lastName": "Walter", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "jobTitle": "Director, Sales Engineering", "lastName": "Flavin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "jobTitle": "Regional VP, Sales, West", "lastName": "Alston", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "jobTitle": "Sr. Financial Analyst", "lastName": "Cao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "jobTitle": "Senior Developer Advocate", "lastName": "Reif", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571042}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "jobTitle": "Revenue Accountant", "lastName": "Barrameda", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "jobTitle": "Principal Solutions Engineer", "lastName": "Monk", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Lopez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "jobTitle": "Partner Marketing Manager", "lastName": "Raedeke", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "jobTitle": "Sr. Manager, Global Marketing Operations", "lastName": "Allen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "jobTitle": "Sales Engineer, Team Lead", "lastName": "Mann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "jobTitle": "Director, Content", "lastName": "Hoppa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571043}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "jobTitle": "Sr. Director of Corporate Marketing", "lastName": "Bengani", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "jobTitle": "Corporate Accounts Representative", "lastName": "Lewis", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "jobTitle": "Principal Field Engineer", "lastName": "Anthapu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "jobTitle": "Lead PM for AI & Graph Data Science", "lastName": "Graham", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "jobTitle": "Sales Development Representative", "lastName": "Ministri", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "jobTitle": "Curriculum Developer", "lastName": "Rosenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "jobTitle": "VP, Product Management, User Tools and Developer Experience", "lastName": "Tandon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571044}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "jobTitle": "Customer Success Manager", "lastName": "DiFranco", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "jobTitle": "Chief Financial Officer", "lastName": "Asher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "jobTitle": "Manager, IT", "lastName": "Ramirez", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "jobTitle": "Sr. Consulting Engineer", "lastName": "Gozaloff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "jobTitle": "Federal Alliance & Channel Manager, US", "lastName": "Krueger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "jobTitle": "Director, Cloud Programs", "lastName": "Toprani", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "jobTitle": "Enterprise Account Executive", "lastName": "McGary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571045}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "jobTitle": "Account Executive", "lastName": "Carey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "jobTitle": "Account Executive", "lastName": "Vessie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "jobTitle": "Sr. Sales Engineer", "lastName": "Fine", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "jobTitle": "Sr. Consulting Engineer", "lastName": "Andrews", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "jobTitle": "Customer Success Manager", "lastName": "Sabbagh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "jobTitle": "Trainer/Curriculum Developer", "lastName": "Freitas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "jobTitle": "Associate General Counsel", "lastName": "Chang", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "jobTitle": "Professional Services Regional Manager", "lastName": "Ciano, Jr.", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "jobTitle": "IT Engineer", "lastName": "Murray", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "jobTitle": "Account Executive", "lastName": "Cockrell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "jobTitle": "Visual Designer", "lastName": "Tiwari", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "jobTitle": "Account Executive", "lastName": "O'Donnell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "jobTitle": "Senior Director of PM for Graph Data Science", "lastName": "Frame", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Terlizzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "jobTitle": "Sr. Sales Engineer", "lastName": "Martin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "jobTitle": "Consulting Engineer", "lastName": "Perez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "jobTitle": "Account Executive", "lastName": "Liebowitz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "jobTitle": "Legal Operations Manager", "lastName": "Ramirez", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "jobTitle": "Sr. Sales Engineer", "lastName": "Tallman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "jobTitle": "Consulting Engineer", "lastName": "Cherukuri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571046}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "jobTitle": "Sr. Sales Engineer", "lastName": "Femano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "jobTitle": "Consulting Engineer", "lastName": "Lin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "jobTitle": "Director, Global Cloud and ISV Partnerships", "lastName": "Smith", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "jobTitle": "VP, Global Demand Generation", "lastName": "Hatheway", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "jobTitle": "Sales Development Representative", "lastName": "Anderson", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "jobTitle": "Sales Development Representative", "lastName": "Shaw", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "jobTitle": "Senior Counsel", "lastName": "Thompson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "jobTitle": "Solutions Engineer", "lastName": "Ball", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "jobTitle": "Director, Field Marketing", "lastName": "Neuhaus", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "jobTitle": "Consulting Engineer", "lastName": "Archer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "jobTitle": "Intern", "lastName": "Wu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "jobTitle": "Developer Advocate", "lastName": "Gandhi", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "jobTitle": "VP, Product Marketing", "lastName": "Chaudhry", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "jobTitle": "Consulting Engineer", "lastName": "Holford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "jobTitle": "Product Marketing Director", "lastName": "Wall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "jobTitle": "Lead DBaaS Support Engineer", "lastName": "Waddingham", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "jobTitle": "Solutions Engineer", "lastName": "Masilamani", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "jobTitle": "Managing Editor", "lastName": "Baumgardner", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "jobTitle": "Technical Support Engineer", "lastName": "Saran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "jobTitle": "Sr. Commercial Counsel", "lastName": "Walsh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "jobTitle": "Lead Managed Service Engineer", "lastName": "Murphy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571047}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "jobTitle": "Sr. Data Scientist", "lastName": "Alvarado", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "lastName": "McCormack", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "jobTitle": "Manager, Sales Engineering", "lastName": "Voutila", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "jobTitle": "Support Engineer", "lastName": "Chehresa", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "jobTitle": "Software Engineer", "lastName": "Lindaaker", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "jobTitle": "Senior Staff Software Engineer", "lastName": "Finn\u00e9", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "jobTitle": "Chief Scientist", "lastName": "Webber", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "jobTitle": "Head of Product Innovation & Developer Strategy", "lastName": "Hunger", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "jobTitle": "Chief Executive Officer", "lastName": "Eifr\u00e9m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "jobTitle": "Director of Engineering", "lastName": "Jones", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "jobTitle": "Outside Sales", "lastName": "Fauvet", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "jobTitle": "Subcontractor", "lastName": "Armbruster", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "jobTitle": "Regional VP of Sales, EMEA", "lastName": "Van Bruggen", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "jobTitle": "Staff Software Engineer", "lastName": "Averbuch", "location": "Remote - Finland", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "jobTitle": "Senior Software Engineer", "lastName": "Westh-Nielsen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571048}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "jobTitle": "Developer", "lastName": "Needham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "jobTitle": "Software Engineer", "lastName": "Butler-Cole", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "jobTitle": "Software Engineer", "lastName": "Vest-Hansen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "jobTitle": "SVP Engineering", "lastName": "Vejlstrup", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "jobTitle": "Senior Director, Enterprise Cloud Marketing", "lastName": "Remlinger", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "jobTitle": "Head of APAC Channel", "lastName": "Nolten", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "jobTitle": "Sales Manager, UK", "lastName": "Cheetham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "jobTitle": "Sales Director, UK", "lastName": "Flynn", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "jobTitle": "Senior Developer Marketing Manager", "lastName": "Erdl", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571049}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "jobTitle": "Developer", "lastName": "Liutovych", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "jobTitle": "Senior Staff Software Engineer", "lastName": "Hane", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "jobTitle": "Staff Software Engineer", "lastName": "Melke", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "jobTitle": "Drivers and Connectivity Lead", "lastName": "Small", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "jobTitle": "Staff Software Engineer", "lastName": "Taverner", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "jobTitle": "Developer", "lastName": "Furmanski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "jobTitle": "Developer", "lastName": "Li", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "jobTitle": "Senior Software Engineer", "lastName": "Selmer", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571050}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "jobTitle": "Pre-Sales Engineer", "lastName": "Vegter", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "lastName": "Brooks", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "jobTitle": "VP Field Engineering, EMEA & APAC", "lastName": "Kolmar", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "jobTitle": "Area Sales Manager", "lastName": "Ungermann", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "jobTitle": "Senior Software Engineer", "lastName": "Rydberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "jobTitle": "Product Manager, Aura", "lastName": "Gannon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "jobTitle": "Senior Staff Software Engineer", "lastName": "Demianenko", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "jobTitle": "Staff Software Engineer", "lastName": "Lindroth", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "jobTitle": "RVP, Sales Engineering", "lastName": "Barrasa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571051}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "jobTitle": "Sr. Marketing Manager", "lastName": "Gaudinaud Delier", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "jobTitle": "Staff Software Engineer", "lastName": "Nyman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "jobTitle": "Senior Software Engineer", "lastName": "Wernersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "jobTitle": "Director of Engineering", "lastName": "Peace", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "jobTitle": "Head of Sales, Nordics", "lastName": "Johansson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "jobTitle": "Senior Software Engineer", "lastName": "J\u00e4derberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "jobTitle": "Senior Software Engineer", "lastName": "Ytterbrink", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "jobTitle": "Information Developer", "lastName": "Scharin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "jobTitle": "Senior Software Engineer", "lastName": "Bright", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "jobTitle": "Field Engineer Consultant", "lastName": "Janko", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571052}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "jobTitle": "Director of Product Management", "lastName": "Green", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "jobTitle": "Senior Software Engineer", "lastName": "Persson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "jobTitle": "Developer", "lastName": "Teleman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "jobTitle": "RVP Sales, DACH & Emerging Regions", "lastName": "M\u00f6ller", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "jobTitle": "Senior Software Engineer", "lastName": "Priisalu", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "jobTitle": "Senior Software Engineer", "lastName": "Tassemark", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "jobTitle": "CSA Director - EMEA", "lastName": "Lourador da Rocha", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "jobTitle": "Finance Administrator EMEA", "lastName": "Killeen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "jobTitle": "Senior Software Engineer", "lastName": "Oknelid", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571053}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "jobTitle": "Field Engineer Consultant", "lastName": "Skardon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "jobTitle": "UX Specialist", "lastName": "Aleksandrov", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "jobTitle": "Staff Software Engineer", "lastName": "Plantikow", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "jobTitle": "Senior Director Finance, EMEA and APAC", "lastName": "Olsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "jobTitle": "Regional Office Manager", "lastName": "Tinz", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "jobTitle": "Field Engineer", "lastName": "Geudens", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "jobTitle": "Senior Software Engineer", "lastName": "Klar\u00e9n", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "jobTitle": "Senior Manager, EMEA Renewals", "lastName": "Samaan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "jobTitle": "Enterprise Renewals Manager", "lastName": "Carrick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "jobTitle": "Senior Software Engineer", "lastName": "Junghanns", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "jobTitle": "Technical Standards Specialist (Healthy Consulting Ltd)", "lastName": "Furniss", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571054}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "jobTitle": "Software Engineer", "lastName": "Peukert", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "jobTitle": "Senior Software Engineer", "lastName": "Kiessling", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "jobTitle": "Director of Engineering", "lastName": "Oliver", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "jobTitle": "Staff Developer Advocate", "lastName": "Cowley", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "jobTitle": "Staff Software Engineer", "lastName": "Grobbelaar", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "jobTitle": "Staff Software Engineer", "lastName": "Mayo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "jobTitle": "Senior Software Engineer", "lastName": "Owen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "jobTitle": "Developer Relations Advocate", "lastName": "Lazarevic", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "jobTitle": "Senior Software Engineer", "lastName": "Kerr", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "jobTitle": "Senior Software Engineer", "lastName": "Herfert", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "jobTitle": "Senior Corporate Account Executive - EMEA", "lastName": "Sharma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "jobTitle": "Senior Software Engineer", "lastName": "S\u00f6derstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "jobTitle": "Office Manager/HR Coordinator", "lastName": "Angelo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "jobTitle": "Staff Software Engineer", "lastName": "Meier", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Muzammil", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "jobTitle": "Field Engineer", "lastName": "Depeau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "jobTitle": "Chief Architect", "lastName": "Gioran", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "jobTitle": "VP, GTM Strategy & Execution", "lastName": "Bergqvist", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "jobTitle": "Developer", "lastName": "Jefferson", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "jobTitle": "Developer", "lastName": "Vila Verde", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "jobTitle": "Staff Software Engineer", "lastName": "Unterstein", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571055}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "jobTitle": "Staff Software Engineer", "lastName": "Firth", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "jobTitle": "Chief Solutions Architect", "lastName": "Casters", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "jobTitle": "Account Development Rep", "lastName": "Louis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "jobTitle": "Professional Services Consultant", "lastName": "Abeysekera", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "jobTitle": "Senior Software Engineer", "lastName": "Voigt", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "jobTitle": "VP, Product Management, Neo4j Database", "lastName": "Zoratti", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "jobTitle": "Senior Developer Advocate", "lastName": "Kollegger", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "jobTitle": "Staff Software Engineer", "lastName": "Simons", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "jobTitle": "Director of Engineering", "lastName": "Karaca", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "lastName": "Wendin", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "jobTitle": "RVP, Professional Services EMEA", "lastName": "Aertsen", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "jobTitle": "UX Specialist", "lastName": "Wictorin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "jobTitle": "Director of Analytics", "lastName": "\u00c5sbrink", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "jobTitle": "Sr. Delivery Consultant", "lastName": "McCrum", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "jobTitle": "Software Engineer", "lastName": "Magnusson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "jobTitle": "Staff Software Engineer", "lastName": "Palka", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "jobTitle": "Senior Software Engineer", "lastName": "Reichardt", "location": "Leipzig - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "jobTitle": "Contractor", "lastName": "Adams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "jobTitle": "Staff Software Engineer", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "jobTitle": "Staff Software Engineer", "lastName": "Pernhult", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "jobTitle": "Senior Manager, Global Data Science Programs", "lastName": "Seitz", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "jobTitle": "Senior Software Engineer", "lastName": "Lundahl", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "jobTitle": "Sr. Recruiter", "lastName": "Stevenson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571056}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "jobTitle": "Renewals Specialist", "lastName": "Iturra", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "jobTitle": "Contractor and Language Standards Advisor", "lastName": "Cannan", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "jobTitle": "Staff Software Engineer", "lastName": "Janouch", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "jobTitle": "Senior UX Specialist", "lastName": "Shkirando", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "jobTitle": "Senior Software Engineer", "lastName": "Anzmann", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "jobTitle": "Accounting Manager", "lastName": "Nilsson Sch\u00f6nfeldt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "jobTitle": "Sales Representative BeNeLux", "lastName": "Roelandts", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "jobTitle": "Intern Trainee", "lastName": "Kuijpers", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "jobTitle": "Sales Development Representative", "lastName": "Sands", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "jobTitle": "Technical Support Engineer", "lastName": "Phoulchand", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "jobTitle": "Field Engineer", "lastName": "Bello", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "jobTitle": "Software Engineer", "lastName": "D\u00f6rre", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "jobTitle": "Sales Representative, Israel", "lastName": "Kricheli", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "jobTitle": "Software Engineer", "lastName": "Hughes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "jobTitle": "Manager, IT Operations", "lastName": "Bergquist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "jobTitle": "Senior Software Engineer", "lastName": "Edwards", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "jobTitle": "Staff Security Engineer", "lastName": "Larisis", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "jobTitle": "Consulting Engineer", "lastName": "Fowler", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "jobTitle": "Senior Software Engineer", "lastName": "Roxling", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "jobTitle": "Senior Software Engineer", "lastName": "Komianou", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "lastName": "Nygren", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "jobTitle": "Enterprise Renewals Manager", "lastName": "Crick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "jobTitle": "Senior Technical Writer", "lastName": "Andersson Wright", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571057}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "jobTitle": "Manager, Professional Services", "lastName": "Bueti", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "jobTitle": "Software Engineer", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "jobTitle": "Senior Software Engineer", "lastName": "Bj\u00f6rk", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "jobTitle": "Software Engineer", "lastName": "F\u00ebshti", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "jobTitle": "Software Engineer", "lastName": "Bove", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "jobTitle": "Senior Software Engineer", "lastName": "Ivakin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Radke", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "jobTitle": "Senior Software Engineer", "lastName": "Steward", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "jobTitle": "Principal Global Compensation", "lastName": "Percell", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "jobTitle": "Field Engineer Consultant", "lastName": "Rouyer", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "jobTitle": "Senior Software Engineer", "lastName": "Bends\u00f6e", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "jobTitle": "Quality Software Engineer", "lastName": "Cutillas Carrillo", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "jobTitle": "Field Engineer/ Pre-Sales", "lastName": "Salvador", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "jobTitle": "Sales Manager, Italy", "lastName": "Ciarlo", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "jobTitle": "Intern", "lastName": "Danielsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "jobTitle": "Software Engineer", "lastName": "Heemann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "jobTitle": "Lead Product Manager", "lastName": "Malenchino", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "jobTitle": "Senior Software Engineer", "lastName": "Nyman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "jobTitle": "Senior Software Engineer", "lastName": "Horn", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "jobTitle": "Senior Software Engineer", "lastName": "Bondza", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571058}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "jobTitle": "Resource Manager, Professional Services", "lastName": "Turegano", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "jobTitle": "Lead Product Manager", "lastName": "Kennedy", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "lastName": "Fernandes", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "jobTitle": "Staff Software Engineer", "lastName": "Sznajdman", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "jobTitle": "Graph Analytics Software Engineer", "lastName": "Molchanov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "jobTitle": "Director of Engineering", "lastName": "Gaillard", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "jobTitle": "Sr. People Strategy Specialist", "lastName": "Kan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "jobTitle": "Senior Software Engineer", "lastName": "Karhapolau", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "jobTitle": null, "lastName": "Frankl", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "jobTitle": null, "lastName": "Leishman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "jobTitle": null, "lastName": "Lombardo", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "jobTitle": null, "lastName": "Montag", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "jobTitle": null, "lastName": "Sparrow", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "jobTitle": null, "lastName": "Bukhan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "jobTitle": null, "lastName": "Herzog", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "jobTitle": null, "lastName": "Eifrem", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "jobTitle": null, "lastName": "Linetsky", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "jobTitle": null, "lastName": "Duisberg", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "jobTitle": null, "lastName": "Bose", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "jobTitle": null, "lastName": "Mazique", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571059}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "jobTitle": null, "lastName": "Moll", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "jobTitle": null, "lastName": "Laucher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "jobTitle": null, "lastName": "Bastani", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "jobTitle": null, "lastName": "Stanek", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "jobTitle": null, "lastName": "Taylor", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "jobTitle": "Systems Administration Manager", "lastName": "Bates", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "jobTitle": null, "lastName": "Rice", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "jobTitle": null, "lastName": "Bhatt", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "jobTitle": null, "lastName": "Raghuram", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "jobTitle": null, "lastName": "Van Gundy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "jobTitle": null, "lastName": "Whisenant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "jobTitle": null, "lastName": "White", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "jobTitle": null, "lastName": "Forrest", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "jobTitle": null, "lastName": "Cooper", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "jobTitle": null, "lastName": "Hansen", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "jobTitle": null, "lastName": "Nixon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "jobTitle": null, "lastName": "Barlow", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "jobTitle": "Director, Developer Relations", "lastName": "Boyd", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "jobTitle": null, "lastName": "Walters", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "jobTitle": null, "lastName": "Knowles", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "jobTitle": null, "lastName": "Fauth", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "jobTitle": null, "lastName": "Carden", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571060}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "jobTitle": null, "lastName": "Nau", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "jobTitle": null, "lastName": "Borojevic", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "jobTitle": null, "lastName": "Willcoxon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "jobTitle": "Manager, Human Resources", "lastName": "Sirker", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "jobTitle": null, "lastName": "Brickman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "jobTitle": null, "lastName": "Price", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "jobTitle": null, "lastName": "Briant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "jobTitle": null, "lastName": "Palmer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "jobTitle": null, "lastName": "van Groningen a Stuling", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "jobTitle": null, "lastName": "Heard", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "jobTitle": null, "lastName": "Lorenson", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "jobTitle": null, "lastName": "Avila", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "jobTitle": null, "lastName": "Hewitt", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "jobTitle": null, "lastName": "Ismailos", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "jobTitle": null, "lastName": "Ahmad", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "jobTitle": null, "lastName": "Chao", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "jobTitle": null, "lastName": "Shi", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "jobTitle": null, "lastName": "Tsao", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "jobTitle": null, "lastName": "Wilson", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "jobTitle": null, "lastName": "Batanov", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "jobTitle": null, "lastName": "MacDonald", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "jobTitle": null, "lastName": "Urrutia", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571061}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "jobTitle": "Sr. Director Product Marketing", "lastName": "Morris", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "jobTitle": null, "lastName": "Magnus", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "jobTitle": null, "lastName": "Onyon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "jobTitle": null, "lastName": "Breimayer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "jobTitle": null, "lastName": "Chew", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "jobTitle": null, "lastName": "Jiang", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "jobTitle": null, "lastName": "Koister", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "jobTitle": null, "lastName": "March", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "jobTitle": null, "lastName": "Guyott", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "jobTitle": null, "lastName": "Falaki", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "jobTitle": "Sales Development Representative", "lastName": "Wu", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "jobTitle": null, "lastName": "Pouncey", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "jobTitle": null, "lastName": "Shin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "jobTitle": null, "lastName": "Mittal", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "jobTitle": null, "lastName": "Leung", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "jobTitle": null, "lastName": "Narayan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "jobTitle": null, "lastName": "Gondhiya", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "jobTitle": null, "lastName": "Duman", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "jobTitle": "Account Executive", "lastName": "Nelson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "jobTitle": "Intern", "lastName": "Sultan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "jobTitle": "Sales Engineer", "lastName": "Dhodapkar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "jobTitle": "CTO", "lastName": "Svensson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571062}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "jobTitle": "Developer", "lastName": "Nawroth", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "jobTitle": "Developer Evangelist", "lastName": "Neubauer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "jobTitle": "Pre-Sales Manager, EMEA", "lastName": "Montag", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "jobTitle": "Developer", "lastName": "Taylor", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "jobTitle": "Developer (Contractor)", "lastName": "Baum", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "jobTitle": "Developer", "lastName": "Robinson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "jobTitle": "Developer (Contractor)", "lastName": "\u00d6berg", "location": "Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "jobTitle": "Director of Engineering", "lastName": "Granvik", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "jobTitle": "Developer (Contractor)", "lastName": "Simpson", "location": "New Zeeland", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "jobTitle": "Community Manager", "lastName": "Lindh", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "jobTitle": "Inside Representative", "lastName": "Verbikas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "jobTitle": "Inside Representative", "lastName": "Schumann", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "jobTitle": "Assistant", "lastName": "Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "jobTitle": "Developer", "lastName": "Grohmann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "jobTitle": "Developer", "lastName": "Wieczorek", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "jobTitle": "Area Sales Director", "lastName": "Temme", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "jobTitle": "Field Engineer", "lastName": "Laucher", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571063}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "jobTitle": "Product Engineer", "lastName": "Vilaca", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "jobTitle": "Product Engineer", "lastName": "Sumrall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "jobTitle": "Field Engineer Consultant", "lastName": "Cailliau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "jobTitle": "Outside Sales", "lastName": "Marlin", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "jobTitle": "Sales Development Representative", "lastName": "Thainuruk", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "jobTitle": "Office Assistant", "lastName": "Zagajewski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "jobTitle": "Product Engineer", "lastName": "Baker", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "jobTitle": "Product Engineer", "lastName": "Kalderstam", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "jobTitle": "Global Support Manager", "lastName": "Leto", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "jobTitle": "Developer", "lastName": "Fernandes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "jobTitle": "Intern", "lastName": "Yang", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "jobTitle": "Senior Software Engineer", "lastName": "\u00c5kerlund", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "jobTitle": "Office Assistant", "lastName": "K\u00f6hler", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "jobTitle": "UX Designer", "lastName": "Dias", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "jobTitle": "Strategic Account Development Rep", "lastName": "Haiderzada", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "jobTitle": "Strategic Account Development Rep", "lastName": "Moultson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "jobTitle": "Field Engineer Consultant", "lastName": "Simard", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "jobTitle": "Product Manager", "lastName": "Ask", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "jobTitle": "Intern Trainee", "lastName": "Wang", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "jobTitle": "Marketing Digital Manager", "lastName": "Ismailos", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "jobTitle": "Contractor", "lastName": "Vilee", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571064}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "jobTitle": "Intern", "lastName": "Egli", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "jobTitle": "Intern", "lastName": "Hellstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "jobTitle": "Software Engineer", "lastName": "Sporre", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "jobTitle": "Developer", "lastName": "Kaznowski", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "jobTitle": "Developer", "lastName": "Stutz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "jobTitle": "Intern", "lastName": "Blomstergren", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "jobTitle": "Field Engineer", "lastName": "Lindfors", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "jobTitle": "Product Manager", "lastName": "Steer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "jobTitle": "Strategic Account Development Rep", "lastName": "Omer-Houssein", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "jobTitle": "Software Engineer", "lastName": "Damian", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "jobTitle": "Sales Manager, UK", "lastName": "Hall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "jobTitle": "Developer", "lastName": "Koval", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "jobTitle": "Intern", "lastName": "Olsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "jobTitle": "Intern", "lastName": "Lindell", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "jobTitle": "Intern", "lastName": "Ode", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "jobTitle": "Intern", "lastName": "Nordwall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "jobTitle": "Intern", "lastName": "Hamberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "jobTitle": "Intern", "lastName": "Amidani", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "jobTitle": "Intern", "lastName": "Libkin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "jobTitle": "Account Manager", "lastName": "Urrutia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "jobTitle": "Intern (Contractor)", "lastName": "M\u00f6ller", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "jobTitle": "Intern", "lastName": "Hirani", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "jobTitle": "Intern", "lastName": "Meyer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571065}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "jobTitle": "Intern", "lastName": "van der Linde", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "jobTitle": "Office Assistant", "lastName": "Jensen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "jobTitle": "Software Engineer", "lastName": "Gazzola", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "jobTitle": "Senior Software Engineer", "lastName": "Messallem", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "jobTitle": "Software Engineer", "lastName": "Andersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "jobTitle": "Consulting Engineer", "lastName": "De Jong", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Senechal", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "jobTitle": "Software Engineer", "lastName": "Maksymiw", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "jobTitle": "Senior Software Engineer", "lastName": "K\u00e4llqvist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "jobTitle": "Senior Software Engineer", "lastName": "Woods", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "jobTitle": "Software Engineer", "lastName": "Kuner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "jobTitle": "Senior Software Engineer", "lastName": "Nikolov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "jobTitle": "HR Coordinator", "lastName": "Thas\u00e9n", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "jobTitle": "VP, Global Renewals, Customer Success, & Education", "lastName": "Brophy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "jobTitle": "Partner Solutions Architect", "lastName": "Dookhee", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "jobTitle": "Director, Demand Generation Programs", "lastName": "Astashkina", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "jobTitle": "Senior Data Engineer", "lastName": "Fritz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "jobTitle": "Manager, Recruiting", "lastName": "Roberts", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "jobTitle": "Full Stack Developer Relations Engineer", "lastName": "Harris", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "jobTitle": "Sales Representative France", "lastName": "Mary", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "jobTitle": "Account Executive", "lastName": "Lewis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "jobTitle": "Senior Revenue Accountant", "lastName": "Tran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571066}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "jobTitle": "Account Executive", "lastName": "Kinsella", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "jobTitle": "Account Executive", "lastName": "Coltart", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "jobTitle": "Sr. Director of Product Marketing", "lastName": "Balakrishnan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "jobTitle": "Sr. Sales Engineer", "lastName": "Malhotra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "jobTitle": "VP, Global Indirect Sales", "lastName": "Connon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "jobTitle": "Sr. Sales Engineer", "lastName": "Marino", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "jobTitle": "Recruiting Specialist", "lastName": "Kruschke", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "jobTitle": "Sr. Pre-Sales Engineer", "lastName": "Paczosa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "jobTitle": "Senior Software Engineer", "lastName": "Lendvai", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "jobTitle": "Senior Customer Success Architect", "lastName": "Pecollet", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "jobTitle": "Senior Technical Writer", "lastName": "Popova", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "jobTitle": "Technical Recruiter, EMEA", "lastName": "Raun-Petersen", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "jobTitle": "Sr. Account Executive Nordics", "lastName": "Eriksson", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "jobTitle": "Field Engineer/ Pre-Sales", "lastName": "L\u00f6fqvist", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "jobTitle": "EMEA Head of Channels and Alliances", "lastName": "Schlosser", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "jobTitle": "Sr. Analyst, Commercial Excellence", "lastName": "Berninger", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "jobTitle": "Sr. Revenue Accountant", "lastName": "Strandt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "jobTitle": "Senior Software Engineer", "lastName": "De Llano Balcells", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "jobTitle": "Staff Software Engineer", "lastName": "Wilhelmsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "jobTitle": "Sr. Director, Sales Development", "lastName": "Depaoli", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "jobTitle": "Enterprise Renewals Manager", "lastName": "Taveras", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "jobTitle": "Enterprise Renewals Manager", "lastName": "O'Neil", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571067}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "jobTitle": "Director of Technology Partner Marketing", "lastName": "Baron", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "jobTitle": "Account Executive", "lastName": "McLaughlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "jobTitle": "RVP, Professional Services - Americas", "lastName": "Kane", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "jobTitle": "Field Marketing Manager, West/Central Region", "lastName": "Bartel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "jobTitle": "Renewals Team Manager - NA", "lastName": "Merhar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "jobTitle": "Graph Data Science Director", "lastName": "Dathar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "jobTitle": "Sr. SFDC Developer", "lastName": "Noges", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "jobTitle": "Associate Communications Generalist", "lastName": "Ayesha", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "jobTitle": "Professional Services Team Lead", "lastName": "Vyas", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "jobTitle": "Sales Director, ANZ", "lastName": "Philipp", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "jobTitle": "Principal Architect Engineer", "lastName": "Yu", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "jobTitle": "Senior Software Consultant", "lastName": "Hare", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "jobTitle": "Director, Customer Success Architects", "lastName": "Shiposh", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "jobTitle": "Sr. Recruiter", "lastName": "Khan", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "jobTitle": "Recruiter", "lastName": "Perry", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "jobTitle": "Enterprise Renewals Manager", "lastName": "Urban", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "jobTitle": "Enterprise Rep. Switzerland/Austria", "lastName": "Frei", "location": "Remote - Switzerland", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "jobTitle": "Senior Software Engineer", "lastName": "Holmberg Ohlsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Martignon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "jobTitle": "Manager, Corporate Renewals", "lastName": "Durrant", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "jobTitle": "Trainer/Curriculum Developer", "lastName": "Lund", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "jobTitle": "Corporate Account Executive", "lastName": "Acar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571068}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "jobTitle": "Project Director", "lastName": "Geary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "jobTitle": null, "lastName": "Resources", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "jobTitle": "Sr. Global Deals Desk Analyst", "lastName": "Festler", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "jobTitle": "Enterprise Account Executive, Northeast", "lastName": "Ankori", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "jobTitle": "Sr. Accountant", "lastName": "Stachura", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "jobTitle": "Software Engineer", "lastName": "Hedengran", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "jobTitle": "Software Engineer", "lastName": "Damkj\u00e6r", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "jobTitle": "Staff Software Engineer", "lastName": "Heap", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "jobTitle": "Staff Software Engineer", "lastName": "Dixon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "jobTitle": "Senior Consultant", "lastName": "Weske", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "jobTitle": "Senior Product Manager", "lastName": "Macaskill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "jobTitle": "Manager, Sales Development", "lastName": "Bell", "location": "Boston - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "jobTitle": "Sales Development Representative", "lastName": "Han", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "jobTitle": "VP, Global Cloud Field Operations", "lastName": "Nair", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "jobTitle": "Temp", "lastName": "Chen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "jobTitle": "APAC Head of Channels and Alliances", "lastName": "Heng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "jobTitle": "Sr. Pre Sales Engineer, OEM", "lastName": "Kyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "jobTitle": "Senior Product Manager", "lastName": "Shelmerdine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "jobTitle": "Staff Security Engineer", "lastName": "Hellfalk", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "jobTitle": "Senior Technical Writer", "lastName": "Dewhurst", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "jobTitle": "Sales Development Manager EMEA", "lastName": "McDermott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "jobTitle": "Director, CRM", "lastName": "Gainsbourg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571069}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "jobTitle": "Field Engineer", "lastName": "Thompson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "jobTitle": "Field Engineer", "lastName": "Jin", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "jobTitle": "Senior Software Engineer", "lastName": "Kaczmarek", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "jobTitle": "Contractor", "lastName": "Leung", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "jobTitle": "Lead Customer Success Manager, EMEA", "lastName": "Maguregi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "jobTitle": "Senior Director of Engineering", "lastName": "Clementson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "jobTitle": "Sr. Sales Engineer", "lastName": "Stroker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "jobTitle": "Senior Software Engineer", "lastName": "Ricart", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "jobTitle": "VP, Product Marketing", "lastName": "Packer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "jobTitle": "Software Engineer", "lastName": "Waudby", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "jobTitle": "Senior Software Engineer", "lastName": "Barcelos de Araujo", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "jobTitle": "Senior Software Engineer", "lastName": "Karasavov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "jobTitle": "Scientific Advisor", "lastName": "Libkin", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "jobTitle": "Creative Director", "lastName": "Koscher", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "jobTitle": "Senior Software Engineer", "lastName": "Lindberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "jobTitle": "Manager, Technical Support", "lastName": "Stott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "jobTitle": "Director, Enterprise Cloud Marketing", "lastName": "Marceau", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "jobTitle": "Senior Software Engineer", "lastName": "Leifland", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "jobTitle": "Senior ISV Account Executive", "lastName": "Jansdotter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "jobTitle": "Sales Development Representative", "lastName": "Kerns", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "jobTitle": "Data Scientist", "lastName": "Guido", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "jobTitle": "Sr. Manager, Technology Partner Marketing", "lastName": "D'Anna", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571070}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "jobTitle": "Field Engineer PreSales", "lastName": "Preli", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "lastName": "Bratanic", "location": "Remote - Slovenia", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Diggins", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "jobTitle": "Field Engineer PreSales", "lastName": "Katzdobler", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "jobTitle": "Software Engineer", "lastName": "Starns", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "jobTitle": "Sr. Sales Development Rep - France", "lastName": "Dumaine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "jobTitle": "Sr. Sales Engineer", "lastName": "Davis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "jobTitle": "Enterprise Account Executive", "lastName": "Eklund", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "jobTitle": "Account Executive", "lastName": "Peak", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "jobTitle": "Contractor (Dirk Aschoff)", "lastName": "Aschoff", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "jobTitle": "Senior Software Engineer", "lastName": "Gallina", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "jobTitle": "Corporate Account Executive", "lastName": "Sullivan", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "jobTitle": "Sr. Manager, Analyst Relations", "lastName": "James", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "jobTitle": "Senior Communications Associate", "lastName": "Dyczkowsky", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "jobTitle": "Senior Software Engineer", "lastName": "Wiss", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "jobTitle": "Contractor (Rafal Janicki)", "lastName": "Janicki", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "jobTitle": "Sales Development Representative", "lastName": "Lim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "jobTitle": "Staff Software Engineer", "lastName": "Dukhovniy", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "jobTitle": "Senior Manager, Web Operations and Development", "lastName": "Dessert", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571071}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "jobTitle": "Senior Software Engineer", "lastName": "Botelho", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "jobTitle": "Senior Software Engineer", "lastName": "Biville", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Lewis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "jobTitle": "Managing Editor", "lastName": "Cameron", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Freeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "jobTitle": "Software Engineer", "lastName": "Cachopo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "jobTitle": "Director, Global Client Services Operations", "lastName": "Wroclawski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "jobTitle": "Head of Aura Self Service Growth", "lastName": "Kuffel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "jobTitle": "EMEA Counsel", "lastName": "Oladunjoye", "location": "Remote - EMEA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "jobTitle": "Software Engineer", "lastName": "Gerhardsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "jobTitle": "Sr. Director, Product Marketing", "lastName": "Sampath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "jobTitle": "IT Engineer", "lastName": "Virtanen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "jobTitle": "Graphic Designer", "lastName": "Valentinuzzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "jobTitle": "Contractor", "lastName": "Southivorarat", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "jobTitle": "Field Engineer PreSales", "lastName": "Bessi", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "jobTitle": "Sr. Customer Success Manager", "lastName": "Ellis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "jobTitle": "Senior Software Engineer", "lastName": "M\u00fcller", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "jobTitle": "Senior Software Engineer", "lastName": "Sulima", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "jobTitle": "Consultant", "lastName": "Shaikh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "jobTitle": "Project Director", "lastName": "Keeley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "jobTitle": "Global Integrated Campaign Manager", "lastName": "Williams-Gracey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571072}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "jobTitle": "Staff Software Engineer", "lastName": "Zaporozhtsev", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "jobTitle": "Senior Software Engineer", "lastName": "Hramyka", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "jobTitle": "Director GDS Technology", "lastName": "Neys", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "jobTitle": "Partner Solutions Architect", "lastName": "Janke", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "jobTitle": "Product Manager", "lastName": "Urmaliya", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "jobTitle": "Director, Product Management", "lastName": "Blewett", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "jobTitle": "Software Engineer", "lastName": "Donath", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "jobTitle": "Technical Support Engineer", "lastName": "Kincaid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "jobTitle": "Software Engineer", "lastName": "Dziedziul", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Lim", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Yao", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "jobTitle": "Enterprise Account Executive", "lastName": "Hou", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "jobTitle": "Software Engineer", "lastName": "Vincent", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "jobTitle": "Senior Software Engineer", "lastName": "Arena", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "jobTitle": "Senior Software Engineer", "lastName": "Besga", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "jobTitle": "Enterprise Account Executive", "lastName": "Ruffalo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "jobTitle": "Senior Software Engineer", "lastName": "Tverdiakov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "jobTitle": "Software Engineer", "lastName": "Modarres", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "jobTitle": "Director, Global Cloud Sales", "lastName": "Kaaa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "jobTitle": "Consulting Engineer", "lastName": "Das", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "jobTitle": "Sr. Sales Engineer", "lastName": "Beckett", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "jobTitle": "Sr. Manager of Digital Marketing", "lastName": "Holt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571073}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "jobTitle": "Developer Advocate", "lastName": "Andersson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "jobTitle": "Senior Software Engineer", "lastName": "Warde", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "jobTitle": "Sales Director, China", "lastName": "Fong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "jobTitle": "Senior Product Manager", "lastName": "King", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "jobTitle": "Data Science Advocate", "lastName": "Sullivan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "jobTitle": "VP, Global Cloud Partnerships", "lastName": "Lassiter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "jobTitle": "Consulting Engineer", "lastName": "Franz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "jobTitle": "Consulting Engineer Intern", "lastName": "Ling", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "jobTitle": "Director, OEM Sales", "lastName": "McIntosh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "jobTitle": "Enterprise Renewals Manager", "lastName": "Clifford", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "jobTitle": "Deal Desk Specialist", "lastName": "Stakeberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "jobTitle": "Product Manager", "lastName": "Raviol", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "jobTitle": "Enterprise Account Executive", "lastName": "Welch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "jobTitle": "Pre-Sales Engineer", "lastName": "McNamara", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "jobTitle": "Sr. Sales Engineer", "lastName": "Wu", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "jobTitle": "Solutions Engineer", "lastName": "Maid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "jobTitle": "Outbound Team Lead", "lastName": "Klein", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "jobTitle": "Associate Cloud & Alliances Sales Manager", "lastName": "McCarthy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "jobTitle": "Vice President, APAC Marketing", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "jobTitle": "Site Reliability Engineer", "lastName": "Fundar\u00f3", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "jobTitle": "Solutions Engineer Intern", "lastName": "Kamath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "jobTitle": "Chief People Officer", "lastName": "Cabot", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "jobTitle": "Sr. Director, Product Marketing", "lastName": "Jana", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571074}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "jobTitle": "Copywriter", "lastName": "Ramakrishnan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "jobTitle": "Marketing Automation Lead", "lastName": "Bonander", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "jobTitle": "Senior Software Engineer", "lastName": "Schill Collberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "jobTitle": "Manager, People Operations", "lastName": "Fridvall", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "jobTitle": "Software Engineer", "lastName": "Bauer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "jobTitle": "Technical Support Engineer", "lastName": "Levett", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "jobTitle": "Enterprise Account Executive", "lastName": "Fogarty", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "jobTitle": "Sales Development Representative", "lastName": "Isseks", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "jobTitle": "Director, Global Core Customer Success", "lastName": "Nordahl", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "jobTitle": "Account Executive", "lastName": "De Stefano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "jobTitle": "Technical Support Engineer", "lastName": "Stone", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "jobTitle": "VP, Sales APAC", "lastName": "Vora", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "jobTitle": "Software Engineer", "lastName": "Cathcart", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "jobTitle": "Competitive and Enablement Product Marketing Director", "lastName": "Lindsey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "jobTitle": "Senior Field Marketing Manager", "lastName": "Peterson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "jobTitle": "Director of Engineering", "lastName": "Hasselqvist", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "jobTitle": "Field Engineer PreSales", "lastName": "Halftermeyer", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "jobTitle": "Senior Manager, Corporate Events", "lastName": "Parsons", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "jobTitle": "Senior Software Engineer", "lastName": "Fischereit", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "jobTitle": "Software Engineer", "lastName": "Morrison", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "jobTitle": "Contractor", "lastName": "Htet", "location": "Remote - Myanmar", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Conjeaud", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "jobTitle": "Content Strategist", "lastName": "O'Shee", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "jobTitle": "Sales Development Representative", "lastName": "Fischer", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "jobTitle": "Sales Development Representative", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "jobTitle": "Consulting Engineer", "lastName": "Jacob", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "jobTitle": "Field Engineer PreSales", "lastName": "Oucif", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "jobTitle": "Technical Writer", "lastName": "Ivakina", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "jobTitle": "Senior Software Engineer", "lastName": "Alexoglou", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "jobTitle": "Senior Analyst", "lastName": "Axelsson", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "jobTitle": "Aura Support Engineer", "lastName": "Padmanabha", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "jobTitle": "Associate Customer Success Architect", "lastName": "Moore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "jobTitle": "Sales Engineer", "lastName": "Woolford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "jobTitle": "Senior Marketing Strategy and Operations Manager", "lastName": "Duong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "jobTitle": "Professional Services Engineer", "lastName": "Ponduri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "jobTitle": "Director, People Strategy - GTM and G&A Worldwide", "lastName": "Stoddard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "jobTitle": "Salesforce Developer", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "jobTitle": "Head of EMEA Legal", "lastName": "Bollmann", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "jobTitle": "Accounting Manager", "lastName": "Mandadero", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "jobTitle": "Enterprise Account Executive", "lastName": "Catalano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "jobTitle": "UK Country Director", "lastName": "McDermott", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "jobTitle": "VP, Global Sales Enablement", "lastName": "Enright", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "lastName": "Prithivirajan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571076}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "jobTitle": "Principal Research Engineer", "lastName": "Clarkson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "jobTitle": "Corporate Account Executive", "lastName": "Kaiser", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "jobTitle": "Senior Software Engineer", "lastName": "Cao", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "jobTitle": "Senior Software Engineer", "lastName": "Nash", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "jobTitle": "Associate Art Director", "lastName": "Patwari", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "jobTitle": "Software Engineer", "lastName": "Parnell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "jobTitle": "Senior Product Manager", "lastName": "Moore", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "jobTitle": "Graph Data Science Product Manager", "lastName": "Chung", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "jobTitle": "Senior Software Engineer", "lastName": "Sampson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "jobTitle": "Senior Technical Writer", "lastName": "Woulfe", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "jobTitle": "Recruiter", "lastName": "Narayanan", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "jobTitle": "Software Engineer", "lastName": "\u015amietana", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "jobTitle": "Sales Development Representative - DACH Region", "lastName": "Iwanska", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "jobTitle": "Accounts Receivable Specialist", "lastName": "Miramontes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "jobTitle": "Legal Contractor", "lastName": "Meijer", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "jobTitle": "Consulting Engineer Team Leader", "lastName": "Mervaillie", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "jobTitle": "Managing Editor, Blog", "lastName": "Zimmerman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "jobTitle": "Senior Software Engineer", "lastName": "Jalgard", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "jobTitle": "Software Engineer", "lastName": "Yang", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Ding", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "jobTitle": "Staff Software Engineer", "lastName": "Ince", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "jobTitle": "Sales Director", "lastName": "Shirley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571077}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "jobTitle": "Global Cloud Deal Desk Analyst", "lastName": "Loubser", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "jobTitle": "Sales Development Rep - Iberia & Italy Region", "lastName": "Cannella", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "jobTitle": "Contractor", "lastName": "Nagels", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "jobTitle": "Customer Success Architect", "lastName": "Mirabal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "jobTitle": "Senior Software Engineer", "lastName": "Butterfield", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "jobTitle": "LATAM Channel & Alliances Manager", "lastName": "Cerqueira", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "jobTitle": "VP of Marketing, EMEA", "lastName": "Coulston", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "jobTitle": "Sales Development Representative", "lastName": "Robert", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "jobTitle": "Regional Director", "lastName": "Mackey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "jobTitle": "General Counsel", "lastName": "Spataro", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "jobTitle": "Senior Corporate Account Executive - EMEA", "lastName": "Lee", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "jobTitle": "IT Cloud System Administrator", "lastName": "McFie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "jobTitle": "Freelancer", "lastName": "Berger", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "jobTitle": "Sales Engineer", "lastName": "Wasserman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "jobTitle": "People Strategy Partner", "lastName": "O'Donovan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "jobTitle": "Enterprise Account Executive", "lastName": "Tenglikar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "jobTitle": "UX Specialist", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "jobTitle": "Technical Support Engineer", "lastName": "Reehall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "jobTitle": "RVP, Sales Latin America", "lastName": "Serpa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "jobTitle": "Senior Software Engineer", "lastName": "Singhvi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "jobTitle": "Intern", "lastName": "Rogova", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Chidambaram", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "jobTitle": "Software Engineer", "lastName": "Sandberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571078}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "jobTitle": "Senior Product Manager", "lastName": "Gagnon", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "jobTitle": "Sr. Account Executive", "lastName": "Coffey", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "jobTitle": "Senior Field Marketing Manager", "lastName": "Egan-Malagisi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "jobTitle": "Head of Sales DACH", "lastName": "Sch\u00f6nfelder", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "jobTitle": "Sales Director", "lastName": "Chapman", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "jobTitle": "Software Engineer", "lastName": "Baasan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "jobTitle": "Consulting Engineer", "lastName": "Simeunovic", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "jobTitle": "Senior Software Engineer", "lastName": "Heisz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Mondardo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "jobTitle": "Web Development Intern", "lastName": "Nicdao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "jobTitle": "UI/UX Design Intern", "lastName": "Gong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "jobTitle": "Contractor", "lastName": "Daschner", "location": "Munich - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "jobTitle": "Customer Success Manager", "lastName": "Joyce", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "jobTitle": "Sr. Sales Engineer", "lastName": "Longley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "jobTitle": "Director of Engineering", "lastName": "Wollert Ehlers", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "jobTitle": "Software Engineer", "lastName": "Gurunathan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "jobTitle": "Sr. Manager of Partner Marketing", "lastName": "Mcveigh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "jobTitle": "Software Engineer", "lastName": "Englund", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "jobTitle": "Software Engineer", "lastName": "Giagkiozis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "jobTitle": "Sales Director, Nordics", "lastName": "Sj\u00f6borg", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "jobTitle": "Corporate Account Executive", "lastName": "Ma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571079}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "jobTitle": "Sales Development Representative", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "jobTitle": "Sr. Account Executive", "lastName": "Cherry", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "jobTitle": "Business Systems Analyst (Jr. Salesforce Admin)", "lastName": "Jordan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "jobTitle": "VP, Global Revenue Operations", "lastName": "Santa Elena", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "jobTitle": "Customer Success Associate", "lastName": "Shah", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "jobTitle": "Talent Acquisition Manager, EMEA", "lastName": "Sood", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "jobTitle": "Director of Social Media Marketing", "lastName": "Felix", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "jobTitle": "Enterprise Account Executive", "lastName": "Deangelis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "jobTitle": "Consulting Engineer", "lastName": "Wilson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "jobTitle": "Intern", "lastName": "Gustafsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "jobTitle": "Intern", "lastName": "Fagerstr\u00f6m Winkelmann", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "jobTitle": "Senior Software Engineer", "lastName": "Werner", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "jobTitle": "Lead PM, Aura Platform", "lastName": "Baker", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "jobTitle": "USA Federal Channel & Alliances Director", "lastName": "Bean", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "jobTitle": "Senior Software Engineer", "lastName": "Sum", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "jobTitle": "Consulting Engineer", "lastName": "Pavia", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "jobTitle": "Senior Software Engineer", "lastName": "Cord\u00f3n Castillo", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Teo", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "jobTitle": "Senior Software Engineer", "lastName": "Ortiz Corrales", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "jobTitle": "Enterprise Account Executive", "lastName": "Gurney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "jobTitle": "Senior Commercial Counsel", "lastName": "Hogue", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "jobTitle": "Sr. Recruiter", "lastName": "Klick", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "jobTitle": "Staff Security Engineer", "lastName": "Michlin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571080}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "jobTitle": "Contractor", "lastName": "Preusse", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "jobTitle": "Sales Development Rep - Nordics", "lastName": "Miyan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "jobTitle": "GDS Sales Specialist", "lastName": "Vila", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "jobTitle": "Sales Development Rep - UK/Benelux", "lastName": "Pickering", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "jobTitle": "Lead Product Manager", "lastName": "Pollard", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "jobTitle": "Senior Software Engineer", "lastName": "Carias", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "jobTitle": "Senior Field Marketing Manager", "lastName": "Pan", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "jobTitle": "Technical Support Engineer", "lastName": "Salmon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "jobTitle": "Office Manager", "lastName": "Anderson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "jobTitle": "Software Engineer", "lastName": "Fernandez Vidal", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "jobTitle": "Field Engineer PreSales", "lastName": "De Luca", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "jobTitle": "Senior Security Engineer", "lastName": "B\u00fclow", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "jobTitle": "Director Alliances and Channels", "lastName": "Davis", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "jobTitle": "Enterprise Account Executive", "lastName": "Pendergast", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "jobTitle": "Sr. Manager, Customer Marketing", "lastName": "Ortiz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "jobTitle": "Sales Engineer", "lastName": "Fournier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "jobTitle": "Technical Support Engineer", "lastName": "Ogden", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Smart", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "jobTitle": "Sr. Sales Engineer", "lastName": "Nunes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "jobTitle": "Data Science Product Specialist", "lastName": "Blumenfeld", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "jobTitle": "Software Engineer", "lastName": "Hibberd", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "jobTitle": "Software Engineer", "lastName": "Farrukh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "jobTitle": "Senior Software Engineer", "lastName": "Bara\u0144ski", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571081}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "jobTitle": "Digital Marketing Coordinator", "lastName": "Yoshizumi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "jobTitle": "Digital Graphic Design Contractor", "lastName": "Muldoon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "jobTitle": "Senior Software Engineer", "lastName": "Lou\u00ebrat", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "jobTitle": "Field Engineer PreSales", "lastName": "Down", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "jobTitle": null, "lastName": "Integration", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "jobTitle": "Developer Advocate", "lastName": "Zhu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "lastName": "Thein", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "jobTitle": "Senior Software Engineer", "lastName": "Wagatsuma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "jobTitle": "Senior Field Marketing Manager", "lastName": "Jamwal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "jobTitle": "Technical Support Engineer", "lastName": "Jacob", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "jobTitle": "Digital Events Specialist", "lastName": "Cascio", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "jobTitle": "Software Engineer", "lastName": "Chen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "jobTitle": "Regional Director, Customer Success", "lastName": "Stevens", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "jobTitle": "Contractor", "lastName": "Robertson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "jobTitle": "Software Engineer", "lastName": "Charbel", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "jobTitle": "Software Engineer", "lastName": "Bates", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "jobTitle": "Senior Software Engineer", "lastName": "Good", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "jobTitle": "Sr. Data Scientist", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "jobTitle": "Accounting/Payroll Manager", "lastName": "Browne", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "jobTitle": "Director Demand Generation, Database Marketing", "lastName": "Krupnik", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "jobTitle": "Salesforce Administrator", "lastName": "Wienberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "jobTitle": "Sales Development Representative", "lastName": "Soter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "jobTitle": "Strategic Sales Development Representative", "lastName": "Beraza", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571082}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "jobTitle": "Sr. Revenue Accountant", "lastName": "Aquino", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "lastName": "Phoo", "location": "Remote - Thailand", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "jobTitle": "Senior Director, Developer Community", "lastName": "Hamel", "location": "Remote - Canada", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "jobTitle": "Director of Engineering", "lastName": "Ful\u00f6p", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "jobTitle": "Senior Software Engineer", "lastName": "Panagiotas", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "jobTitle": "Federal Sales Development Representative", "lastName": "Buchheim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "lastName": "Feng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "jobTitle": "Solutions Engineer Intern", "lastName": "Zhao", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "jobTitle": "Manager, Sales Engineering - ANZ", "lastName": "Pastor", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "jobTitle": "APAC Head of Channels and Alliances", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "jobTitle": "Director of Engineering", "lastName": "Manole", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "jobTitle": "RVP, EMEA South", "lastName": "Putters", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "jobTitle": "Sr. People Strategy Partner", "lastName": "Geraghty", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "jobTitle": "Sr. Revenue Accountant", "lastName": "Aguilera Salgado", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Bhardwaj", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "jobTitle": "Sr. Partner Manager", "lastName": "Radia", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "jobTitle": "Sr. Customer Success Manager", "lastName": "Jain", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "jobTitle": "Customer Success Manager", "lastName": "Maelane", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "jobTitle": "Consulting Engineer", "lastName": "Desai", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "jobTitle": "Field Marketing Specialist", "lastName": "Harvell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "jobTitle": "Sales Development Representative", "lastName": "Zhu", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "jobTitle": "Senior Director, Strategy and Innovation", "lastName": "Moore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "jobTitle": "Customer Success Architect", "lastName": "Macintosh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "jobTitle": "Cloud Channel Director", "lastName": "Ward", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "jobTitle": "Sr. Financial Analyst", "lastName": "Jain", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "jobTitle": "Senior Software Engineer", "lastName": "Ahmad", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "jobTitle": "Director of Product Led Marketing Demand Generation", "lastName": "Gifford", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "jobTitle": "Sr. Recruiter", "lastName": "Scheetz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "jobTitle": "Director Global Cloud Channel Architecture", "lastName": "Lackey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "jobTitle": "Digital Events Specialist", "lastName": "Boyd", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "jobTitle": "Sr. Sales Engineer", "lastName": "Imani", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Kounder", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "jobTitle": "Customer Success Operations Analyst Intern", "lastName": "Nordahl", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Conacher", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "jobTitle": "Enterprise Account Executive", "lastName": "Kusuma", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "jobTitle": "Principal, Digital Marketing", "lastName": "Wardell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "jobTitle": "Corporate Events Manager", "lastName": "Martel", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "jobTitle": "Senior Technical Writer", "lastName": "Vitucci", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Butar Butar", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "jobTitle": "Video Production Manager", "lastName": "Bettinger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "jobTitle": "Vice President, IT", "lastName": "Foley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "jobTitle": "Talent Acquisition Manager, EMEA", "lastName": "Owens", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Smith", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "jobTitle": "Senior Software Engineer", "lastName": "Wright", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571084}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "jobTitle": "Enterprise Account Executive", "lastName": "Schumacher", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "jobTitle": "Product Manager", "lastName": "Sanchez", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "jobTitle": "Enterprise Account Executive", "lastName": "Jansen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "jobTitle": "Sr. Project Director", "lastName": "Dunbar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "jobTitle": "Senior Software Engineer", "lastName": "Lodge", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "jobTitle": "Enterprise Account Executive", "lastName": "Chen", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "jobTitle": "Content Coordinator", "lastName": "Faris", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "jobTitle": "Research Engineer", "lastName": "Rafique", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "jobTitle": "Technical Recruiter, EMEA", "lastName": "Hill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "jobTitle": "Software Engineer", "lastName": "Korduner", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "jobTitle": "Competitive Analyst Consultant", "lastName": "Thrift", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "jobTitle": "Director, Global Corporate Sales", "lastName": "Schwalbe", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "jobTitle": "Director, Graph Data Science Product Marketing", "lastName": "Tomlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "jobTitle": "Graphic Designer", "lastName": "Pattnaik", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "jobTitle": "Sr. Account Executive", "lastName": "Hodgson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "jobTitle": "Corporate Account Executive - LatAm", "lastName": "Godinho", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "jobTitle": "Enterprise Account Executive, LatAm", "lastName": "Farias", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "jobTitle": "Senior Field Marketing Manager", "lastName": "Robinson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571085}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "jobTitle": "Enterprise Account Executive", "lastName": "Holt", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "jobTitle": "Chief Information Security Officer", "lastName": "Fox", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "jobTitle": "Corporate Account Executive", "lastName": "Azizzi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "jobTitle": "Field Marketing Director, UK/IE & Benelux", "lastName": "Brunner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "jobTitle": "Director of Engineering", "lastName": "Hagman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "jobTitle": "Sales Development Representative", "lastName": "Dean", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "jobTitle": "Channel and Alliances Director", "lastName": "Iplani", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "jobTitle": "Software Engineer", "lastName": "Basavaraj Sulikeri", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "jobTitle": "Consulting Engineer", "lastName": "Agudelo Ramirez", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "jobTitle": "VP, Global Customer Support", "lastName": "Pettibon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "jobTitle": "Enterprise Account Executive", "lastName": "Mehta", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "jobTitle": "Consulting Engineer", "lastName": "Rosito", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "jobTitle": "Content Strategist", "lastName": "Kulik", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "jobTitle": "VP, Global Talent", "lastName": "Byrnes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "jobTitle": "RVP, Customer Success, Americas", "lastName": "Yao", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "jobTitle": "Sr. Salesforce Administrator", "lastName": "Stallings", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "jobTitle": "Salesforce Administrator", "lastName": "Lindsey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Burns", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "jobTitle": "VP, Federal Enterprise Sales", "lastName": "Dorchinsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "jobTitle": "Field Marketing Manager", "lastName": "Weissenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "jobTitle": "Senior Software Engineer", "lastName": "Emmas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "jobTitle": "Sales Development Representative", "lastName": "Carneiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "jobTitle": "Sr. Operations Engineer", "lastName": "Chiboucas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "jobTitle": "Product Manager", "lastName": "Randall", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "jobTitle": "Senior Software Engineer", "lastName": "Steele", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "jobTitle": "Data Science Solution Architect", "lastName": "Roberts", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "jobTitle": "VP, Legal", "lastName": "Roualet", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "jobTitle": "Sales Engineer", "lastName": "Mahajan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "jobTitle": "Field Engineer PreSales", "lastName": "Jarasch", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "jobTitle": "Software Engineer", "lastName": "Johansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "jobTitle": "Software Engineer", "lastName": "Paul", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "jobTitle": "Account Executive", "lastName": "Rodr\u00edguez Infantes", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "jobTitle": "Senior Security Engineer", "lastName": "Baker", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "jobTitle": "Engagement Manager, Professional Services EMEA", "lastName": "Tang", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "jobTitle": "VP Sales, EMEA", "lastName": "Broom", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "jobTitle": "Director, Alliances and Channels", "lastName": "Greenberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "jobTitle": "Office Manager", "lastName": "Pardorla", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "jobTitle": "Director, Alliances and Channels", "lastName": "Dickson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "jobTitle": "Sr. Solutions Architect", "lastName": "Garg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "jobTitle": "Sales Development Representative", "lastName": "Moran", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "jobTitle": "Sales Development Representative", "lastName": "Moss", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "jobTitle": "RVP, Customer Success - EMEA", "lastName": "Ramachandran", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "jobTitle": "Engagement Manager, EMEA", "lastName": "Loginovskaja", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "jobTitle": "Technical Support Engineer", "lastName": "Kaur", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "jobTitle": "Sales Development Representative", "lastName": "Zabriskie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "jobTitle": "Enterprise Account Executive", "lastName": "Harvey", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "jobTitle": "Product Manager", "lastName": "Simonelli", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "jobTitle": "Senior Manager, Developer Community", "lastName": "Poirier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "jobTitle": "Solutions Engineer Intern", "lastName": "Kulkarni", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "jobTitle": "Sales Development Manager", "lastName": "Sriperumbuduru", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "jobTitle": "Senior Accountant", "lastName": "Ciesla", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "jobTitle": "North America Cloud Channel Director", "lastName": "Dickey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "jobTitle": "VP, Product Management, Cloud", "lastName": "Rashid", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "jobTitle": "EMEA Channel & Alliances Manager", "lastName": "Atkinson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "jobTitle": "Senior Software Engineer", "lastName": "Giles", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "jobTitle": "Strategic Sales Development Representative", "lastName": "De Souza", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "jobTitle": "Field Operations Analyst", "lastName": "Uebel", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Kang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "jobTitle": "Principal Legal Counsel, Employment Law, EMEA", "lastName": "Tholander", "location": "Remote - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "jobTitle": "Lead Product Manager", "lastName": "Pond", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "jobTitle": "Research Engineer", "lastName": "Theodorakis", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "jobTitle": "Enterprise Account Executive", "lastName": "Sim", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "jobTitle": "Senior Social Media Manager", "lastName": "Tchintian", "location": "Remote - Argentina", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "jobTitle": "Sr. Account Executive", "lastName": "Le", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "jobTitle": "Customer Success Architect", "lastName": "Carney", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Liu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "jobTitle": "Sr. Customer Success Architect", "lastName": "Gerlt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "jobTitle": "Head of Marketing, Nordics (Senior Manager)", "lastName": "Wang", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "jobTitle": "Director PreSales EMEA South", "lastName": "Pawlik", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "jobTitle": "Sr. Competitive Intelligence Analyst", "lastName": "Kramer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "jobTitle": "Consulting Engineer", "lastName": "Reyes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "jobTitle": "Intern", "lastName": "Alston", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "jobTitle": "Head of Field Marketing (Senior Manager) LATAM", "lastName": "Pimentel", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "jobTitle": "People Strategy & Talent Acquisition Lead, APAC", "lastName": "Chen", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "jobTitle": "Senior Front-End Developer", "lastName": "Austin-Walker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "jobTitle": "Software Engineer", "lastName": "Webb", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "jobTitle": "Consulting Engineer", "lastName": "Rubin", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "jobTitle": "Consulting Engineer", "lastName": "Johannessen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "jobTitle": "Developer Advocacy Manager", "lastName": "Koo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "jobTitle": "Sr. Accounting Manager", "lastName": "Goff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "jobTitle": "Chief Marketing Officer", "lastName": "Rangan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "jobTitle": "Enterprise Account Executive", "lastName": "Derey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "jobTitle": "Self-Serve Growth Analyst", "lastName": "Luo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "jobTitle": "Digital Graphic Design Contractor", "lastName": "Venso", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Hyugaji", "location": "Remote - Japan", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "Woods", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "jobTitle": "Technical Support Engineer", "lastName": "Thennan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "jobTitle": "Customer Success Manager", "lastName": "Gorham", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "jobTitle": "Software Engineer", "lastName": "Leaver", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "jobTitle": "UX Specialist", "lastName": "Zhao", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "jobTitle": "Senior Software Engineer", "lastName": "Holgersson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "jobTitle": "Senior Security Engineer", "lastName": "Dunwoody", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "jobTitle": "Consulting Engineer Intern", "lastName": "Vyas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "jobTitle": "Consulting Engineer Intern", "lastName": "Krishnan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "jobTitle": "Software Engineer", "lastName": "Lamont", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "jobTitle": "Graphic Designer", "lastName": "Rane", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "jobTitle": "Sales Development Rep - Benelux", "lastName": "Harber", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "jobTitle": "Technical Support Engineer", "lastName": "Babari", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "jobTitle": "Enterprise Account Executive", "lastName": "Pahlevi", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "jobTitle": "Sr. Sales Engineer", "lastName": "Krinsky", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "jobTitle": "Community Specialist", "lastName": "Swatek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "jobTitle": "Sales Development Rep - UK Corporate", "lastName": "Masters", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "jobTitle": "Senior Customer Success Architect", "lastName": "Subbiah Shunmugathai", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "jobTitle": "Sales Engineer", "lastName": "Delano", "location": "Remote - Mexico", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "jobTitle": "Senior UX/Visual Designer", "lastName": "Murphy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "jobTitle": "People Operations Manager", "lastName": "Szetu", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "jobTitle": "Sr. Customer Success Manager", "lastName": "Chowdhary", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "jobTitle": "IT Engineer", "lastName": "C\u00e1ndido", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Vezhavendhan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "jobTitle": "Sr. Manager of Product Marketing", "lastName": "Gerdyman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "jobTitle": "Technical Support Engineer", "lastName": "Agland-Williams", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "jobTitle": "EMEA Recruiter", "lastName": "Williams", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "jobTitle": "Global Sr. Sales Compensation Manager", "lastName": "Tacchi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "jobTitle": "Software Engineer", "lastName": "Sjerling", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "jobTitle": "Technical Support Engineer", "lastName": "Caldwell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "jobTitle": "Consulting Engineer", "lastName": "Green", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "jobTitle": "VP of Marketing Operations", "lastName": "Kurpad", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "jobTitle": "Consultant", "lastName": "Gatlin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Pilas", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "jobTitle": "Sr. Customer Success Architect", "lastName": "Graham", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "jobTitle": "Senior Product Marketing Manager, SaaS Growth", "lastName": "Loh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "jobTitle": "Graphic Artist and Video Editor", "lastName": "Chavan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "jobTitle": "Intern", "lastName": "Magnusson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "jobTitle": "Intern", "lastName": "Epsteins", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "jobTitle": "Intern", "lastName": "Malmstr\u00f6m", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "jobTitle": "Intern", "lastName": "Nord", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "jobTitle": "Software Engineer", "lastName": "Mayerhofer", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "jobTitle": "Executive Assistant", "lastName": "Beatan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "jobTitle": "SEO Specialist Contractor", "lastName": "Kanaan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "jobTitle": "Enterprise Account Executive", "lastName": "Garcia", "location": "Remote - Mexico", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "jobTitle": "Sales Engineer", "lastName": "Dagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "jobTitle": "Consulting Engineer", "lastName": "Booth", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "jobTitle": "Outside Counsel", "lastName": "Clapson", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "jobTitle": "Talent Operations Specialist", "lastName": "Holmes", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "jobTitle": "Global Deal Desk Manager", "lastName": "Hedin", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "jobTitle": "Senior Pre-Sales Consultant", "lastName": "Wood", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "jobTitle": "Consulting Engineer", "lastName": "Guitart", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "jobTitle": "Senior Commercial Counsel", "lastName": "Matsushima", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "jobTitle": "Sales Development Representative", "lastName": "Boland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "jobTitle": "Senior Software Engineer", "lastName": "Minchev", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "jobTitle": "Developer Organic Marketing", "lastName": "Fulton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "jobTitle": "Query Language Designer", "lastName": "Lovitz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "jobTitle": "Senior Software Engineer", "lastName": "Shi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "jobTitle": "Sr. Sales Engineer", "lastName": "Machado", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "jobTitle": "Contractor", "lastName": "Harris", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "jobTitle": "Staff Security Engineer - Security Practitioner", "lastName": "Goodwin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "jobTitle": "Software Engineer", "lastName": "Quach", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "jobTitle": "Sales Engineer UK", "lastName": "Guerin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "jobTitle": "Project Director", "lastName": "Barona", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "jobTitle": "Security Engineer", "lastName": "Book J\u00f6nsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "jobTitle": "Software Engineer", "lastName": "M\u00e5nsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "lastName": "Pacheco", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "jobTitle": "Federal Enterprise Sales Executive", "lastName": "Oswal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "jobTitle": "Consulting Engineer", "lastName": "Gomez", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "jobTitle": "Software Engineer", "lastName": "Gammicchia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "jobTitle": "Technical Writer", "lastName": "Zuin de Moura", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "jobTitle": "Senior Software Engineer", "lastName": "Orosz", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "jobTitle": "Senior Software Engineer", "lastName": "Harvey", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "jobTitle": "Enterprise Account Executive", "lastName": "Zhu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Razo", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "jobTitle": "Senior Security Engineer", "lastName": "Spiridenkovas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "jobTitle": "Associate Consulting Engineer", "lastName": "Wayangankar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "jobTitle": "Sales Engineer", "lastName": "Hair", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "jobTitle": "Executive Business Partner", "lastName": "Yan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "jobTitle": "Customer Success Program Manager", "lastName": "Moyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "jobTitle": "Customer Success Architect", "lastName": "Nieuwenhuizen", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "jobTitle": "Enterprise Sales Representative Germany", "lastName": "Urban", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "jobTitle": "Senior Software Engineer", "lastName": "Jonko", "location": "Remote - Poland", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "jobTitle": "Sr. Manager Global Sales Enablement", "lastName": "Maloney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "jobTitle": "Social Media Intern", "lastName": "Koscher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "jobTitle": "Marketing Strategy and Operations Manager", "lastName": "Palermo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "jobTitle": "Intern", "lastName": "Sloop", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "jobTitle": "VP, Corporate Marketing", "lastName": "Barasch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "jobTitle": "Principal Customer Success Manager", "lastName": "Lui", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "jobTitle": "Director, Customer Success", "lastName": "Sisti", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "jobTitle": "Sales Development Representative", "lastName": "Lesnick", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "jobTitle": "Head of Marketing (Senior Manager) DACH", "lastName": "Faust", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "jobTitle": "Strategic Customer Success Manager", "lastName": "Serrano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "jobTitle": "Software Engineer", "lastName": "Albu", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Qiu", "location": "Remote - China", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "jobTitle": "Senior Product Manager", "lastName": "James", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "jobTitle": "Senior Director, Education Services", "lastName": "Zamecnik", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "jobTitle": "Senior Accounts Payable Accountant", "lastName": "Sj\u00f6berg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "jobTitle": "Technical Writer", "lastName": "Pryce-\u00c5klundh", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "jobTitle": "G.R.E.T.A. Sales and Marketing Enabler", "lastName": "Kemper", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "jobTitle": "RVP, EMEA North", "lastName": "Moore", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "jobTitle": "Solutions Engineer Intern", "lastName": "Shah", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "jobTitle": "Director of Marketing Systems and Campaign Operations", "lastName": "Scigaj", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "jobTitle": "Product Manager", "lastName": "Giffard", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "jobTitle": "Director, People & Talent Operations", "lastName": "Ciborowski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "jobTitle": "Solutions Data Science Intern", "lastName": "Mathur", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "jobTitle": "Intern", "lastName": "Kathiresh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "jobTitle": "Intern", "lastName": "Suresh", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "jobTitle": "People Operations Coordinator", "lastName": "Sutherland", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "jobTitle": "Consulting Engineer - Federal", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "jobTitle": "Director, Marketing Strategy and Operations", "lastName": "Bischoff", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "jobTitle": "Consulting Engineer", "lastName": "Mazzei", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "jobTitle": "Sr. Sales Engineer", "lastName": "Bukowski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "jobTitle": "Office Coordinator", "lastName": "Runsten", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "jobTitle": "Customer Success Manager", "lastName": "Filipponi", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "jobTitle": "Sales Development Representative, DACH", "lastName": "Falkensteiner", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "jobTitle": "Senior Software Engineer", "lastName": "Forsberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "jobTitle": "Customer Success Manager", "lastName": "Parvez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "jobTitle": "Customer Success Manager", "lastName": "Britman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "jobTitle": "Self-Serve Customer Advocate", "lastName": "Mauro", "location": "San Mateo - USA (HQ)", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "jobTitle": "Sr. Sales Engineer", "lastName": "MP", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "jobTitle": "Opportunity Discovery Agent", "lastName": "Kendall", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "jobTitle": "Consulting Engineer", "lastName": "Banerjee", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "jobTitle": "Enterprise Account Executive - LATAM", "lastName": "Guimaraes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "jobTitle": "Senior Software Engineer", "lastName": "Bouriakov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "lastName": "Stegeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "jobTitle": "Sales Engineer", "lastName": "Moberg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "jobTitle": "Sr. Recruiter", "lastName": "Te Kanawa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "jobTitle": "Solutions Engineer", "lastName": "Porter", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "jobTitle": "Software Engineer", "lastName": "Leffler", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "jobTitle": "Sr. Financial Analyst", "lastName": "Goncalves", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "jobTitle": "Senior Software Engineer", "lastName": "Fabian", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "jobTitle": "Software Engineer", "lastName": "Filip", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "jobTitle": "Engagement Manager", "lastName": "Ben-Natan", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "jobTitle": "Software Engineer", "lastName": "Doodson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "jobTitle": "Manager Channels and Alliances", "lastName": "Diener", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "jobTitle": "Intern", "lastName": "Nordblad", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "jobTitle": "Customer Success Architect - UK", "lastName": "Liscovsky", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "jobTitle": "Customer Success Manager", "lastName": "Webb", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "jobTitle": "VP, Sales Operations", "lastName": "Martinez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "jobTitle": "Director, Talent Acquisition - Global GTM & G&A", "lastName": "Holton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "jobTitle": "Senior Commercial Counsel EMEA", "lastName": "Lazard", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "jobTitle": "Marketing Manager - EMEA", "lastName": "Nicholas", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "jobTitle": "Consulting Engineer - DACH", "lastName": "Grunert", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "jobTitle": "Software Engineer", "lastName": "Kannamangala Chidambara", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "jobTitle": "Office Coordinator", "lastName": "Zoratti", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "jobTitle": "Software Engineer", "lastName": "Prychantovskyi", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "jobTitle": "Sr. Customer Success Manager", "lastName": "Dairy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "jobTitle": "CRM Data Steward", "lastName": "Dempster", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "jobTitle": "Software Engineer", "lastName": "Rotenberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "jobTitle": "Senior Manager, IT Operations", "lastName": "Flagg", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "jobTitle": "Customer Success Manager", "lastName": "Raman", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "jobTitle": "Sales Development Representative", "lastName": "Robin", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "jobTitle": "Enterprise Renewals Manager", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "jobTitle": "Sr. Customer Success Manager", "lastName": "Manderson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "jobTitle": "Sales Development Representative", "lastName": "Yadav", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "jobTitle": "Chief of Staff to CEO", "lastName": "Dolan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "jobTitle": "Technical Writer", "lastName": "Ottolenghi", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "jobTitle": "Senior Software Engineer", "lastName": "Hughes", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "jobTitle": "Software Engineer", "lastName": "Levanov", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "jobTitle": "Technical Support Engineer", "lastName": "Agam", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "jobTitle": "Software Engineer", "lastName": "Koia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "jobTitle": "Customer Success Architect - Data Science", "lastName": "Pande", "location": "Remote - Germany", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "jobTitle": "Senior Technical Recruiter", "lastName": "Mattei", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "jobTitle": "Tech Community Manager", "lastName": "Agarwal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "jobTitle": "Customer Success Manager", "lastName": "Chesta", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "jobTitle": "Product Manager", "lastName": "Gopalakrishnan", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "jobTitle": "Consulting Engineer", "lastName": "Lee", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "jobTitle": "Contractor", "lastName": "Putz G de Carvalho", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "jobTitle": "Consulting Engineer - Belgium", "lastName": "Hubert", "location": "Remote - Belgium", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "jobTitle": "Sales Engineer", "lastName": "Ryan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "jobTitle": "Director of Engineering", "lastName": "Bergman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "jobTitle": "Enterprise Account Executive", "lastName": "Crawley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "jobTitle": "Sales Development Representative", "lastName": "Boyle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "jobTitle": "People Systems + Analytics Coordinator", "lastName": "Van Der Straeten", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "jobTitle": "Pre-Sales Engineer", "lastName": "El Reweny", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "jobTitle": "Sales Development Representative", "lastName": "Ong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "jobTitle": "Governance Risk & Compliance Practitioner", "lastName": "Miller", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "jobTitle": "Senior Software Engineer", "lastName": "Dhanasamy", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Sayed", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "jobTitle": "Security Operations Analyst", "lastName": "Sharma", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "jobTitle": "Senior Security Engineer", "lastName": "Kozub", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "jobTitle": "Security Operations Analyst", "lastName": "Taylor", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "jobTitle": "Field Marketing Specialist", "lastName": "Calmon", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "jobTitle": "Sr Product Marketing Manager", "lastName": "Johnson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "jobTitle": "Enterprise Account Executive", "lastName": "Tonghini", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "jobTitle": "VP, Sales Development", "lastName": "Kelley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "jobTitle": "Director, Sales Operations EMEA & APAC", "lastName": "Chaplin", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "jobTitle": "Sr. People Strategy Partner", "lastName": "Le", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "jobTitle": "People Operations Coordinator", "lastName": "Garneau", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "jobTitle": "Customer Success Manager", "lastName": "Ribeiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "jobTitle": "Contractor", "lastName": "Mishchuk", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "jobTitle": "UX Specialist", "lastName": "Shih", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "jobTitle": "Intern", "lastName": "Hambiralovic", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "jobTitle": "Sr. IT Engineer", "lastName": "Huang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "jobTitle": "Intern", "lastName": "Kalkan", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "jobTitle": "Sales Engineer", "lastName": "Chiang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "jobTitle": "Security Engineer", "lastName": "Preeti", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "jobTitle": "Sr. Customer Success Manager", "lastName": "Vitale", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "jobTitle": "Senior Software Engineer", "lastName": "Kinday", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "jobTitle": "Salesforce Administrator", "lastName": "Kramer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "jobTitle": "VP, Communications", "lastName": "Kim", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "jobTitle": "Enterprise Sales Director, ASEAN & India", "lastName": "Bisht", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "jobTitle": "Intern", "lastName": "Mukanga", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "jobTitle": "Sales Development Representative", "lastName": "Pang", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "jobTitle": "Senior Software Engineer", "lastName": "Irons", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "lastName": "Wilson", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "jobTitle": "Senior Accounts Payable Accountant", "lastName": "Hansson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "jobTitle": "Sr. Enterprise Account Executive", "lastName": "Grenier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "jobTitle": null, "lastName": "Foley", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "jobTitle": "UX Specialist", "lastName": "Reddy", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "jobTitle": "Senior Manager, People Operations", "lastName": "Galeza", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "jobTitle": "Senior Software Engineer", "lastName": "Razvenskaia", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "jobTitle": "Senior Software Engineer", "lastName": "Getman", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "jobTitle": "Contractor", "lastName": "Booher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "jobTitle": "Sr. Recruiter", "lastName": "O'Brien", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "jobTitle": "Manager, Sales Compensation", "lastName": "Zaleeva", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "jobTitle": "Sales Development Representative", "lastName": "Torres", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "jobTitle": "Software Engineer", "lastName": "Watson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "jobTitle": "Senior Marketing Operations Manager", "lastName": "Tomer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "jobTitle": "Data Science Advocate", "lastName": "Cossette", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "jobTitle": "Software Engineer", "lastName": "Ceberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "jobTitle": "Director of Engineering", "lastName": "Gordon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "jobTitle": "Director, Sales Development", "lastName": "Filomeno", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "jobTitle": "Intern", "lastName": "Forsberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "jobTitle": "Senior Cloud Partner Architect", "lastName": "Sivaji", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "jobTitle": "Intern", "lastName": "Lepik", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "jobTitle": "Consultant", "lastName": "Summers", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "jobTitle": "Software Engineer", "lastName": "Eiba", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "jobTitle": "Senior Field Marketing Manager", "lastName": "Salanitro", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "jobTitle": "Director of Brand Strategy and Creative", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "jobTitle": "Software Engineer", "lastName": "Ruminski", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "jobTitle": "Senior Manager, Digital Marketing, Americas", "lastName": "Buonamici", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "jobTitle": "Product Manager", "lastName": "Singh Sekhon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "jobTitle": "Senior Marketing Operations Manager", "lastName": "Hopfer", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "jobTitle": "Enterprise Account Executive - Benelux", "lastName": "Visser", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "jobTitle": "Federal Field Marketing Manager", "lastName": "Baraya", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "jobTitle": "Senior Product Manager", "lastName": "Minneci", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "jobTitle": "Project Director", "lastName": "Dieck", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "jobTitle": "Sales Development Manager", "lastName": "Salinas", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "jobTitle": "Director of Marketing, APAC", "lastName": "Hansen", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "jobTitle": "Product Manager", "lastName": "Wood", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "jobTitle": "AP Manager", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "jobTitle": "Field Engineering Consultant", "lastName": "Manoharan", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "jobTitle": "Chief Revenue Officer", "lastName": "Welch", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "jobTitle": "Director of Content & Storytelling", "lastName": "Christensen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "jobTitle": "Software Engineer", "lastName": "Enikeeva", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "jobTitle": "Executive Business Partner", "lastName": "Dao", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "jobTitle": "Deal Desk Analyst", "lastName": "Patterson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "jobTitle": "VP of Corporate FP&A", "lastName": "Mareiro", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "jobTitle": "Enterprise Account Executive", "lastName": "Roe", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "jobTitle": "Consulting Engineer", "lastName": "Zaidi", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "jobTitle": "Sr. Sales Engineer", "lastName": "Cardoso", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "jobTitle": "VP Revenue Operations & Strategy", "lastName": "Corson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "jobTitle": "Intern", "lastName": "Franz\u00e9n af Klint", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "jobTitle": "Intern", "lastName": "Danielsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "jobTitle": "Legal Operations Manager", "lastName": "Holguin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "jobTitle": "Sales Development Representative", "lastName": "Schreier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "jobTitle": "Professional Services Regional Manager", "lastName": "Abrams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "jobTitle": "Test Manager", "lastName": "J\u00f6n\u00e5ker", "location": "Remote - Spain", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "jobTitle": "Senior Marketing Strategy and Operations Manager", "lastName": "Ferguson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "jobTitle": "VP, North America", "lastName": "Bockard", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "jobTitle": "Head of Cloud Operations", "lastName": "Tikku", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "jobTitle": "Consultant", "lastName": "Belmudes", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "jobTitle": "Consultant", "lastName": "Botelho", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Tozeski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Yadav", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Soni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "jobTitle": "Cloud Operations Engineer", "lastName": "Pal", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "jobTitle": "Cloud Operations Engineer", "lastName": "Chauhan", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Singh", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "jobTitle": "Senior Software Engineer", "lastName": "Gill", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "jobTitle": "Director for Public Relations", "lastName": "De Souza", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "jobTitle": "Cloud Operations Engineer", "lastName": "Mann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "jobTitle": "Cloud Operations Engineer", "lastName": "Shuttle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Franco", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "jobTitle": "Senior Cloud Operations Engineer", "lastName": "Hunt", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "jobTitle": "Account Executive", "lastName": "Hand", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "jobTitle": "Chief Product Officer", "lastName": "Hasbe", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "jobTitle": "Intern", "lastName": "Boberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "jobTitle": "Intern", "lastName": "Nyberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "jobTitle": "Customer Success Manager", "lastName": "Esteban", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "jobTitle": "Customer Success Manager", "lastName": "Bognot", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "jobTitle": "Sr. IT Engineer", "lastName": "Jackson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "jobTitle": "Customer Success Manager", "lastName": "Magpantay", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "jobTitle": "Customer Success Manager", "lastName": "Carla-Reyes", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "jobTitle": "Customer Success Manager", "lastName": "Travinio", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "jobTitle": "Customer Success Manager", "lastName": "Madrid", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "jobTitle": "Customer Success Manager", "lastName": "Aaron-Waga", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "jobTitle": "Customer Success Manager", "lastName": "Dellava", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "jobTitle": "Customer Success Manager", "lastName": "Solmerano", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "jobTitle": "Customer Success Engineer", "lastName": "Fungo", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "jobTitle": "Customer Success Manager", "lastName": "Valderas", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "jobTitle": "Customer Success Manager", "lastName": "Pineda", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "jobTitle": "Customer Success Manager", "lastName": "Cabangon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "jobTitle": "Customer Success Manager", "lastName": "Decamora", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "jobTitle": "Marketing Automation Associate", "lastName": "Welch", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "jobTitle": "Senior Customer Success Manager", "lastName": "Deroche", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "jobTitle": "Director, Analyst Relations", "lastName": "Dittmann", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "jobTitle": "Intern", "lastName": "Winters", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "jobTitle": "Customer Success Architect", "lastName": "Zhang", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "jobTitle": "Enterprise Account Executive", "lastName": "Ng", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Kelly", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "jobTitle": "Digital Graphic Designer Contractor", "lastName": "Espa\u00f1a", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "jobTitle": "Independent Contractor, Corporate Storytelling & Content", "lastName": "Tietz", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "jobTitle": "Contractor", "lastName": "Firdaus", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "jobTitle": "Contractor", "lastName": "Hadi", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "jobTitle": "Intern", "lastName": "Durga Shobhitha Bhamidipaty", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "jobTitle": "Associate Consulting Engineer", "lastName": "Gilmore", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "jobTitle": "Managing Editor", "lastName": "Roosa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "jobTitle": "Contractor", "lastName": "Soni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "jobTitle": "Sales Operations Manager", "lastName": "Limonta", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "jobTitle": "Intern", "lastName": "Wong", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "jobTitle": "EMEA Region Cloud Channel Director", "lastName": "Warren", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "jobTitle": "VP, Developer Relations", "lastName": "Huerga Ayza", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "jobTitle": "Senior Accountant", "lastName": "Soodla", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "jobTitle": "Events Program Coordinator", "lastName": "Garcia", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "jobTitle": "UX Designer", "lastName": "Radov", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "jobTitle": "VP, SDR", "lastName": "Hankemeier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "jobTitle": "Subcontractor", "lastName": "Bleakley", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "jobTitle": "Subcontractor", "lastName": "Young", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "jobTitle": "Subcontractor", "lastName": "Edwards-Lamarche", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "jobTitle": "Senior Product Manager", "lastName": "Fernando", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "jobTitle": "Intern", "lastName": "Harrysson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Goncalves", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "jobTitle": "Intern", "lastName": "Grip", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "jobTitle": "Sr. Director, Global Revenue Enablement", "lastName": "Kanuga", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "jobTitle": "Intern", "lastName": "Gustafsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "jobTitle": "Software Engineer", "lastName": "Gustavsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "jobTitle": "Intern", "lastName": "Elding Larsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "jobTitle": "People Operations Administrator", "lastName": "Engsfelt", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "jobTitle": "Senior Manager, License Compliance Services", "lastName": "Heathcote Hobbins", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "jobTitle": "Subcontractor", "lastName": "O'Mahoney", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "jobTitle": "Subcontractor", "lastName": "Pandolfo", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "jobTitle": "Subcontractor", "lastName": "Buricea", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "jobTitle": "Corporate Renewals Manager", "lastName": "Anton", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "jobTitle": "Subcontractor", "lastName": "Stefanek", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "jobTitle": "Corporate Renewals Manager", "lastName": "Duta", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "jobTitle": "Subcontractor", "lastName": "Speranzoni", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "jobTitle": "Subcontractor", "lastName": "De Lazzari", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "jobTitle": "Subcontractor", "lastName": "Santurbano", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "jobTitle": "Subcontractor", "lastName": "Villani", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "jobTitle": "Subcontractor", "lastName": "Roiter", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "jobTitle": "Subcontractor", "lastName": "Grossetie", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "jobTitle": "Subcontractor", "lastName": "Gazanayi", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "jobTitle": "Subcontractor", "lastName": "Guery", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "jobTitle": "Subcontractor", "lastName": "Brunt", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "jobTitle": "Contractor", "lastName": "Mokhtarian", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "jobTitle": "Director, Sales Operations", "lastName": "Fletcher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "jobTitle": "VP, Product Marketing", "lastName": "Bajwa", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "jobTitle": "Contractor", "lastName": "Fonseca", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "jobTitle": "Contractor", "lastName": "Abdalla", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "jobTitle": "Contractor", "lastName": "Lima", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "jobTitle": "Contractor", "lastName": "Machado", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "jobTitle": "Technical Curriculum Developer", "lastName": "O'Hanlon", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "jobTitle": "Commissions Analyst", "lastName": "Harris", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "jobTitle": "Contractor", "lastName": "Cesati", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "jobTitle": "Sr. Salesforce Production Support Admin", "lastName": "Bhaskaruny", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "jobTitle": "Sales Development Representative", "lastName": "Williams", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "jobTitle": "Contractor", "lastName": "Rino", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "jobTitle": "Contractor", "lastName": "Seril", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "jobTitle": "Contractor", "lastName": "Obrero", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "jobTitle": "Contractor", "lastName": "Topchiy", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "jobTitle": "Contractor", "lastName": "Panzeri", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "jobTitle": "Country Manager - France", "lastName": "Boulad", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "jobTitle": "Benefits Coordinator", "lastName": "Laverdure", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "jobTitle": null, "lastName": "Asher", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "jobTitle": "Contractor", "lastName": "Francois", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "jobTitle": "Contractor", "lastName": "Azevedo", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "jobTitle": "Sr. Financial Analyst", "lastName": "Pooni", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "jobTitle": "Sr. Director, Global Total Rewards", "lastName": "Bananzadeh", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "jobTitle": "Subcontractor", "lastName": "Cura", "location": "Remote - Philippines", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "jobTitle": "Sr. Technical Support Engineer", "lastName": "Omondi", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "jobTitle": "Sales Engineer", "lastName": "Yin", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "jobTitle": "Technical Support Engineer", "lastName": "Brand", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "jobTitle": "Core On-Boarding Manager", "lastName": "Adeel", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "jobTitle": "Core On-Boarding Manager", "lastName": "Sadoluwa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "jobTitle": "Sales Development Representative", "lastName": "S\u00f8rensen", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "jobTitle": "Contractor", "lastName": "Haldeman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "jobTitle": "Contractor", "lastName": "Myslivy", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "jobTitle": "Contractor", "lastName": "Collier", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "jobTitle": "Contractor", "lastName": "Doolittle", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "jobTitle": "Sales Engineer", "lastName": "Wicaksana", "location": "Remote - Indonesia", "customManagerEmail": ""}, "emitted_at": 1710872571107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "jobTitle": "Sales Operations Manager", "lastName": "Dopke", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "jobTitle": "Sr. Federal Customer Success Manager", "lastName": "Chesney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "jobTitle": "Contractor", "lastName": "Singh", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "jobTitle": "Business Intelligence Data Engineer", "lastName": "Schiop", "location": "Stockholm - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "jobTitle": "Software Engineer", "lastName": "Bergstrand", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "jobTitle": "Intern", "lastName": "\u00c5strand", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "jobTitle": "Channels and Alliances Lead", "lastName": "Siah", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "jobTitle": "Program Manager, Global Enablement", "lastName": "van 't Hek", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "jobTitle": "Contractor", "lastName": "Murray", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "jobTitle": "Sales Engineer", "lastName": "Gomes Da Silva", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "jobTitle": "Federal Enterprise Sales Executive", "lastName": "Sturgess", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "jobTitle": "Subcontractor", "lastName": "Ismail", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "jobTitle": "Sales Operations Manager", "lastName": "Woods", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "jobTitle": "Contractor", "lastName": "Little", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "jobTitle": "Intern", "lastName": "Bl\u00e4ckberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "jobTitle": "Director, Web Strategy & Digital Marketing", "lastName": "Smith", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "jobTitle": "Director of Sales Development", "lastName": "Dzelil", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "jobTitle": "Sr. Account Executive", "lastName": "Pierson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "jobTitle": "Intern", "lastName": "Nilsson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "jobTitle": "Sr. Manager, Technical Support", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "jobTitle": "Consulting Engineer", "lastName": "Zarpel\u00e3o", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "jobTitle": "Sr. People Strategy Partner", "lastName": "Leslie", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "jobTitle": "Senior Software Engineer", "lastName": "Anghelcovici", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "jobTitle": "Senior Software Engineer", "lastName": "Rubanov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "jobTitle": "RVP, Sales East", "lastName": "Evans", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "jobTitle": "Enterprise Sales", "lastName": "Vogelezang", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "jobTitle": "Senior Software Engineer", "lastName": "Caricchio Buss", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "jobTitle": "Senior Software Engineer", "lastName": "Lukichev", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "jobTitle": "UX Visual Designer", "lastName": "Song", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "jobTitle": "VP, Product Management, GDS and GenAI", "lastName": "Crosbie", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "jobTitle": "Account Executive", "lastName": "Peters", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "P\u00e9rez Rivera", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "jobTitle": "Sr. Associate Technical Support Engineer", "lastName": "Stefan", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "jobTitle": "Consulting Engineer - Federal", "lastName": "Causey", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "jobTitle": "Subcontractor", "lastName": "Chen", "location": "Remote - Israel", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "jobTitle": "Subcontractor", "lastName": "Showalter", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "jobTitle": "Contractor", "lastName": "Abman", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "jobTitle": "Contractor", "lastName": "Lu", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "jobTitle": null, "lastName": "Portner", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "jobTitle": "Enterprise/DN Sales Account Executive", "lastName": "Tan", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "jobTitle": "Software Engineer", "lastName": "Beamish", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "jobTitle": "Sales Development Representative", "lastName": "Seger", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "jobTitle": "Technical Account Manager", "lastName": "Yap", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "jobTitle": "Professional Services Consulting Engineer", "lastName": "Yap", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "jobTitle": "Senior Software Engineer", "lastName": "Tse Debenham", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "jobTitle": "Corporate Renewals Manager", "lastName": "Aganencei", "location": "Remote - Romania", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "jobTitle": "Software Engineer", "lastName": "Becerra Campos", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "jobTitle": "Contractor", "lastName": "Janzen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "jobTitle": "Sr. Sales Engineer", "lastName": "Shatwara", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "jobTitle": "VP, Americas Marketing", "lastName": "Tucker", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "jobTitle": "Graph Developer", "lastName": "Zakhir Ali", "location": "Remote - APAC", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "jobTitle": "Software Engineer", "lastName": "Calleja", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "jobTitle": "Sales Development Representative", "lastName": "Kleine", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "jobTitle": "Enterprise Sales - France", "lastName": "Vernet", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "jobTitle": "Contractor", "lastName": "Barnecut", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "jobTitle": "Sales Development Representative", "lastName": "Gallagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "jobTitle": "Sales Development Representative", "lastName": "Turcotte", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "jobTitle": "Graph Developer", "lastName": "Kamal", "location": "Remote - Malaysia", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "jobTitle": "Sr. Account Executive", "lastName": "Gardsbane", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "jobTitle": "Pre-Sales Engineer - Benelux and DACH", "lastName": "Bijl", "location": "Remote - The Netherlands", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "jobTitle": "Subcontractor", "lastName": "Gazdag", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "jobTitle": "Subcontractor", "lastName": "Vassakis", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "jobTitle": "Director of Partner Marketing", "lastName": "Barney", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "jobTitle": "Technical Writer", "lastName": "Sill", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "jobTitle": "Associate Customer Success Manager", "lastName": "Jouffret", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "jobTitle": "Subcontractor", "lastName": "Coleman", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "jobTitle": "Subcontractor", "lastName": "Kumagai", "location": "Remote - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "jobTitle": "Sales Development Representative", "lastName": "Chua", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "jobTitle": "Regional VP, Sales, West", "lastName": "Gillen", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "jobTitle": "Senior Director Product Operations", "lastName": "Kothari", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "jobTitle": "Strategic Account Executive, West", "lastName": "Chandra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "jobTitle": "Software Engineer", "lastName": "Pesci", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "jobTitle": "Associate Customer Success Manager", "lastName": "Garner", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "jobTitle": "Senior SaaS Procurement Manager", "lastName": "Kaigan-Kuykendall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "jobTitle": "Senior Account Executive", "lastName": "Mikha", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "jobTitle": "Software Engineer", "lastName": "Farooqui", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "jobTitle": "Senior Software Engineer", "lastName": "Hasell", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "jobTitle": "Sales Development Representative", "lastName": "Timmons-Cabedo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "jobTitle": "Recruiting Coordinator", "lastName": "Callejas Murillo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "jobTitle": "Senior Manager, Customer Success - APAC", "lastName": "Oliver", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "jobTitle": "Senior Technical Recruiter", "lastName": "Jackson", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "jobTitle": "Contractor", "lastName": "Melton", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "jobTitle": "Senior Software Engineer", "lastName": "Moustafa", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "jobTitle": "Intern", "lastName": "\u00c5kerman", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "jobTitle": "Software Engineer", "lastName": "Gustafson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "jobTitle": "Sales Development Representative", "lastName": "Wilkos", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "jobTitle": "Sr. Manager, Customer Advocacy", "lastName": "Hopkinson", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "jobTitle": "Sr. Manager, Integrated Marketing Campaigns", "lastName": "Gangadhara", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "jobTitle": "Enablement Program Manager", "lastName": "Neuhauser", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "jobTitle": "Sr. Technical Product Marketing Manager", "lastName": "Borkar", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "jobTitle": "Senior Account Executive", "lastName": "West", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "jobTitle": "Senior Director of Product Management", "lastName": "Derazon", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "jobTitle": "Senior Software Engineer", "lastName": "Likhomanov", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "jobTitle": "Intern", "lastName": "Brinklert", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "jobTitle": "Intern", "lastName": "Clemedtson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "jobTitle": "Intern", "lastName": "Rettig", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "jobTitle": "Intern", "lastName": "Lundberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "jobTitle": "Master Thesis Intern", "lastName": "Ahlberg", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "jobTitle": "Master Thesis Intern", "lastName": "Bondesson", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "jobTitle": "Enterprise Account Executive", "lastName": "Monteiro", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "jobTitle": "VP, APAC Sales", "lastName": "Pimpini", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "jobTitle": "Enterprise Account Executive", "lastName": "Jorge", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "jobTitle": "Customer Success Manager - Singapore", "lastName": "Ong", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "jobTitle": "Senior Brand Designer", "lastName": "Hall", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "jobTitle": "Contractor", "lastName": "Vidwans", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "jobTitle": "Global Vice President, Technology Solutions", "lastName": "Sowell", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "jobTitle": "Technical Writer", "lastName": "Quick", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "jobTitle": "Sr. Recruiter", "lastName": "Armour", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "jobTitle": "Senior Product Manager", "lastName": "Wong", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "jobTitle": "Senior Software Engineer", "lastName": "Tai", "location": "London - UK", "customManagerEmail": ""}, "emitted_at": 1710872571112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "jobTitle": "Sales Development Manager", "lastName": "Ott", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "jobTitle": "Recruiting Coordinator", "lastName": "Gonzalez", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "jobTitle": "RVP, Federal Sales", "lastName": "Bender", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "jobTitle": null, "lastName": "Tottie", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "jobTitle": null, "lastName": "Adu-Gyan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "jobTitle": "Enterprise Sales", "lastName": "Knidler", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "jobTitle": "Global Cloud Partnership Director", "lastName": "Ho", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "jobTitle": "Director, Professional Services and Solutions Engineering", "lastName": "Payne", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "jobTitle": "Senior Compensation & Benefits Manager", "lastName": "Serrano", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "jobTitle": "Technical Product Marketing Manager", "lastName": "Sharma", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "jobTitle": "Software Engineer", "lastName": "Daugerdas", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "jobTitle": "People Operations Administrator", "lastName": "Gorski", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "jobTitle": "SEO/Digital Strategy Marketing Manager", "lastName": "Caruana", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "jobTitle": null, "lastName": "Hippius", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "jobTitle": null, "lastName": "Ozsoy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "jobTitle": "Subcontractor", "lastName": "Kondratenko", "location": "Remote - Ukraine", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "jobTitle": "Google Cloud Global Partnership Director", "lastName": "Shah", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "jobTitle": "Enterprise Sales", "lastName": "Zein", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "jobTitle": "Senior Account Executive", "lastName": "Rogers", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "jobTitle": "Senior Recruiter - APAC", "lastName": "Adair", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "jobTitle": "Sales Development Representative", "lastName": "Chooi", "location": "Remote - Singapore", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "jobTitle": "Account Executive", "lastName": "Flood", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "jobTitle": "Senior Cloud Sales Specialist", "lastName": "Everett", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "jobTitle": "Technical Product Marketing Manager", "lastName": "Dhaliwal", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "jobTitle": "People Operations Coordinator", "lastName": "Dhall", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "jobTitle": "Director of FP&A, Cloud Finance", "lastName": "Chopra", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "jobTitle": "Sales Engineer", "lastName": "Manzano", "location": "Remote - Brazil", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "jobTitle": "VP, Product Management", "lastName": "McGrath", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "jobTitle": null, "lastName": "Siegenthaler", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "jobTitle": null, "lastName": "Browne", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "jobTitle": null, "lastName": "Knoetic", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "jobTitle": null, "lastName": "Alleyn", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "jobTitle": null, "lastName": "McCloy", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "jobTitle": "Technical Support Engineer", "lastName": "Vasquez-Ceja", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "jobTitle": null, "lastName": "Pischon", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "jobTitle": "Senior Software Engineer", "lastName": "Scifo", "location": "Remote - France", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "jobTitle": "Enterprise Sales", "lastName": "Lovell", "location": "Remote - Australia", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "jobTitle": null, "lastName": "Akalin Eren", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "jobTitle": null, "lastName": "Vasant", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "jobTitle": null, "lastName": "Lumley", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "jobTitle": "Subcontractor", "lastName": "Bauva", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "jobTitle": "Software Engineer", "lastName": "van Leeuwen", "location": "Malm\u00f6 - Sweden", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "jobTitle": "Sr. Federal Field Marketing Manager", "lastName": "Collins", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "jobTitle": "Subcontractor", "lastName": "Sannino", "location": "Remote - Italy", "customManagerEmail": ""}, "emitted_at": 1710872571114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "jobTitle": null, "lastName": "Thomas", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "jobTitle": "Subcontractor", "lastName": "Cahindo", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "jobTitle": null, "lastName": "Sankar", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "jobTitle": "Subcontractor", "lastName": "Kumar", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "jobTitle": "Federal Inside Sales Representative", "lastName": "Gallagher", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "jobTitle": null, "lastName": "Chin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "jobTitle": "Contractor", "lastName": "Desai", "location": "Remote - USA", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "jobTitle": null, "lastName": "Hizal", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "jobTitle": null, "lastName": "Lundberg", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "jobTitle": null, "lastName": "Homem de Gouveia", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "jobTitle": null, "lastName": "Nijim", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "jobTitle": null, "lastName": "Rex Greenway", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "jobTitle": null, "lastName": "Russell", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "jobTitle": null, "lastName": "Paige", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "jobTitle": null, "lastName": "Salva", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "jobTitle": null, "lastName": "Voruganti", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "jobTitle": null, "lastName": "Sparacin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "jobTitle": null, "lastName": "Rothier Bautzer", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "jobTitle": null, "lastName": "Aleyaasin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "jobTitle": "Subcontractor", "lastName": "Ganta", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "jobTitle": "Subcontractor", "lastName": "Reddi", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "jobTitle": "Subcontractor", "lastName": "Kottamasu", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "jobTitle": "Subcontractor", "lastName": "Havanur", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "jobTitle": "Subcontractor", "lastName": "Ramineni", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "jobTitle": "Subcontractor", "lastName": "Tammiraju", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "jobTitle": "Subcontractor", "lastName": "Dandu", "location": "Remote - India", "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "jobTitle": null, "lastName": "Medina Rodriguez", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "jobTitle": null, "lastName": "Rattan", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "jobTitle": null, "lastName": "Raftery", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "jobTitle": null, "lastName": "Lin", "location": null, "customManagerEmail": ""}, "emitted_at": 1710872571116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 USD"}, "emitted_at": 1710872573083}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136000.00 USD"}, "emitted_at": 1710872573086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1592189 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1500189 SEK"}, "emitted_at": 1710872573086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "907200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "907200 SEK"}, "emitted_at": 1710872573086}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000 USD"}, "emitted_at": 1710872573087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5500000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3000000.00 SEK"}, "emitted_at": 1710872573087}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215009.6 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "103.37 USD"}, "emitted_at": 1710872573088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2023-04-01", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000 USD"}, "emitted_at": 1710872573088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573088}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "133000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "109000.00 USD"}, "emitted_at": 1710872573089}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "756000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "756000.00 SEK"}, "emitted_at": 1710872573090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000 USD"}, "emitted_at": 1710872573090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000.00 USD"}, "emitted_at": 1710872573090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573090}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "241094 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192875 USD"}, "emitted_at": 1710872573091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "235000 USD"}, "emitted_at": 1710872573091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "174990.4 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "84.13 USD"}, "emitted_at": 1710872573091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137550 USD"}, "emitted_at": 1710872573091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "101200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "92000.00 USD"}, "emitted_at": 1710872573091}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "99000.00 USD"}, "emitted_at": 1710872573092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "245726.84 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196581.47 USD"}, "emitted_at": 1710872573092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573092}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200750 USD"}, "emitted_at": 1710872573093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "329000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "189000 USD"}, "emitted_at": 1710872573093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "229716.12 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192276.12 USD"}, "emitted_at": 1710872573093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195242 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "171392 USD"}, "emitted_at": 1710872573093}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573094}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573095}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "345000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500 USD"}, "emitted_at": 1710872573096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-09-14", "customOTE": "255800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "227800.00 USD"}, "emitted_at": 1710872573096}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "202410 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "114180 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "126000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "82000 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000.00 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "341000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170500 USD"}, "emitted_at": 1710872573097}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185566.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "166566.40 USD"}, "emitted_at": 1710872573098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "197000.00 USD"}, "emitted_at": 1710872573098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "187335 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "171735 USD"}, "emitted_at": 1710872573098}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 USD"}, "emitted_at": 1710872573099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573099}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "329000 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "435000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "261000 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257853.68 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "222853.68 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "315000.00 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "335000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "270000 USD"}, "emitted_at": 1710872573100}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100880 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "48.50 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "111600.00 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220500 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573101}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205565.2 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170565.20 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "177000.00 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "230000 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "148500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148500 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136800 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "136000.00 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195000 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "115000.00 USD"}, "emitted_at": 1710872573102}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "148000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148000 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "143000 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "251500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "201500 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "218000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "218000.00 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 USD"}, "emitted_at": 1710872573103}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104854 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104854.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "325000 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "229591.58 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184591.58 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "565590 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "452400.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157000 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206718.48 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "186225.48 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260235 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "238500 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162500.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "247500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "167500.00 USD"}, "emitted_at": 1710872573104}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206560.42 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "183680.42 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172000.00 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137500 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "286500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "256500.00 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250448 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "217948 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "78000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "78000 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-02-04", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "280000 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197248 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176748 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255850 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185850 USD"}, "emitted_at": 1710872573105}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173303.85 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "152603.85 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "customOriginalDateofHire": "2019-04-08", "originalHireDate": "0000-00-00", "customOTE": "95992 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "46.15 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206398.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "188198.4 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "149643.75 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "129483.75 USD"}, "emitted_at": 1710872573106}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "297500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "50000.00 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "48000.00 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "99000.00 USD"}, "emitted_at": 1710872573107}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204372.6 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185317.6 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-06-17", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "290000.00 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "207360 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "189000 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573108}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "customOriginalDateofHire": "2019-08-01", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "94000.00 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163322.5 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148522.5 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "191264 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170544 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573109}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "143000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1104000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1104000 SEK"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "205000.00 GBP"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000 EUR"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4147280 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3369665.00 SEK"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000 GBP"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 EUR"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2012-07-09", "customOTE": "364000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "175.00 EUR"}, "emitted_at": 1710872573110}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000.00 EUR"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "103200 EUR"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "765600 DKK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "765600.00 DKK"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "60000.00 SEK"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2128430.3 DKK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1773691.92 DKK"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160500.00 EUR"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-05-19", "customOTE": "200000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573111}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 EUR"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1248000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1248000 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1152000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1152000 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 GBP"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "696000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "58000.00 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "141237.5 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110127.5 EUR"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573112}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "365000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "219000 EUR"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000.00 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130500 GBP"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-06-01", "customOTE": "1308000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1308000 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1055700 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1055700 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248480 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170980 GBP"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "932400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "932400 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1300000.00 SEK"}, "emitted_at": 1710872573113}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "858000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "858000 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "582000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "48500.00 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97500.00 EUR"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "64000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "64000.00 GBP"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2015-09-01", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000.00 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "672000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "56000.00 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "380000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000.00 EUR"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-06-09", "customOTE": "750000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "750000.00 SEK"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128875 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102875 GBP"}, "emitted_at": 1710872573114}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "465000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "465000.00 SEK"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "894000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "894000 SEK"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "161000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "156000.00 GBP"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72000 EUR"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "customOriginalDateofHire": "2013-01-07", "originalHireDate": "0000-00-00", "customOTE": "132000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000 EUR"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1710000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1710000 SEK"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "168080 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "158080.00 EUR"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "966000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "966000 SEK"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "189000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000 GBP"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000 EUR"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "182000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "87.5 GBP"}, "emitted_at": 1710872573115}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "77000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77000 EUR"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2016-10-01", "customOTE": "93000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "93000 EUR"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110250 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "122000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "122000 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81120 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81120 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102900.00 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "912000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "912000.00 SEK"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77500.00 GBP"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "919800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "919800 SEK"}, "emitted_at": 1710872573116}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000.00 GBP"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128750 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128750 EUR"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81694.79 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69894.79 GBP"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150400 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2100000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "2100000.00 SEK"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1912000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1712000 SEK"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 EUR"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "516000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "43000.00 SEK"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 EUR"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 GBP"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "240000.00 EUR"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573117}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1000000.04 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "76666.67 SEK"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "118000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 EUR"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "270000 EUR"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130810 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130810 EUR"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "customOriginalDateofHire": "2018-06-06", "originalHireDate": "2017-03-06", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1422300 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1291490.00 SEK"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "241600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "171600.00 EUR"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-07-01", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1350000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1350000.00 SEK"}, "emitted_at": 1710872573118}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000 GBP"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-02-01", "customOTE": "594000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "594000 SEK"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000 EUR"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-01-15", "customOTE": "79000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "79000.00 EUR"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-10-15", "customOTE": "624000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "300.00 USD"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1128000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1128000 SEK"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1320000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1320000.00 SEK"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101500.00 EUR"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "882000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "882000 SEK"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "customOriginalDateofHire": "2018-04-16", "originalHireDate": "0000-00-00", "customOTE": "117000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "59360 GBP"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "36000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "3000.00 EUR"}, "emitted_at": 1710872573119}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1110000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1110000 SEK"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170400 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170400 AUD"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "862500 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "862500 SEK"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-08-20", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "500.00 EUR"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "55000.00 GBP"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "73000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000 GBP"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "659100 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "579000 ILS"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-03-01", "customOTE": "70000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "70000.00 EUR"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1283902.82 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "799500.00 ILS"}, "emitted_at": 1710872573120}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000 GBP"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "657700 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "657700 SEK"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1421400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1421400 SEK"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000 GBP"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "894000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "894000 SEK"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 GBP"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "90000.00 SEK"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "131740 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92219 GBP"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "807240 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "807240 SEK"}, "emitted_at": 1710872573121}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 AUD"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "816000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "68000.00 SEK"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "118000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 GBP"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "627000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "627000 SEK"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "55000.00 SEK"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "918000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "918000 SEK"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500.00 EUR"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000 GBP"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000.00 SEK"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89500.00 EUR"}, "emitted_at": 1710872573122}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "57000.00 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "116314 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 EUR"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 EUR"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "550200 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "792000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "792000.00 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "103000 EUR"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-10-14", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109000.00 GBP"}, "emitted_at": 1710872573123}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "162750 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "162750.00 GBP"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "171000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "156000.00 EUR"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1122000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1122000 SEK"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1333200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1333200 SEK"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000 SEK"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573124}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573125}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573126}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "223000.00 USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573127}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573128}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573129}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573130}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "50.00 USD"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-06-10", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000 USD"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1080000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1080000 SEK"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000 SEK"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000 SEK"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "620000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "620000 SEK"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000 GBP"}, "emitted_at": 1710872573131}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "792000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "792000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2012-04-01", "customOTE": "130000 NZD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000 NZD"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "300000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "30000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "30000 GBP"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51000 EUR"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "130 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "420000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000 EUR"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106300 GBP"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "396000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "396000 SEK"}, "emitted_at": 1710872573132}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "384000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "384000 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72500 GBP"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "76000 EUR"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41520 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "41520 GBP"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "322400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "155 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1027500 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1027500 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "6000 EUR"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2016-05-02", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "130 SEK"}, "emitted_at": 1710872573133}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "516000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "516000 SEK"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000 EUR"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "6000 EUR"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51000 GBP"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "550 GBP"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573134}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-07-01", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000 GBP"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "101000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101000 GBP"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "765000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "765000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 GBP"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000 GBP"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000 GBP"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573135}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165 SEK"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "150 SEK"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "55000 GBP"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "31200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "15 EUR"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": " USD"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000 SEK"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "7000 SEK"}, "emitted_at": 1710872573136}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "110 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "759960 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "759960 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "846000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "846000 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "564000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "47000.00 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2018-04-23", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 EUR"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "633600 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "633600 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "708000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "708000 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117300 GBP"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "66000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "66000.00 GBP"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000 GBP"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "35000.00 SEK"}, "emitted_at": 1710872573137}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "425000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "186250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "186250 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "192500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192500 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "196198 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196198.00 CAD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 EUR"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000.00 USD"}, "emitted_at": 1710872573138}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000 USD"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "490000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "294000 USD"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87500 USD"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "870000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "870000 SEK"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "127000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104500 GBP"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97250 GBP"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70350 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "70350.00 EUR"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2035000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1135000 SEK"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1270000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1020000 SEK"}, "emitted_at": 1710872573139}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "264500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "154500 GBP"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1380000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1380000.00 SEK"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "687900 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "687900 SEK"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "984000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "984000.00 SEK"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193011 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135108 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197580 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139080 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "325000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162500 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310174.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "249500 USD"}, "emitted_at": 1710872573140}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000.00 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220502 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160950 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109200.00 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4452225 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3572475 INR"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "530000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "265000 AUD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "352500 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "257500 AUD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "295671 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "236375 CAD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": "0.00 USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "176800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "176800.00 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137500 USD"}, "emitted_at": 1710872573141}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "305000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "152500.00 EUR"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "870000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "870000 SEK"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96300 GBP"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "137490 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96555 GBP"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "154000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "138500 USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "72500 USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "715800 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "715800 SEK"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "630000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "630000.00 SEK"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "674040 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "674040 SEK"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123600 GBP"}, "emitted_at": 1710872573142}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128000 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97400 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88700.00 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "83000 USD"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68000 USD"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "355000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "195250 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "386610 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "257610.00 SGD"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000 USD"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1130400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1130400 SEK"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87000 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "154000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573143}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "183750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "183750 USD"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "766.28 AUD"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "934200 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "844200.00 CNY"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-06-03", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-10-01", "customOTE": "1560000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1560000 SEK"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "834000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "834000 SEK"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000 USD"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-08-23", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88000 GBP"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "844560 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "844560 SEK"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112200 GBP"}, "emitted_at": 1710872573144}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "1000.00 EUR"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "198000.00 USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960960 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "960960 SEK"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "73500 GBP"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000 SEK"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "304500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "154500 USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67000.00 EUR"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "93600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "45.00 EUR"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "131000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "101500.00 EUR"}, "emitted_at": 1710872573145}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "49350 GBP"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 EUR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Day", "payRate": "0.00 EUR"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "876000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "876000 SEK"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "customOriginalDateofHire": "2020-08-24", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "116000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "116000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 SEK"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573146}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "135600 EUR"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "122100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "122100 GBP"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128750 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128750 EUR"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175650 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "159900 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "127560 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "127560.00 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193872 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160500 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1250000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1250000.00 SEK"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "248400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "20700.00 EUR"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "customOriginalDateofHire": "2020-10-06", "originalHireDate": "0000-00-00", "customOTE": "226550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "197000.00 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "442200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "442200 SEK"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573147}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2019-12-16", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "111885 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91800 EUR"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "194000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164900 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "726000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "726000 SEK"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87000 EUR"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-05-01", "customOTE": "54600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Week", "payRate": "1050.00 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "128000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "128000 GBP"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000 SEK"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "157680 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "127680 GBP"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "174200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "144200 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000 USD"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-01-04", "customOTE": "190000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "190000.00 GBP"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000 SEK"}, "emitted_at": 1710872573148}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "122400 USD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "75.00 EUR"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "176000.00 SGD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-11-16", "customOTE": "162774.37 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "148074.37 CAD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2020-12-14", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104000.00 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123600 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92500 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "233000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "138000.00 GBP"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4201548.5 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3205885.5 INR"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156800 USD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "customOriginalDateofHire": "2020-01-13", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000 USD"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "620340 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "620340.00 SEK"}, "emitted_at": 1710872573149}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "104000 GBP"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "270000.00 SGD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "136000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "136000 GBP"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "166750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156750 USD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000 USD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-01-11", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "164080 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114857 GBP"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504996 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504996.00 SEK"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "134000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "134000 EUR"}, "emitted_at": 1710872573150}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "192000.00 SGD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "customOriginalDateofHire": "2021-01-04", "originalHireDate": "0000-00-00", "customOTE": "136000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "116000 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "73500 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "78000.00 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "370000 SGD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 EUR"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "400000.00 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "289100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "245000.00 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72800 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "35.00 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "customOriginalDateofHire": "2021-01-19", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000 USD"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "800000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "800000 SEK"}, "emitted_at": 1710872573151}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105040 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70720 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "107100 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "580000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "348000 SGD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87250 GBP"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "216000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "216000.00 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "customOriginalDateofHire": "2019-10-07", "originalHireDate": "0000-00-00", "customOTE": "157500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1308000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1308000 SEK"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 EUR"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "customOriginalDateofHire": "2019-07-01", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573152}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "888000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "888000 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "47590.4 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "22.88 USD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 EUR"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "132850 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "132850 USD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "66000 USD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103500 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "69500 SGD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4388088.4 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3410618.4 INR"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "816000.00 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "654000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "654000 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "804000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "804000 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "960000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "960000 SEK"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "70000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "119000 USD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573153}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "193640 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "193640 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170800 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150800 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195120 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195120 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "customOriginalDateofHire": "2021-02-22", "originalHireDate": "0000-00-00", "customOTE": "7649250 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "7649250 INR"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "185000 EUR"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-03-15", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "311000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000 SGD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "94000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "94000 GBP"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000 GBP"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 GBP"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "customOriginalDateofHire": "2021-03-15", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573154}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "167000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "167000 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "147000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "147000 USD"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "696000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "696000 SEK"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81250 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "110.00 USD"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "89000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89000 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "42000.00 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104000 USD"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "150.00 EUR"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "79500.00 EUR"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000 USD"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "732000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "732000 SEK"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "952000 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "952000 CNY"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2017-06-05", "customOTE": "133500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "133500 GBP"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573155}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "69784 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69784 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55120 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "43680 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-04-01", "customOTE": "145600 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "70.00 EUR"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139200 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "117300 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117300 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70720 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "390000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "228000.00 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "325000.00 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "184000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "123000 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 EUR"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "74900 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "74900 GBP"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "5000000 INR"}, "emitted_at": 1710872573156}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "624000 SEK"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84950 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "66950 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88000 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "8112 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "3.90 EUR"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5500000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "4400000.00 INR"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "690000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "690000 SEK"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197631.2 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "197631.2 CAD"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "212500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155150 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155150 USD"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000.00 EUR"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "584400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "584400 SEK"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "653000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "600000 SEK"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "126200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "126200 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "64800 GBP"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "25.00 USD"}, "emitted_at": 1710872573157}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "25.00 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 EUR"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "153000 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "228000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "168000 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1248000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1248000 SEK"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "588000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "588000 SEK"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000 SEK"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "81000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "81000 GBP"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2014-02-24", "customOTE": "2700000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1620000.00 SEK"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "90000.00 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000 SGD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000 GBP"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4700000 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3900000 INR"}, "emitted_at": 1710872573158}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "212750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "212750.00 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-06-28", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-06-28", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "869400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "869400.00 SEK"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "187500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "187500.00 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "288000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109200 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "40000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "38000.00 EUR"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "108000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "108000.00 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 SGD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573159}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "139050 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "139050 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135200 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "65.00 EUR"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58710 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "42230 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "59850 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "43050 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107700 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "107700 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "767000 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "767000.00 CNY"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "82100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72100 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46620 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "46620 GBP"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "636000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "636000.00 SEK"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "142100 EUR"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "782000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "782000 SEK"}, "emitted_at": 1710872573160}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "172500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500.00 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "213600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163600 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "173200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163200 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 AUD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203940 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "203940 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67920 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67920 GBP"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "63600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "63600 GBP"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "74880 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "36.00 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140608 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "67.60 USD"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000 GBP"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "147000.00 GBP"}, "emitted_at": 1710872573161}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "782363 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "782363 CNY"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "216000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "216000.00 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "9398545 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "9398545.00 INR"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3501621.05 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3112621.05 INR"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87250 GBP"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "134250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2021-05-17", "customOTE": "287040 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "138.00 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "86400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86400 EUR"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000 GBP"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113000 GBP"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "209740 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179740 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "79040 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "38.00 USD"}, "emitted_at": 1710872573162}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75100.00 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "162000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "162000 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "33696 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "16.20 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 CAD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 CAD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "996000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "996000 SEK"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68250 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "261000.00 SGD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280800 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "226800 AUD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "493000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "273000.00 SGD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000 GBP"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "282625 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170000 EUR"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000 USD"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "602400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "602400 SEK"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3668441.1 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3260841.1 INR"}, "emitted_at": 1710872573163}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10010817 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6006580.00 INR"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "174250 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "137000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "117000 GBP"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3455077 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2719954.00 INR"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "60.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "90000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "63000.00 SGD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "460000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "274000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "137000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98880 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98880 GBP"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "252000 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "151424 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "72.80 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5026304.56 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "3823555 INR"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573164}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 AUD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2500000000 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1250000000.00 IDR"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "150000 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "customOriginalDateofHire": "2021-10-18", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "92000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "92000 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1334606514 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1077911100 IDR"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "161000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "161000.00 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "366285 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "295000 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 AUD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113000 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "87500 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "306000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "153000 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "209740 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179740 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000 GBP"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1416320 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "850000.00 CNY"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "103833.6 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "49.92 USD"}, "emitted_at": 1710872573165}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "60000.00 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "588000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "588000 SEK"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "87360 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "42.00 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "192000.00 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "288400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "288400 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "31200 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "15.00 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "ERROR USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "643885.45 BRL"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "207000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 AUD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "118000 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "165000 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000 USD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000 GBP"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1128000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1128000 SEK"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "133120 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "91520 AUD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "372665 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "263165 AUD"}, "emitted_at": 1710872573166}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "69500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "69500 GBP"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "64500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "57000 EUR"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "339900 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "262650 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "420000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 AUD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47000 EUR"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "172500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172500.00 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "391250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "341250 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "330000.00 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "143000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "143000 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "139050 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "139050 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114000 GBP"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "389242 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "278030.00 BRL"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "112200 USD"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000.00 GBP"}, "emitted_at": 1710872573167}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "102000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000 GBP"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "195000 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "352000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "352000 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "217500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "157500 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000.00 EUR"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-01-17", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-01-17", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "265000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "135000 EUR"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84500 GBP"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 EUR"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "435000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "261000 GBP"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "254875 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "167375 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "99750 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "68250 USD"}, "emitted_at": 1710872573168}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163530 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "124200 GBP"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000 EUR"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3339751.06 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2914751.06 INR"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "175000.00 AUD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 EUR"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 SGD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155250 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "412500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "412500 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "119600 GBP"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "451508 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "305915.00 BRL"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "320000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1380000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1380000.00 SEK"}, "emitted_at": 1710872573169}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000 GBP"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "76776 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "76776 GBP"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "370000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 SGD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "customOriginalDateofHire": "2022-01-24", "originalHireDate": "0000-00-00", "customOTE": "63000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "63000.00 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "77000 GBP"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "900000 CNY", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "900000.00 CNY"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1032000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1032000.00 SEK"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 EUR"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "203550 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "203550.00 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "191400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "166400 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "819864.76 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "819864.76 BRL"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 SGD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "206000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "206000 USD"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "678000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "678000 SEK"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "55000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "50000 EUR"}, "emitted_at": 1710872573170}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204350 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179350 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "179500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "179500 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "572000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "440000.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175100 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "50.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000000 JPY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "19200000.00 JPY"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "53700 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47700 GBP"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4260357.5 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "3873057.5 INR"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97200 GBP"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97000 GBP"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-05-16", "customOTE": "72800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "35.00 USD"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "594000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "594000 SEK"}, "emitted_at": 1710872573171}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1150000 INR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1150000.00 INR"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "47250 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36750 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95200 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86700 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3142855500 IDR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1571427750.00 IDR"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "95000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36400 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210500 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160500 CAD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280330 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "217330 SGD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "50000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "45000.00 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "480000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "480000 SEK"}, "emitted_at": 1710872573172}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "147600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "132600 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "197600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "95.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "269000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 SGD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "27040 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "13.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-13", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 GBP"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "4758356 MXN", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2379178.00 MXN"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "213200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "163200 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205950 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175950 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "520000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "250.00 USD"}, "emitted_at": 1710872573173}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "82000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "82000 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1008000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1008000 SEK"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 AUD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205100 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175100 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105060 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "72100 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "104000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "104000.00 GBP"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "158000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158000 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106000 GBP"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1110249 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "783705.00 BRL"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "474000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "474000 SEK"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "97000 GBP"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "163625 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "148625 USD"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "469680 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "469680 SEK"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "768000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "768000 SEK"}, "emitted_at": 1710872573174}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "930000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "558000.00 BRL"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "75000.00 EUR"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "91000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000 GBP"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "572400 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "572400 SEK"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "112500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112500 GBP"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114000 GBP"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1401000 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "700500.00 CNY"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "224620 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "158620 EUR"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113600 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "113600 GBP"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-05-16", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87000.00 USD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "customOriginalDateofHire": "2022-05-09", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "198000 AUD"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 EUR"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "96000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "96000 EUR"}, "emitted_at": 1710872573175}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185400 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185400 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "235000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97640 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "88400 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "88400.00 EUR"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "86000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "86000 GBP"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "926266.09 CNY", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "825366.09 CNY"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "549000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "549000 SEK"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "613920 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "613920 SEK"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "112500.00 EUR"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "360000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000 GBP"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573176}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68640 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "33.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-06", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "77500 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "77500 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "275000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "52500 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "47500 EUR"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-06-13", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "46800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "36400 GBP"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000 SEK"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "220000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "176000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "8625000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6900000.00 INR"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573177}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3033166 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2488752.00 INR"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1224000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "612000.00 BRL"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "290000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "290000.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "246000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "172200.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "135000.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "152000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "152000 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "780000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "780000 SEK"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "84000 GBP"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 EUR"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000 GBP"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "235000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000.00 EUR"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45760 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "22.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "275000.00 USD"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 EUR"}, "emitted_at": 1710872573178}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "71000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "71000.00 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000.00 EUR"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "95000.00 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-07-11", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "customOriginalDateofHire": "2022-07-11", "originalHireDate": "0000-00-00", "customOTE": "57500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "57500.00 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "292500 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 SGD"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1971428.57 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1380000.00 INR"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 SGD"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-08-01", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "184000.00 USD"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "3120000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2184000.00 INR"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2400000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "2400000.00 SEK"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "738720 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "738720 SEK"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "114800 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "114800 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550004.4 ILS", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "500004.00 ILS"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000 GBP"}, "emitted_at": 1710872573179}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 EUR"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "672000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "672000.00 SEK"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "6000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "6000000.00 INR"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 EUR"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "129000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "103200.00 SGD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "135200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "65.00 USD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "194000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "146250 USD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1320000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1320000.00 SEK"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2022-08-22", "customOTE": "55000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "55000.00 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1450004 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "1100004.00 SEK"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "123600 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "86520.00 SGD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155250 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155250 USD"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "119900 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "109000.00 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "51500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "51500 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72100 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72100 GBP"}, "emitted_at": 1710872573180}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "40000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "40000 GBP"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "272400 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "272400.00 BRL"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "182000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "182000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "155000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 GBP"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "515000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "412000.00 BRL"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "576000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "576000.00 SEK"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "164000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "164000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "500004 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "500004.00 SEK"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "208000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573181}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "470000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "264000.00 SGD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "42000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "3500.00 SEK"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1207060.03 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "732060.03 BRL"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "107000.00 GBP"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "106500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "106500 GBP"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "97000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 GBP", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Year", "payRate": "72000 GBP"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "250000.00 USD"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000 SEK"}, "emitted_at": 1710872573182}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 GBP", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 GBP"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "280000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "196000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "660000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "660000.00 SEK"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "204000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "204000.00 AUD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "265000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "265000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "205000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 EUR"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "210000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110000.00 USD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "268500 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "268500.00 SGD"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "155000.00 GBP"}, "emitted_at": 1710872573183}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "95000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "700000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "165000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 AUD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "191250.00 AUD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "785915.49 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "555915.49 BRL"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "415000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "332000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "125000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "customOriginalDateofHire": "2019-12-01", "originalHireDate": "2020-01-15", "customOTE": "30000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "30000.00 USD"}, "emitted_at": 1710872573184}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "215000.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "600000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "360000.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "275000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "312000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "26000.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2751000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2200800.00 INR"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2751000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "2200800.00 INR"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2038500 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1630500.00 INR"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1630200 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1304200.00 INR"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "2450000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "1960000.00 INR"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "144000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "144000.00 GBP"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "138000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "110400.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573185}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "198000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "158400.00 USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "550000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "450000.00 USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573186}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 EUR"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "210000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 SGD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "200000.00 SGD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "93500 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 GBP"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "124800 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "60.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "208000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "100.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "52.50 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "109200 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "52.50 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "24000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "2000.00 GBP"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "107000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "87000.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "360.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "80000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "80000.00 GBP"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "62400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "30.00 USD"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "143000.00 GBP"}, "emitted_at": 1710872573187}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "225000.00 GBP"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "648000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "648000.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "10000.00 BRL"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239200 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "115.00 USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "140000.00 GBP"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "102000.00 GBP"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "260000.00 USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "343200 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "165.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "customOriginalDateofHire": "2023-09-04", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "432000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "432000.00 SEK"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573188}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "416000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "200.00 AUD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "240000.00 USD"}, "emitted_at": 1710872573189}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "375000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 BRL"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 BRL"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "10000.00 BRL"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "84000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "7000.00 BRL"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "105000.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "156000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "75.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "170000.00 EUR"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "75000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "75000.00 USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573190}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "239200 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "115.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "150000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "285000.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "155000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "140000.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "240000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "140000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121860 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "121860 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "90000.00 GBP"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "35000.00 GBP"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573191}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1563922497 IDR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Month", "payRate": "97745156.00 IDR"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "234000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "840000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "840000.00 SEK"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "2023-08-28", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "250000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 SGD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "750000 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "525000.00 BRL"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "440000 AUD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "220000.00 AUD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "145000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "270000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "270000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "230000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573192}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "5211800 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "4532000.00 INR"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "612400 BRL", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "490000.00 BRL"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "125000.00 GBP"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "110000.00 GBP"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "247500.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "257000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "132000.00 EUR"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "98000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "98000.00 GBP"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "744000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "744000.00 SEK"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "166400 USD", "overtimeRate": " USD", "exempt": "Non-exempt", "payPer": "Hour", "payRate": "80.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "85000.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "80000.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "150000.00 USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573193}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 SGD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 SGD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "65000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "65000.00 GBP"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 MYR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "576000.00 MYR"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "277344 MYR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "221875.00 MYR"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "636000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "636000.00 SEK"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "10000000 INR", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "8000000.00 INR"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "410000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "315000.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Day", "payRate": "420.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "67000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "67000.00 GBP"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "45000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "35000.00 GBP"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000.00 EUR"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "249600 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "120.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573194}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Day", "payRate": "420.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "340000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "91000.00 EUR"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "225000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "225000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000.00 SEK"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "125000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "100000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "110000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "6250.00 SGD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "505000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "252500.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "310000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "310000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "customOriginalDateofHire": "2023-12-04", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "180000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "720000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "720000.00 SEK"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "145000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "116000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573195}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "68000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "68000.00 GBP"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "100000.00 GBP"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "95000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "65000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58240 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "28.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "245000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "196000.00 AUD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "72000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "72000.00 GBP"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "176800 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "85.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "115000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "115000.00 GBP"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "504000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "504000.00 SEK"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "100000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "70000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "190000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "190000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "300000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "300000.00 USD"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "120000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "120000.00 GBP"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573196}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "customOriginalDateofHire": "2024-03-18", "originalHireDate": "0000-00-00", "customOTE": "60000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "5000.00 SEK"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1456000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "728000.00 BRL"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "customOriginalDateofHire": "2023-12-11", "originalHireDate": "0000-00-00", "customOTE": "850000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "425000.00 AUD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "1638000 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "819000.00 BRL"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "160000.00 SGD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "624000 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "300.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "customOriginalDateofHire": "2023-12-14", "originalHireDate": "0000-00-00", "customOTE": "475000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "332500.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "73000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "73000.00 GBP"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "130000.00 GBP"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "105000 GBP", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "105000.00 GBP"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "58240 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "28.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "247500.00 USD"}, "emitted_at": 1710872573197}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "255000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "127500.00 EUR"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "242250.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "400000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "320000.00 AUD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "185000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "185000.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "540000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "540000.00 SEK"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "49920 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "24.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 CAD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "180000.00 CAD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "285000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "213625.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "205000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "123000.00 EUR"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "330000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "215004 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "17917.00 SGD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "113000 SGD", "overtimeRate": " USD", "exempt": null, "payPer": "Month", "payRate": "6500.00 SGD"}, "emitted_at": 1710872573198}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "315000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "165000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "260000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "156000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "160000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "160000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "89000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "89000.00 AUD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "200000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "200000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "854286 BRL", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "598000.00 BRL"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "customOriginalDateofHire": "2024-03-11", "originalHireDate": "0000-00-00", "customOTE": "350000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "350000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "130000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "120000.00 USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "85000 EUR", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "85000.00 EUR"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "450000 AUD", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "225000.00 AUD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573199}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "684000 SEK", "overtimeRate": " USD", "exempt": null, "payPer": "Year", "payRate": "684000.00 SEK"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "175000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "175000.00 USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "41600 USD", "overtimeRate": " USD", "exempt": null, "payPer": "Hour", "payRate": "20.00 USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "180000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "130000.00 USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "195000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Hour", "payRate": "93.75 USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573200}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "170000 USD", "overtimeRate": " USD", "exempt": "Exempt", "payPer": "Year", "payRate": "170000.00 USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "customOriginalDateofHire": "0000-00-00", "originalHireDate": "0000-00-00", "customOTE": "0 USD", "overtimeRate": " USD", "exempt": null, "payPer": null, "payRate": " USD"}, "emitted_at": 1710872573201}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "payRate": "196000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "payRate": "136000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "payRate": "1500189 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "payRate": "907200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "payRate": "280000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Charlie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "payRate": "3000000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "payRate": "103.37 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Rick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "payRate": "240000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "payRate": "260000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Robert", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "payRate": "109000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "payRate": "756000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jacob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "payRate": "155000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "payRate": "125000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "payRate": "192875 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "payRate": "235000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "payRate": "84.13 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "payRate": "137550 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "payRate": "92000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "payRate": "99000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lexi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "payRate": "196581.47 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "payRate": "200750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "payRate": "189000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "payRate": "192276.12 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "payRate": "171392 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": "She/her", "customRegrettable": null}, "emitted_at": 1710872575761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "payRate": "172500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Salas", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "payRate": "227800.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "payRate": "71000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "payRate": "114180 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "payRate": "82000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "payRate": "280000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "payRate": "170500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "payRate": "166566.40 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ross", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "payRate": "197000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "payRate": "171735 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "payRate": "55000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Fawad", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "payRate": "329000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "payRate": "261000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "payRate": "71000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "payRate": "222853.68 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "payRate": "315000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kurt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "payRate": "270000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "payRate": "48.50 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "payRate": "190000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "David", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "payRate": "111600.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "payRate": "220500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "payRate": "170565.20 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "payRate": "177000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "payRate": "205000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "payRate": "230000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "payRate": "148500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Thanh", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "payRate": "136800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "payRate": "136000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cecille", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "payRate": "195000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eric", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "payRate": "115000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "payRate": "148000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "payRate": "143000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "payRate": "201500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ravi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "payRate": "218000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "payRate": "55000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "payRate": "104854.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "payRate": "325000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "payRate": "184591.58 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "payRate": "452400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "payRate": "157000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "payRate": "186225.48 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gozer", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "payRate": "238500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "payRate": "145000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "payRate": "162500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "payRate": "167500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "payRate": "183680.42 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575772}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "payRate": "172000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "payRate": "137500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "payRate": "256500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "payRate": "217948 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Ciano", "preferredName": "Billy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "payRate": "78000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sean", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "payRate": "280000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "payRate": "176748 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "payRate": "185850 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "payRate": "152603.85 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "payRate": "46.15 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575773}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "payRate": "188198.4 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "payRate": "129483.75 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "payRate": "220000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "payRate": "50000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "payRate": "48000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "payRate": "260000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "payRate": "99000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "payRate": "185317.6 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Geoff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "payRate": "20.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "payRate": "135000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "payRate": "290000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575774}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "payRate": "189000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cory", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "payRate": "105000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "payRate": "94000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "payRate": "148522.5 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "payRate": "170544 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "payRate": "1104000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "payRate": "205000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "payRate": "200000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575775}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "payRate": "3369665.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "payRate": "190000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "payRate": "110000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "payRate": "175.00 EUR", "payPeriod": "Monthly", "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "payRate": "200000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "payRate": "103200 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "payRate": "765600.00 DKK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ben", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "payRate": "60000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "payRate": "1773691.92 DKK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "payRate": "160500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jonny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "payRate": "95000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575776}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "payRate": "1248000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "payRate": "1152000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "payRate": "96000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "payRate": "900000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "payRate": "58000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "payRate": "110127.5 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kees", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Bill", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "payRate": "219000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "payRate": "1080000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "payRate": "130500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "payRate": "1308000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Misha", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575777}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "payRate": "1055700 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "payRate": "170980 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Delier", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "payRate": "1080000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "payRate": "932400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "payRate": "1300000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "payRate": "900000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "payRate": "858000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "payRate": "48500.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "payRate": "97500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "payRate": "64000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "payRate": "768000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "payRate": "56000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "payRate": "190000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575778}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "payRate": "720000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "payRate": "750000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "payRate": "102875 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rocha", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "payRate": "465000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "payRate": "894000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "payRate": "156000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "payRate": "72000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "payRate": "132000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "payRate": "1710000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "payRate": "158080.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "payRate": "966000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "payRate": "132000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "payRate": "120000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575779}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "payRate": "87.5 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "payRate": "77000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "payRate": "93000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "payRate": "110250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "payRate": "122000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "payRate": "81120 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jenny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "payRate": "102900.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lju", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "payRate": "912000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "payRate": "77500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "payRate": "919800 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "payRate": "50000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "payRate": "128750 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "payRate": "69894.79 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575780}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "payRate": "2100000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "payRate": "1712000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kalle", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "payRate": "96000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "payRate": "43000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tiago", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "payRate": "130000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "payRate": "132000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "payRate": "240000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "payRate": "76666.67 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "payRate": "118000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "payRate": "270000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "payRate": "130810 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Irfan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "payRate": "1291490.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575781}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "payRate": "171600.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "payRate": "1350000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "payRate": "90000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "payRate": "594000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "payRate": "123000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "payRate": "79000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "payRate": "300.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "payRate": "1128000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "payRate": "1320000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "payRate": "101500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "payRate": "882000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "payRate": "59360 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "payRate": "3000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "payRate": "1110000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575782}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Liza", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "payRate": "170400 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "payRate": "862500 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "payRate": "500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "payRate": "55000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "payRate": "68000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "payRate": "579000 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "payRate": "70000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "payRate": "799500.00 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "payRate": "75000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "payRate": "657700 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Bergkvist", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "payRate": "1421400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "payRate": "60000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "payRate": "894000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "payRate": "91800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575783}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "payRate": "90000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "payRate": "92219 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "payRate": "807240 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "payRate": "160000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "payRate": "68000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "payRate": "118000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "payRate": "627000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "payRate": "55000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "payRate": "918000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "payRate": "84500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "payRate": "96000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Rob", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "payRate": "1080000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "payRate": "89500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nico", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "payRate": "57000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "payRate": "91800 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "payRate": "110000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575784}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "payRate": "550200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "payRate": "792000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "payRate": "103000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "payRate": "109000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "payRate": "162750.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "payRate": "156000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "payRate": "1122000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "payRate": "1333200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "payRate": "840000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Kargapolov", "preferredName": "Georgiy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575785}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575786}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "payRate": "223000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575787}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Scott Lorenson", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575788}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Jeffrey Morris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Aayushi Mittal", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575789}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "payRate": "50.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "payRate": "140000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "payRate": "1080000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "payRate": "540000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "payRate": "540000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "payRate": "620000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "payRate": "91000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "payRate": "792000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "payRate": "130000 NZD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "payRate": "300000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "payRate": "30000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "payRate": "51000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "payRate": "130 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575790}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "payRate": "420000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "payRate": "115000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "payRate": "106300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "payRate": "396000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "payRate": "384000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "payRate": "72500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "payRate": "76000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "payRate": "41520 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "payRate": "155 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "payRate": "576000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "payRate": "1027500 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "payRate": "6000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "payRate": "130 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "payRate": "516000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575791}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "payRate": "80000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "payRate": "6000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "payRate": "51000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "payRate": "550 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "payRate": "60000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "payRate": "101000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "payRate": "765000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "payRate": "50000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "payRate": "65000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "payRate": "100000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "payRate": "660000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575792}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "payRate": "165 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "payRate": "150 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "payRate": "55000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "payRate": "15 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "payRate": "5000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "payRate": "7000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "payRate": "110 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "payRate": "759960 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "payRate": "846000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "payRate": "47000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "payRate": "68000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "payRate": "633600 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575793}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "payRate": "708000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "payRate": "117300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "payRate": "66000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jas", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "payRate": "100000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ves", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "payRate": "35000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Shash", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "payRate": "186250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "payRate": "192500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "payRate": "196198.00 CAD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jon", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "payRate": "105000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "payRate": "156000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "payRate": "265000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "payRate": "175000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "payRate": "294000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575794}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "payRate": "87500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "payRate": "870000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "payRate": "104500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "payRate": "97250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "payRate": "70350.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "payRate": "1135000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "payRate": "1020000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "payRate": "154500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "payRate": "1380000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "payRate": "687900 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "payRate": "984000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "payRate": "135108 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "payRate": "139080 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575795}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "payRate": "162500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "payRate": "249500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ken", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "payRate": "158000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "payRate": "160950 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "payRate": "205000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phani", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "payRate": "109200.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Noor", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "payRate": "3572475 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "payRate": "265000 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "payRate": "257500 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joshua", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "payRate": "240000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "payRate": "236375 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "payRate": "165000 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "payRate": "176800.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "payRate": "137500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "payRate": "152500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "payRate": "870000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "payRate": "96300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575796}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "payRate": "96555 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "payRate": "138500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "David", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "payRate": "72500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Yigit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "payRate": "715800 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "payRate": "630000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "payRate": "674040 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "payRate": "123600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "payRate": "128000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "payRate": "88700.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "payRate": "83000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "payRate": "68000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "payRate": "195250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kay", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "payRate": "120000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "payRate": "257610.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Heng", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575797}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "payRate": "180000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "payRate": "1130400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "payRate": "87000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "payRate": "183750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "payRate": "766.28 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "payRate": "844200.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jon Ander", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "payRate": "1560000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "payRate": "834000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "payRate": "265000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "payRate": "88000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "payRate": "844560 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Barcelos", "preferredName": "Antonio", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "payRate": "112200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575798}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "payRate": "1000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "payRate": "198000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "payRate": "960960 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "payRate": "73500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "payRate": "840000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Love", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "payRate": "154500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mari", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "payRate": " USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "payRate": "67000.00 EUR", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "payRate": "45.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "payRate": "101500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "payRate": "49350 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575799}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "payRate": "0.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "payRate": "876000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "payRate": "116000.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "payRate": "900000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "payRate": "135600 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "payRate": "122100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "payRate": "128750 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "payRate": "159900 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tom", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "payRate": "127560.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Deb", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "payRate": "160500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "James", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "payRate": "1250000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "payRate": "260000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575800}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "payRate": "20700.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "payRate": "197000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "payRate": "442200 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Aleks", "pronouns": "They/them", "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "payRate": "75.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "payRate": "91800 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "payRate": "164900 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ron", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "payRate": "726000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "payRate": "87000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "payRate": "1050.00 USD", "payPeriod": "Monthly", "paySchedule": null, "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "payRate": "75.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "payRate": "128000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "payRate": "648000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "payRate": "127680 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "payRate": "144200 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "payRate": "190000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "payRate": "190000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575801}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "payRate": "648000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "payRate": "122400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "AJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "payRate": "75.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "payRate": "176000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "payRate": "148074.37 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "payRate": "150000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Peter", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "John", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "payRate": "104000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "payRate": "123600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dmitriy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "payRate": "92500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "payRate": "138000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "payRate": "3205885.5 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "payRate": "156800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Syd", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "payRate": "155000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "payRate": "620340.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "payRate": "104000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575802}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "payRate": "270000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "payRate": "136000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "payRate": "156750 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "payRate": "215000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "payRate": "114857 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "payRate": "504996.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "payRate": "134000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Luisa", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "payRate": "165000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "payRate": "192000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Wu", "preferredName": "Tony", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "payRate": "116000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "payRate": "73500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "payRate": "78000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "payRate": "370000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "payRate": "90000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575803}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "payRate": "400000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "payRate": "245000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "TJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "payRate": "35.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "payRate": "125000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "payRate": "800000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "payRate": "70720 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "payRate": "184000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kristin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "payRate": "107100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "payRate": "348000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "payRate": "87250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "payRate": "216000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Tom", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "payRate": "1308000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575804}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "payRate": "90000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "payRate": "888000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "payRate": "684000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "payRate": "22.88 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Enzo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "payRate": "80000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "payRate": "132850 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "payRate": "66000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "payRate": "69500 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jasreel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "payRate": "3410618.4 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "payRate": "816000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kadde", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "payRate": "654000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "payRate": "804000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Costa", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "payRate": "960000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Prashanth", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "payRate": "119000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "payRate": "193640 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575805}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "payRate": "150800 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "payRate": "195120 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Perreault", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "payRate": "7649250 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "payRate": "185000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "payRate": "100.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Amie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "payRate": "150000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "payRate": "310000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "payRate": "220000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Maruthi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "payRate": "94000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "payRate": "90000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "payRate": "95000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "payRate": "84500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "payRate": "167000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Stu", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "payRate": "147000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "payRate": "696000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575806}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "payRate": "81250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "payRate": "110.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "payRate": "89000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "payRate": "42000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "payRate": "104000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "payRate": "150.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "payRate": "79500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "payRate": "150000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Angie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "payRate": "732000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jane", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "payRate": "952000 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Derek", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "payRate": "133500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "payRate": "69784 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "payRate": "43680 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "payRate": "70.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "payRate": "139200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "payRate": "117300 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "payRate": "180000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575807}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "payRate": "200000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "payRate": "70720 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "payRate": "228000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Mackey", "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "payRate": "325000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Carl", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "payRate": "123000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "payRate": "100.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "payRate": "74900 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "payRate": "5000000 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "payRate": "624000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "payRate": "66950 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "payRate": "88000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "payRate": "3.90 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "payRate": "4400000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "payRate": "690000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "payRate": "197631.2 CAD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575808}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "payRate": "155150 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "payRate": "150000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "payRate": "584400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "payRate": "600000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "payRate": "126200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "payRate": "64800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "payRate": "25.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "payRate": "25.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Frank", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "payRate": "100.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "payRate": "153000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "payRate": "168000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "payRate": "1248000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "payRate": "588000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mahes", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "payRate": "170000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Michael", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "payRate": "576000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "payRate": "81000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575809}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "payRate": "1620000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "payRate": "90000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "payRate": "71000 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "payRate": "125000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Stewart", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "payRate": "3900000 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "payRate": "212750.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "payRate": "869400.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "payRate": "187500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "payRate": "158000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "payRate": "109200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "payRate": "38000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "payRate": "108000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nacho", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575810}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "payRate": "180000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "payRate": "139050 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "payRate": "65.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "payRate": "42230 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "payRate": "43050 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "payRate": "175000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "payRate": "107700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Duval", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "payRate": "767000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "payRate": "72100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "payRate": "46620 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ellie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "payRate": "636000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "payRate": "142100 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "payRate": "782000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575811}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Charlie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "payRate": "172500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "payRate": "163600 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "payRate": "163200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "payRate": "210000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Xander", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "payRate": "120000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "payRate": "203940 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "payRate": "67920 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Greg", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "payRate": "63600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "payRate": "36.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Yoshi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "payRate": "67.60 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "payRate": "105000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "payRate": "147000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "BambooHR", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "payRate": "782363 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "payRate": "216000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575812}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ken", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "payRate": "9398545.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "payRate": "3112621.05 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "payRate": "87250 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jun", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "payRate": "138.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "payRate": "86400 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "payRate": "75000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "payRate": "113000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "payRate": "179740 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Amy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "payRate": "38.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Contract", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "payRate": "70000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "payRate": "75100.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "payRate": "162000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "payRate": "16.20 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575813}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "payRate": "200000.00 CAD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "payRate": "996000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "payRate": "68250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "payRate": "261000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gavin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "payRate": "226800 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "payRate": "273000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hubert", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "payRate": "160000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "payRate": "170000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jean Jacques", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "payRate": "160000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cassie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "payRate": "602400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "payRate": "3260841.1 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "payRate": "6006580.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575814}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "payRate": "174250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "payRate": "117000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "payRate": "2719954.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "payRate": "60.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "payRate": "63000.00 SGD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "payRate": "164000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "payRate": "137000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "payRate": "98880 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mandy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "payRate": "252000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "payRate": "72.80 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "payRate": "3823555 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "payRate": "200000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575815}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "payRate": "1250000000.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "payRate": "150000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "payRate": "92000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "payRate": "1077911100 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "payRate": "161000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "payRate": "295000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sef", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "payRate": "240000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "payRate": "113000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nicki", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "payRate": "87500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "payRate": "153000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Andy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "payRate": "179740 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dave", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "payRate": "98000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "payRate": "850000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sophie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "payRate": "49.92 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575816}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "payRate": "60000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Freddy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "payRate": "588000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "payRate": "42.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "payRate": "192000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "payRate": "288400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "payRate": "15.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "payRate": "643885.45 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "payRate": "140000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "payRate": "180000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "payRate": "118000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "payRate": "165000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "payRate": "105000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "payRate": "155000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Susanne", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "payRate": "1128000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "payRate": "91520 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "payRate": "263165 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "payRate": "69500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575817}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "payRate": "57000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "payRate": "262650 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "payRate": "210000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "payRate": "47000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Carlos", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "payRate": "172500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Pam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "payRate": "341250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "payRate": "330000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "payRate": "143000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "payRate": "139050 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "payRate": "114000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "payRate": "278030.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "payRate": "112200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "payRate": "175000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "payRate": "102000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "payRate": "195000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Katie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "payRate": "352000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575818}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "payRate": "157500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "payRate": "96000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "payRate": "135000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rodriguez", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "payRate": "84500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "payRate": "140000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "payRate": "261000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "payRate": "167375 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "payRate": "68250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "payRate": "124200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "payRate": "95000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "payRate": "2914751.06 INR", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575819}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "payRate": "175000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "payRate": "125000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "payRate": "175000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Yami", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "payRate": "130000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "payRate": "155250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "payRate": "412500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Phil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "payRate": "119600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "payRate": "305915.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "payRate": "1380000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "payRate": "180000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "payRate": "76776 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "George", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "payRate": "185000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "payRate": "63000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575820}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "payRate": "77000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "payRate": "900000.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "payRate": "1032000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Audrey", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "payRate": "160000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "payRate": "203550.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chuck", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "payRate": "166400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Rae", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "payRate": "819864.76 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Paula", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "payRate": "160000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kimberly", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "payRate": "206000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "payRate": "678000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "payRate": "50000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "payRate": "179350 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "CJ", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "payRate": "179500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "payRate": "440000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575821}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "payRate": "175100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "payRate": "50.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "payRate": "19200000.00 JPY", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "payRate": "47700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "payRate": "3873057.5 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "payRate": "97200 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hang", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "payRate": "97000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "payRate": "35.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Nari", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "payRate": "594000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Gem", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "payRate": "1150000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "payRate": "36750 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "payRate": "86700 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "payRate": "1571427750.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575822}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "payRate": "95000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "payRate": "36400 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "payRate": "160500 CAD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vish", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "payRate": "217330 SGD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ezhil", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "payRate": "45000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "payRate": "480000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "payRate": "132600 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Renea", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "payRate": "310000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "payRate": "95.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "payRate": "234000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575823}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "payRate": "215000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "payRate": "13.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "payRate": "75000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "payRate": "75.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "payRate": "2379178.00 MXN", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mike", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "payRate": "163200 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "payRate": "175950 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "payRate": "250.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575824}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "payRate": "82000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "payRate": "1008000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "payRate": "200000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "payRate": "175100 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "payRate": "225000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "payRate": "72100 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "payRate": "104000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Taner Sener", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "payRate": "158000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Lovitz", "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "payRate": "106000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Brian", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "payRate": "783705.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "payRate": "474000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575825}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "payRate": "97000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "payRate": "148625 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Fed", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "payRate": "469680 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "payRate": "768000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "payRate": "558000.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "payRate": "75000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "payRate": "91000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "payRate": "572400 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "payRate": "112500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "payRate": "114000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "payRate": "700500.00 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "payRate": "158620 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Lee", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "payRate": "113600 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alex", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "payRate": "87000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jeff", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575826}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "payRate": "198000 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "payRate": "130000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "payRate": "96000 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Pahola", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "payRate": "185400 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jack", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Lui", "preferredName": "Danny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "payRate": "235000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "payRate": "88400.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575827}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "payRate": "86000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "payRate": "825366.09 CNY", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Harry", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jonny", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "payRate": "549000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "payRate": "613920 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "payRate": "112500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "payRate": "180000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "JG", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "payRate": "33.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Kat", "preferredName": "Kat", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "payRate": "77500 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Madi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575828}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "payRate": "275000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "payRate": "47500 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "payRate": "176000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Daniel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "payRate": "36400 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "payRate": "744000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "payRate": "176000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "payRate": "6900000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Padma", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "payRate": "2488752.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Soumya", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "payRate": "612000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "payRate": "290000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "payRate": "172200.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575829}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "payRate": "135000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "payRate": "152000 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "payRate": "780000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "payRate": "84000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Leo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "payRate": "105000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "payRate": "85000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "payRate": "155000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "payRate": "22.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Webb", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "payRate": "275000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "payRate": "180000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "payRate": "71000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "payRate": "95000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Regrettable"}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "payRate": "95000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575830}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "payRate": "57500.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "payRate": "234000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "payRate": "1380000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "payRate": "196000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Alvin", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "payRate": "184000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jim", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "payRate": "2184000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "payRate": "2400000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "payRate": "738720 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "payRate": "114800 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ollie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Grigoriy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "payRate": "500004.00 ILS", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "payRate": "98000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "payRate": "115000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575831}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "payRate": "672000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "payRate": "6000000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "payRate": "85000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "payRate": "125000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "payRate": "103200.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "payRate": "65.00 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "payRate": "146250 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "payRate": "1320000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "payRate": "55000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "payRate": "1100004.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "payRate": "86520.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "payRate": "155250 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "payRate": "109000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "payRate": "51500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "payRate": "72100 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mat", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575832}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "payRate": "40000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "payRate": "272400.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "payRate": "182000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "payRate": "155000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "payRate": "160000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "payRate": "170000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": "Le", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "payRate": "412000.00 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "payRate": "576000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "payRate": "164000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Chiang", "preferredName": "Edward", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "payRate": "500004.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "payRate": "208000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Leo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575833}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "payRate": "105000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Kim", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "payRate": "264000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "payRate": "3500.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "payRate": "732060.03 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Grenier", "preferredName": "Duncan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Cate", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "payRate": "107000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Razvenskaia", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "payRate": "106500 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "payRate": " USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Commission", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575834}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "payRate": "72000 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "payRate": "250000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "payRate": "504000 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "payRate": "150000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "payRate": "140000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "payRate": "196000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "payRate": "660000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "payRate": "204000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "payRate": "265000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "payRate": "205000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575835}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Singh", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Hopfer", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "payRate": "132000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Hylke", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "payRate": "210000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "payRate": "110000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "payRate": "268500.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "payRate": "155000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "payRate": "95000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "payRate": "260000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "payRate": "165000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575836}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "payRate": "175000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "payRate": "191250.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "payRate": "555915.49 BRL", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "payRate": "332000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "af Klint", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "payRate": "125000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Joe", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "payRate": "30000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "payRate": "215000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Becca", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "payRate": "360000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "payRate": "220000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575837}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "payRate": "26000.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "payRate": "2200800.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "payRate": "2200800.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "payRate": "1630500.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "payRate": "1304200.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "payRate": "1960000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "payRate": "144000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "payRate": "110400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "payRate": "158400.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "payRate": "450000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575838}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575839}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "payRate": "100000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "payRate": "180000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "payRate": "200000.00 SGD", "payPeriod": null, "paySchedule": null, "payType": "Salary", "customPreferredLastName": null, "preferredName": "Teddy", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "payRate": "85000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "payRate": "60.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "payRate": "100.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "payRate": "52.50 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "payRate": "52.50 USD", "payPeriod": null, "paySchedule": null, "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "payRate": "2000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "payRate": "87000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "payRate": "360.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "payRate": "80000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "payRate": "30.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575840}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "payRate": "143000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "payRate": "225000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Isa", "pronouns": null, "customRegrettable": "Non-regrettable"}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "payRate": "648000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "payRate": "10000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "payRate": "115.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Lamarche", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "payRate": "140000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "payRate": "102000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "payRate": "260000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "payRate": "165.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "payRate": "432000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575841}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "payRate": "200.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "payRate": "240000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575842}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "payRate": "5000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "payRate": "5000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "payRate": "10000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "payRate": "7000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "payRate": "105000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "payRate": "75.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Mia", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "payRate": "20.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "payRate": "170000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "payRate": "75000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Liz", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575843}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "payRate": "115.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ram", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "payRate": "285000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Casey", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "payRate": "140000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "payRate": "90000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "payRate": "35000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "payRate": "97745156.00 IDR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575844}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "payRate": "234000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Steve", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "payRate": "840000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "payRate": "150000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "payRate": "525000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "payRate": "220000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "payRate": "145000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Chase", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "payRate": "270000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575845}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "payRate": "4532000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "payRate": "490000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eliezer", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "payRate": "125000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "payRate": "110000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Eugene", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "payRate": "247500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Bryan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "payRate": "132000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "payRate": "98000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Buss", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "payRate": "744000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "payRate": "80.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "payRate": "85000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "payRate": "80000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "payRate": "150000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575846}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "payRate": "165000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Tan", "preferredName": "John", "pronouns": "He/him", "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "payRate": "65000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "payRate": "70000.00 USD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "payRate": "576000.00 MYR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "payRate": "221875.00 MYR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "payRate": "636000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Manel", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": "Janzen", "preferredName": "Jennie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "payRate": "8000000.00 INR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sumit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "payRate": "315000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "payRate": "420.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "payRate": "67000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575847}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "payRate": "35000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "payRate": "123000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "payRate": "120.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "payRate": "420.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sam", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "payRate": "91000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Erik", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "payRate": "225000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "payRate": "684000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": "He/him", "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "payRate": "100000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "payRate": "6250.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Evian", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "payRate": "252500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "payRate": "310000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "payRate": "180000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kit", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575848}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "payRate": "720000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "payRate": "116000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Nick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "payRate": "68000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "payRate": "100000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "payRate": "65000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "payRate": "28.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": "Callejas", "preferredName": "Sophie", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "payRate": "196000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sarah", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "payRate": "72000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "payRate": "85.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "payRate": "115000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "payRate": "504000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "payRate": "70000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": "Hopkinson", "preferredName": "Theo", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575849}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "payRate": "190000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "payRate": "300000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "payRate": "120000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Rettig", "preferredName": "Marcus Rettig", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "payRate": "5000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "payRate": "728000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ademir Aurelio Monteiro", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "payRate": "425000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "KP", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "payRate": "819000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": "Jorge", "preferredName": "Andr\u00e9", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "payRate": "160000.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Derrick", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "payRate": "300.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "payRate": "332500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "payRate": "73000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575850}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "payRate": "130000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "payRate": "105000.00 GBP", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "payRate": "28.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "payRate": "247500.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "payRate": "127500.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "payRate": "242250.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "payRate": "320000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kris", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "payRate": "185000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "payRate": "540000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "payRate": "24.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": "Vicky", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "payRate": "180000.00 CAD", "payPeriod": "Every other week", "paySchedule": "Bi-weekly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Vince", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "payRate": "213625.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575851}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "payRate": "123000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Matt", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "payRate": "17917.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "payRate": "6500.00 SGD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "payRate": "165000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Jay", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "payRate": "156000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Kyle", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "payRate": "160000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Harsh", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "payRate": "89000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "payRate": "200000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "payRate": "598000.00 BRL", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "payRate": "350000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Dan", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "payRate": "120000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "payRate": "85000.00 EUR", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575852}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "payRate": "225000.00 AUD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Ray", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Akalin", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "payRate": "684000.00 SEK", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Wilco", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "payRate": "175000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": "Sandi", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": "Anu", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "payRate": "20.00 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "payRate": "130000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "payRate": "93.75 USD", "payPeriod": "Monthly", "paySchedule": "Monthly", "payType": "Hourly", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Gouveia", "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575853}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "payRate": "170000.00 USD", "payPeriod": "Twice a month", "paySchedule": "Semi-monthly", "payType": "Salary", "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": "Bautzer", "preferredName": "Max", "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "payRate": " USD", "payPeriod": null, "paySchedule": null, "payType": null, "customPreferredLastName": null, "preferredName": null, "pronouns": null, "customRegrettable": null}, "emitted_at": 1710872575854}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872576075}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "status": "Inactive"}, "emitted_at": 1710872576670}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "status": "Active"}, "emitted_at": 1710872576670}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "status": "Inactive"}, "emitted_at": 1710872576671}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "status": "Active"}, "emitted_at": 1710872576671}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "status": "Active"}, "emitted_at": 1710872576671}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "status": "Inactive"}, "emitted_at": 1710872576672}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "status": "Inactive"}, "emitted_at": 1710872576672}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "status": "Inactive"}, "emitted_at": 1710872576673}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "status": "Active"}, "emitted_at": 1710872576673}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "status": "Inactive"}, "emitted_at": 1710872576673}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "status": "Inactive"}, "emitted_at": 1710872576674}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "status": "Active"}, "emitted_at": 1710872576674}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "status": "Inactive"}, "emitted_at": 1710872576675}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "status": "Inactive"}, "emitted_at": 1710872576675}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "status": "Active"}, "emitted_at": 1710872576675}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "status": "Inactive"}, "emitted_at": 1710872576676}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "status": "Inactive"}, "emitted_at": 1710872576676}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "status": "Active"}, "emitted_at": 1710872576676}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "status": "Inactive"}, "emitted_at": 1710872576676}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "status": "Inactive"}, "emitted_at": 1710872576677}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "status": "Inactive"}, "emitted_at": 1710872576677}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "status": "Inactive"}, "emitted_at": 1710872576677}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "status": "Active"}, "emitted_at": 1710872576677}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "status": "Active"}, "emitted_at": 1710872576678}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "status": "Inactive"}, "emitted_at": 1710872576678}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "status": "Inactive"}, "emitted_at": 1710872576678}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "status": "Inactive"}, "emitted_at": 1710872576678}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "status": "Inactive"}, "emitted_at": 1710872576679}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "status": "Active"}, "emitted_at": 1710872576679}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "status": "Inactive"}, "emitted_at": 1710872576679}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "status": "Inactive"}, "emitted_at": 1710872576679}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "status": "Inactive"}, "emitted_at": 1710872576679}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "status": "Inactive"}, "emitted_at": 1710872576680}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "status": "Active"}, "emitted_at": 1710872576680}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "status": "Active"}, "emitted_at": 1710872576680}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "status": "Inactive"}, "emitted_at": 1710872576680}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "status": "Inactive"}, "emitted_at": 1710872576681}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "status": "Inactive"}, "emitted_at": 1710872576681}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "status": "Inactive"}, "emitted_at": 1710872576681}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "status": "Active"}, "emitted_at": 1710872576681}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "status": "Inactive"}, "emitted_at": 1710872576681}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "status": "Inactive"}, "emitted_at": 1710872576682}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "status": "Inactive"}, "emitted_at": 1710872576682}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "status": "Inactive"}, "emitted_at": 1710872576682}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "status": "Active"}, "emitted_at": 1710872576682}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "status": "Inactive"}, "emitted_at": 1710872576682}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "status": "Active"}, "emitted_at": 1710872576683}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "status": "Active"}, "emitted_at": 1710872576683}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "status": "Inactive"}, "emitted_at": 1710872576683}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "status": "Inactive"}, "emitted_at": 1710872576683}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "status": "Inactive"}, "emitted_at": 1710872576683}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "status": "Active"}, "emitted_at": 1710872576684}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "status": "Inactive"}, "emitted_at": 1710872576684}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "status": "Inactive"}, "emitted_at": 1710872576684}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "status": "Inactive"}, "emitted_at": 1710872576684}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "status": "Inactive"}, "emitted_at": 1710872576684}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "status": "Active"}, "emitted_at": 1710872576685}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "status": "Active"}, "emitted_at": 1710872576685}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "status": "Inactive"}, "emitted_at": 1710872576685}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "status": "Active"}, "emitted_at": 1710872576702}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "status": "Inactive"}, "emitted_at": 1710872576702}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "status": "Active"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "status": "Active"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "status": "Inactive"}, "emitted_at": 1710872576703}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "status": "Inactive"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "status": "Inactive"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "status": "Active"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "status": "Active"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "status": "Inactive"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "status": "Active"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "status": "Inactive"}, "emitted_at": 1710872576704}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "status": "Inactive"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "status": "Inactive"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "status": "Inactive"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "status": "Inactive"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "status": "Active"}, "emitted_at": 1710872576705}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "status": "Active"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "status": "Inactive"}, "emitted_at": 1710872576706}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "status": "Active"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "status": "Inactive"}, "emitted_at": 1710872576707}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "status": "Active"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "status": "Active"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "status": "Active"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "status": "Active"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "status": "Active"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "status": "Inactive"}, "emitted_at": 1710872576708}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "status": "Inactive"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "status": "Active"}, "emitted_at": 1710872576709}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "status": "Inactive"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "status": "Active"}, "emitted_at": 1710872576710}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "status": "Inactive"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "status": "Active"}, "emitted_at": 1710872576711}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "status": "Active"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "status": "Inactive"}, "emitted_at": 1710872576712}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "status": "Active"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "status": "Inactive"}, "emitted_at": 1710872576713}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "status": "Inactive"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "status": "Active"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "status": "Inactive"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "status": "Inactive"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "status": "Inactive"}, "emitted_at": 1710872576714}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "status": "Inactive"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "status": "Inactive"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "status": "Inactive"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "status": "Inactive"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "status": "Active"}, "emitted_at": 1710872576715}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "status": "Active"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "status": "Inactive"}, "emitted_at": 1710872576716}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "status": "Active"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "status": "Active"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "status": "Active"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "status": "Inactive"}, "emitted_at": 1710872576717}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "status": "Inactive"}, "emitted_at": 1710872576718}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "status": "Inactive"}, "emitted_at": 1710872576719}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "status": "Inactive"}, "emitted_at": 1710872576720}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "status": "Inactive"}, "emitted_at": 1710872576721}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "status": "Active"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "status": "Inactive"}, "emitted_at": 1710872576722}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "status": "Active"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "status": "Inactive"}, "emitted_at": 1710872576723}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "status": "Active"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "status": "Inactive"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "status": "Active"}, "emitted_at": 1710872576724}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "status": "Inactive"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "status": "Active"}, "emitted_at": 1710872576725}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "status": "Inactive"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "status": "Active"}, "emitted_at": 1710872576726}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "status": "Active"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "status": "Inactive"}, "emitted_at": 1710872576727}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "status": "Active"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "status": "Inactive"}, "emitted_at": 1710872576728}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "status": "Inactive"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "status": "Active"}, "emitted_at": 1710872576729}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "status": "Inactive"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "status": "Active"}, "emitted_at": 1710872576730}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "status": "Inactive"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "status": "Active"}, "emitted_at": 1710872576731}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "status": "Inactive"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "status": "Active"}, "emitted_at": 1710872576732}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "status": "Active"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "status": "Inactive"}, "emitted_at": 1710872576733}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "status": "Inactive"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "status": "Active"}, "emitted_at": 1710872576734}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "status": "Inactive"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "status": "Active"}, "emitted_at": 1710872576735}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "status": "Active"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "status": "Inactive"}, "emitted_at": 1710872576736}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "status": "Active"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "status": "Inactive"}, "emitted_at": 1710872576737}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "status": "Active"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "status": "Inactive"}, "emitted_at": 1710872576738}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "status": "Inactive"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "status": "Active"}, "emitted_at": 1710872576739}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "status": "Active"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "status": "Inactive"}, "emitted_at": 1710872576740}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "status": "Active"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "status": "Inactive"}, "emitted_at": 1710872576741}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "status": "Inactive"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "status": "Active"}, "emitted_at": 1710872576742}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "status": "Active"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "status": "Inactive"}, "emitted_at": 1710872576743}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "status": "Active"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "status": "Inactive"}, "emitted_at": 1710872576744}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "status": "Inactive"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "status": "Active"}, "emitted_at": 1710872576745}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "status": "Active"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "status": "Inactive"}, "emitted_at": 1710872576746}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "status": "Active"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "status": "Inactive"}, "emitted_at": 1710872576747}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "status": "Active"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "status": "Inactive"}, "emitted_at": 1710872576748}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "status": "Inactive"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "status": "Active"}, "emitted_at": 1710872576749}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "status": "Active"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "status": "Inactive"}, "emitted_at": 1710872576750}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "status": "Active"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "status": "Inactive"}, "emitted_at": 1710872576751}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "status": "Inactive"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "status": "Inactive"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "status": "Inactive"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "status": "Inactive"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "status": "Active"}, "emitted_at": 1710872576752}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "status": "Active"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "status": "Inactive"}, "emitted_at": 1710872576753}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "status": "Active"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "status": "Inactive"}, "emitted_at": 1710872576754}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "status": "Inactive"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "status": "Inactive"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "status": "Inactive"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "status": "Inactive"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "status": "Inactive"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "status": "Active"}, "emitted_at": 1710872576755}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "status": "Inactive"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "status": "Inactive"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "status": "Inactive"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "status": "Inactive"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "status": "Active"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "status": "Inactive"}, "emitted_at": 1710872576756}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "status": "Active"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "status": "Inactive"}, "emitted_at": 1710872576757}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "status": "Active"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "status": "Inactive"}, "emitted_at": 1710872576758}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "status": "Active"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "status": "Inactive"}, "emitted_at": 1710872576759}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "status": "Inactive"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "status": "Inactive"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "status": "Active"}, "emitted_at": 1710872576760}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "status": "Inactive"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "status": "Inactive"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "status": "Inactive"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "status": "Inactive"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "status": "Active"}, "emitted_at": 1710872576761}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "status": "Inactive"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "status": "Inactive"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "status": "Active"}, "emitted_at": 1710872576762}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "status": "Inactive"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "status": "Inactive"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "status": "Inactive"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "status": "Inactive"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "status": "Active"}, "emitted_at": 1710872576763}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "status": "Inactive"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "status": "Active"}, "emitted_at": 1710872576764}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "status": "Inactive"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "status": "Inactive"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "status": "Inactive"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "status": "Active"}, "emitted_at": 1710872576765}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "status": "Active"}, "emitted_at": 1710872576766}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "status": "Active"}, "emitted_at": 1710872576767}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "status": "Active"}, "emitted_at": 1710872576768}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "status": "Inactive"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "status": "Active"}, "emitted_at": 1710872576769}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "status": "Active"}, "emitted_at": 1710872576770}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "status": "Active"}, "emitted_at": 1710872576771}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723"}, "emitted_at": 1710872576932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1", "terminationDate": "2022-01-05"}, "emitted_at": 1710872577857}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "114", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577858}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "115", "terminationDate": "2021-02-12"}, "emitted_at": 1710872577858}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "116", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577859}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "117", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577859}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "118", "terminationDate": "2019-12-01"}, "emitted_at": 1710872577859}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "119", "terminationDate": "2023-02-10"}, "emitted_at": 1710872577860}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "120", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577860}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "121", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577861}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "122", "terminationDate": "2020-08-14"}, "emitted_at": 1710872577861}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "123", "terminationDate": "2020-09-18"}, "emitted_at": 1710872577861}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "124", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577862}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "125", "terminationDate": "2021-04-23"}, "emitted_at": 1710872577864}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "126", "terminationDate": "2024-03-15"}, "emitted_at": 1710872577864}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "127", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577864}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "128", "terminationDate": "2021-07-08"}, "emitted_at": 1710872577864}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "129", "terminationDate": "2021-05-14"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "130", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "131", "terminationDate": "2022-03-04"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "132", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "133", "terminationDate": "2021-02-05"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "134", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577865}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "135", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "136", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "137", "terminationDate": "2020-08-07"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "138", "terminationDate": "2022-04-01"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "139", "terminationDate": "2021-01-29"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "140", "terminationDate": "2020-01-05"}, "emitted_at": 1710872577866}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "141", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "142", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "143", "terminationDate": "2023-09-22"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "144", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "145", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "146", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577867}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "147", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577868}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "148", "terminationDate": "2020-01-01"}, "emitted_at": 1710872577868}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "149", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577868}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "150", "terminationDate": "2023-10-01"}, "emitted_at": 1710872577868}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "151", "terminationDate": "2020-03-06"}, "emitted_at": 1710872577868}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "152", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577869}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "153", "terminationDate": "2024-02-16"}, "emitted_at": 1710872577869}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "154", "terminationDate": "2022-02-11"}, "emitted_at": 1710872577869}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "155", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577869}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "156", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577869}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "157", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "158", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577870}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "159", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "160", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577870}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "161", "terminationDate": "2020-04-03"}, "emitted_at": 1710872577871}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "162", "terminationDate": "2021-08-18"}, "emitted_at": 1710872577871}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "163", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577871}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "164", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577871}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "165", "terminationDate": "2022-10-21"}, "emitted_at": 1710872577871}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "166", "terminationDate": "2020-02-21"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "167", "terminationDate": "2022-05-01"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "168", "terminationDate": "2020-01-10"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "169", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "170", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "171", "terminationDate": "2023-05-15"}, "emitted_at": 1710872577872}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "172", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "173", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "174", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "175", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "176", "terminationDate": "2024-01-01"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "177", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "178", "terminationDate": "2022-10-21"}, "emitted_at": 1710872577873}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "179", "terminationDate": "2024-01-05"}, "emitted_at": 1710872577874}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "180", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577874}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "181", "terminationDate": "2022-03-18"}, "emitted_at": 1710872577874}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "182", "terminationDate": "2023-01-13"}, "emitted_at": 1710872577874}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "183", "terminationDate": "2020-10-30"}, "emitted_at": 1710872577875}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "184", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "185", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "186", "terminationDate": "2022-03-11"}, "emitted_at": 1710872577875}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "187", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577875}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "188", "terminationDate": "2022-03-31"}, "emitted_at": 1710872577876}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "189", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "190", "terminationDate": "2023-11-15"}, "emitted_at": 1710872577876}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "191", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "192", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577876}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "193", "terminationDate": "2021-10-01"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "194", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "195", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "196", "terminationDate": "2019-10-14"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "197", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "198", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "199", "terminationDate": "2022-08-23"}, "emitted_at": 1710872577877}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "200", "terminationDate": "2022-05-23"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "201", "terminationDate": "2021-08-27"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "202", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "203", "terminationDate": "2020-04-15"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "204", "terminationDate": "2020-11-20"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "205", "terminationDate": "2023-04-28"}, "emitted_at": 1710872577878}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "206", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "207", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "208", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "209", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "210", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "211", "terminationDate": "2021-02-01"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "212", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577879}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "213", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "214", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "215", "terminationDate": "2021-04-01"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "216", "terminationDate": "2021-08-31"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "217", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "218", "terminationDate": "2021-04-16"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "219", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "220", "terminationDate": "2021-04-14"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "221", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577880}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "222", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "223", "terminationDate": "2020-03-20"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "224", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "225", "terminationDate": "2022-07-22"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "226", "terminationDate": "2022-09-02"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "227", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "228", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "229", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "230", "terminationDate": "2020-07-15"}, "emitted_at": 1710872577881}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "231", "terminationDate": "2022-09-23"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "232", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "233", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "234", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "235", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "236", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "237", "terminationDate": "2022-01-07"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "238", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "239", "terminationDate": "2021-01-19"}, "emitted_at": 1710872577882}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "240", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "241", "terminationDate": "2021-09-10"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "242", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "243", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "244", "terminationDate": "2021-10-12"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "245", "terminationDate": "2022-08-09"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "246", "terminationDate": "2020-02-21"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "247", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "248", "terminationDate": "2020-11-13"}, "emitted_at": 1710872577883}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "249", "terminationDate": "2021-04-02"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "250", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "251", "terminationDate": "2021-10-22"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "252", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "253", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "254", "terminationDate": "2020-03-13"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "255", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "256", "terminationDate": "2021-05-21"}, "emitted_at": 1710872577884}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "257", "terminationDate": "2023-04-19"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "258", "terminationDate": "2021-05-21"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "259", "terminationDate": "2021-09-24"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "260", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "261", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "262", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "263", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "264", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "265", "terminationDate": "2024-02-16"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "266", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "267", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "268", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "269", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "270", "terminationDate": "2021-03-19"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "271", "terminationDate": "2021-05-14"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "272", "terminationDate": "2020-06-30"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "273", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577885}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "274", "terminationDate": "2021-07-31"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "275", "terminationDate": "2020-06-01"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "276", "terminationDate": "2021-03-04"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "277", "terminationDate": "2021-07-21"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "278", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "279", "terminationDate": "2019-11-29"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "280", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "281", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "282", "terminationDate": "2021-08-31"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "283", "terminationDate": "2022-02-22"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "284", "terminationDate": "2021-01-31"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "285", "terminationDate": "2020-04-30"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "286", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "287", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "288", "terminationDate": "2021-09-23"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "289", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "290", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "291", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "292", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "293", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "294", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "295", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "296", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "297", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "298", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577886}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "299", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "300", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "301", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "302", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "303", "terminationDate": "2020-04-19"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "304", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "305", "terminationDate": "2021-12-31"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "306", "terminationDate": "2019-12-31"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "307", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "308", "terminationDate": "2020-08-14"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "309", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "310", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "311", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "312", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "313", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "314", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "315", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "316", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "317", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "318", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "319", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "320", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "321", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "322", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577887}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "323", "terminationDate": "2020-10-09"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "324", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "325", "terminationDate": "2019-12-31"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "326", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "327", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "328", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "329", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "330", "terminationDate": "2023-01-24"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "331", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "332", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "333", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "334", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "335", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "336", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "337", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "338", "terminationDate": "2020-11-13"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "339", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "340", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "341", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "342", "terminationDate": "2023-05-01"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "343", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "344", "terminationDate": "2021-09-17"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "345", "terminationDate": "2020-08-28"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "346", "terminationDate": "2022-04-30"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "347", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577888}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "348", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "349", "terminationDate": "2020-06-09"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "350", "terminationDate": "2020-08-31"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "351", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "352", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "353", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "354", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "355", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "356", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "357", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "358", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "359", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "360", "terminationDate": "2019-11-15"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "361", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "362", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "363", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "364", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "365", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "366", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "367", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "368", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "369", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "370", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "371", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577889}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "372", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "373", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "374", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "375", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "376", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "377", "terminationDate": "2019-10-31"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "378", "terminationDate": "2021-07-02"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "379", "terminationDate": "2021-03-07"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "380", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "381", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "382", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "383", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "384", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "385", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "386", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "387", "terminationDate": "2020-02-11"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "388", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "389", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "390", "terminationDate": "2020-09-30"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "391", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "392", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "393", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "394", "terminationDate": "2020-08-31"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "395", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "396", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577890}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "397", "terminationDate": "2021-04-30"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "398", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "399", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "400", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "401", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "402", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "403", "terminationDate": "2023-11-24"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "404", "terminationDate": "2021-06-30"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "405", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "406", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "407", "terminationDate": "2020-02-28"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "408", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "409", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "410", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "411", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "412", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "413", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "414", "terminationDate": "2023-01-18"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "415", "terminationDate": "2022-01-21"}, "emitted_at": 1710872577891}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "416", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "417", "terminationDate": "2019-11-05"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "418", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "419", "terminationDate": "2022-05-06"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "421", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "423", "terminationDate": "2014-08-25"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "424", "terminationDate": "2016-04-01"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "425", "terminationDate": "2014-11-21"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "426", "terminationDate": "2013-12-31"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "427", "terminationDate": "2014-01-02"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "428", "terminationDate": "2013-11-01"}, "emitted_at": 1710872577892}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "429", "terminationDate": "2015-04-16"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "430", "terminationDate": "2013-07-12"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "431", "terminationDate": "2014-09-30"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "432", "terminationDate": "2015-08-07"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "433", "terminationDate": "2014-09-30"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "434", "terminationDate": "2014-01-07"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "435", "terminationDate": "2014-02-04"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "436", "terminationDate": "2014-10-13"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "437", "terminationDate": "2014-11-14"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "438", "terminationDate": "2017-05-15"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "439", "terminationDate": "2015-11-02"}, "emitted_at": 1710872577893}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "440", "terminationDate": "2019-06-14"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "441", "terminationDate": "2018-10-01"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "442", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "443", "terminationDate": "2014-09-14"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "444", "terminationDate": "2018-05-04"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "445", "terminationDate": "2014-09-14"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "446", "terminationDate": "2016-07-22"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "447", "terminationDate": "2015-10-16"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "448", "terminationDate": "2014-10-31"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "449", "terminationDate": "2016-02-26"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "450", "terminationDate": "2015-12-11"}, "emitted_at": 1710872577894}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "451", "terminationDate": "2018-04-13"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "452", "terminationDate": "2019-10-14"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "453", "terminationDate": "2016-04-22"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "454", "terminationDate": "2016-03-04"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "455", "terminationDate": "2015-10-09"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "456", "terminationDate": "2016-09-21"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "457", "terminationDate": "2015-09-02"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "458", "terminationDate": "2017-11-28"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "459", "terminationDate": "2016-12-09"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "460", "terminationDate": "2019-06-03"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "461", "terminationDate": "2017-09-01"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "462", "terminationDate": "2018-06-15"}, "emitted_at": 1710872577895}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "463", "terminationDate": "2018-04-09"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "464", "terminationDate": "2016-11-17"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "465", "terminationDate": "2017-09-15"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "466", "terminationDate": "2016-07-15"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "467", "terminationDate": "2018-08-27"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "468", "terminationDate": "2016-12-19"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "469", "terminationDate": "2017-04-20"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "470", "terminationDate": "2017-03-06"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "471", "terminationDate": "2016-12-15"}, "emitted_at": 1710872577896}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "472", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "473", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "474", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "475", "terminationDate": "2016-08-12"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "476", "terminationDate": "2017-09-15"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "477", "terminationDate": "2017-10-15"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "478", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "479", "terminationDate": "2019-06-28"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "480", "terminationDate": "2017-12-31"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "481", "terminationDate": "2018-09-17"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "482", "terminationDate": "2017-11-14"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "483", "terminationDate": "2017-08-11"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "484", "terminationDate": "2017-08-11"}, "emitted_at": 1710872577897}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "485", "terminationDate": "2017-08-07"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "486", "terminationDate": "2017-09-26"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "487", "terminationDate": "2018-08-31"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "488", "terminationDate": "2017-10-20"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "489", "terminationDate": "2019-09-11"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "490", "terminationDate": "2018-09-04"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "491", "terminationDate": "2018-09-30"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "492", "terminationDate": "2018-12-28"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "493", "terminationDate": "2018-12-28"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "494", "terminationDate": "2018-10-10"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "495", "terminationDate": "2019-05-01"}, "emitted_at": 1710872577898}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "496", "terminationDate": "2019-06-07"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "497", "terminationDate": "2019-01-15"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "498", "terminationDate": "2019-08-16"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "499", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "501", "terminationDate": "2019-10-12"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "502", "terminationDate": "2016-03-12"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "503", "terminationDate": "2014-03-31"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "504", "terminationDate": "2018-01-26"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "505", "terminationDate": "2018-07-23"}, "emitted_at": 1710872577899}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "506", "terminationDate": "2012-04-30"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "507", "terminationDate": "2016-05-31"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "509", "terminationDate": "2015-09-30"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "510", "terminationDate": "2013-10-31"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "511", "terminationDate": "2019-03-11"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "512", "terminationDate": "2014-12-01"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "513", "terminationDate": "2013-11-17"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "514", "terminationDate": "2015-01-31"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "515", "terminationDate": "2014-06-30"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "516", "terminationDate": "2018-01-14"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "517", "terminationDate": "2015-03-18"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "519", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577900}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "520", "terminationDate": "2015-02-03"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "521", "terminationDate": "2016-11-30"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "522", "terminationDate": "2017-02-24"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "523", "terminationDate": "2017-10-31"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "524", "terminationDate": "2017-01-22"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "525", "terminationDate": "2017-07-03"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "526", "terminationDate": "2015-08-31"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "527", "terminationDate": "2017-11-30"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "528", "terminationDate": "2018-03-23"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "530", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "531", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "532", "terminationDate": "2016-07-31"}, "emitted_at": 1710872577901}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "533", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "534", "terminationDate": "2016-06-22"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "535", "terminationDate": "2018-04-30"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "536", "terminationDate": "2017-09-20"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "537", "terminationDate": "2018-07-10"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "538", "terminationDate": "2019-09-30"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "539", "terminationDate": "2017-09-30"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "540", "terminationDate": "2017-09-30"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "541", "terminationDate": "2018-12-14"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "542", "terminationDate": "2017-04-30"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "544", "terminationDate": "2017-08-31"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "545", "terminationDate": "2017-08-31"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "546", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577902}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "547", "terminationDate": "2018-12-18"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "548", "terminationDate": "2019-04-30"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "549", "terminationDate": "2018-02-09"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "550", "terminationDate": "2018-02-16"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "551", "terminationDate": "2017-12-31"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "552", "terminationDate": "2019-09-24"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "553", "terminationDate": "2018-07-30"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "554", "terminationDate": "2018-11-13"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "555", "terminationDate": "2019-07-05"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "556", "terminationDate": "2018-06-30"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "557", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "558", "terminationDate": "2018-05-31"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "559", "terminationDate": "2018-08-31"}, "emitted_at": 1710872577903}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "560", "terminationDate": "2018-07-17"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "561", "terminationDate": "2018-07-04"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "562", "terminationDate": "2018-06-22"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "563", "terminationDate": "2019-07-08"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "564", "terminationDate": "2018-08-10"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "565", "terminationDate": "2018-08-17"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "566", "terminationDate": "2019-06-07"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "567", "terminationDate": "2019-07-06"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "568", "terminationDate": "2019-08-16"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "569", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "570", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "571", "terminationDate": "2021-03-12"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "572", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "573", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "574", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577904}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "575", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "576", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "577", "terminationDate": "2021-12-03"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "578", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "579", "terminationDate": "2020-12-09"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "580", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "581", "terminationDate": "2020-03-13"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "582", "terminationDate": "2022-07-05"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "583", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "584", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "587", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "588", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "589", "terminationDate": "2020-02-03"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "590", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577905}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "591", "terminationDate": "2020-02-03"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "592", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "593", "terminationDate": "2023-02-13"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "594", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "595", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "599", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "600", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "601", "terminationDate": "2022-02-17"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "602", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "603", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "604", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "605", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "606", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577906}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "607", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "608", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "609", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "610", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "611", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "613", "terminationDate": "2022-12-26"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "614", "terminationDate": "2022-09-01"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "615", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "616", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "617", "terminationDate": "2020-07-15"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "618", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "619", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "620", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577907}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "621", "terminationDate": "2022-10-07"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "622", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "623", "terminationDate": "2021-06-15"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "624", "terminationDate": "2020-07-09"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "625", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "626", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "627", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "628", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "629", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "630", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "631", "terminationDate": "2020-04-01"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "633", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "634", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "635", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577908}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "636", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "637", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "638", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "639", "terminationDate": "2024-01-05"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "640", "terminationDate": "2020-06-22"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "641", "terminationDate": "2022-09-21"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "642", "terminationDate": "2022-02-04"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "643", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "644", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "645", "terminationDate": "2024-02-11"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "646", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "647", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "648", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "649", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577909}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "650", "terminationDate": "2023-09-11"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "651", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "652", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "653", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "654", "terminationDate": "2020-04-28"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "655", "terminationDate": "2021-04-16"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "656", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "658", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "659", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "662", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "663", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "664", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "665", "terminationDate": "2021-09-30"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "667", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "668", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577910}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "669", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "670", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "671", "terminationDate": "2023-06-21"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "672", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "674", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "676", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "677", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "678", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "679", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "681", "terminationDate": "2022-03-31"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "682", "terminationDate": "2022-08-29"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "684", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "685", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "686", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "687", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577911}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "688", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "689", "terminationDate": "2020-10-21"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "690", "terminationDate": "2020-07-31"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "691", "terminationDate": "2023-07-31"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "693", "terminationDate": "2020-09-01"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "694", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "695", "terminationDate": "2023-08-04"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "696", "terminationDate": "2023-02-28"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "697", "terminationDate": "2022-04-14"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "698", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "699", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "700", "terminationDate": "2023-10-10"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "701", "terminationDate": "2021-07-01"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "702", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "703", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "704", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577912}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "705", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "706", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "707", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "708", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "709", "terminationDate": "2021-07-26"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "710", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "711", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "712", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "713", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "714", "terminationDate": "2023-09-29"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "715", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "716", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "717", "terminationDate": "2020-12-10"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "718", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "719", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "720", "terminationDate": "2021-03-31"}, "emitted_at": 1710872577913}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "721", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "722", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "723", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "724", "terminationDate": "2021-03-09"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "725", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "726", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "727", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "728", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "729", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "730", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "731", "terminationDate": "2022-01-25"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "732", "terminationDate": "2021-03-31"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "734", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "735", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "736", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "737", "terminationDate": "2022-03-25"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "738", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577914}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "739", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "740", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "741", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "742", "terminationDate": "2022-09-12"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "743", "terminationDate": "2020-12-22"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "744", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "745", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "746", "terminationDate": "2021-10-31"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "747", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "748", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "749", "terminationDate": "2020-12-18"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "751", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "752", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "753", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "754", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "755", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "756", "terminationDate": "2022-05-12"}, "emitted_at": 1710872577915}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "757", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "758", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "759", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "760", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "761", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "762", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "763", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "764", "terminationDate": "2021-03-19"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "765", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "766", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "767", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "768", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "769", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "770", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577916}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "771", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "772", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "773", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "774", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "775", "terminationDate": "2024-01-01"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "776", "terminationDate": "2021-07-16"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "777", "terminationDate": "2021-06-11"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "778", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "780", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "782", "terminationDate": "2021-07-01"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "783", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "785", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "786", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "787", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "788", "terminationDate": "2022-03-18"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "790", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577917}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "791", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "792", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "793", "terminationDate": "2021-10-01"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "794", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "795", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "796", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "797", "terminationDate": "2022-10-10"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "798", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "799", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "800", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "801", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "802", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "803", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "804", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "805", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "806", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "807", "terminationDate": "2022-10-14"}, "emitted_at": 1710872577918}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "808", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "809", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "810", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "812", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "813", "terminationDate": "2024-03-11"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "814", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "815", "terminationDate": "2021-10-08"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "816", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "817", "terminationDate": "2022-08-26"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "818", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "819", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "820", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "821", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "822", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "823", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "824", "terminationDate": "2022-05-13"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "825", "terminationDate": "2022-12-23"}, "emitted_at": 1710872577919}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "826", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "827", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "828", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "829", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "830", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "831", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "832", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "833", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "834", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "835", "terminationDate": "2022-05-02"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "836", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "837", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "838", "terminationDate": "2022-05-20"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "839", "terminationDate": "2023-09-15"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "842", "terminationDate": "2022-08-18"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "843", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "844", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "845", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "846", "terminationDate": "2023-03-24"}, "emitted_at": 1710872577920}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "847", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "848", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "849", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "850", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "851", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "852", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "853", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "854", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "855", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "856", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "857", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "858", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "859", "terminationDate": "2023-11-22"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "860", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "861", "terminationDate": "2021-11-08"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "862", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "863", "terminationDate": "2022-10-11"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "864", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577921}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "865", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "866", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "867", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "869", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "870", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "871", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "872", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "873", "terminationDate": "2021-09-09"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "874", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "875", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "876", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "877", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "878", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "879", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "880", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "881", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "882", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577922}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "883", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "884", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "885", "terminationDate": "2021-09-30"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "886", "terminationDate": "2021-09-02"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "887", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "888", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "889", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "890", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "891", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "892", "terminationDate": "2022-04-22"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "893", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "894", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "895", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "896", "terminationDate": "2021-07-16"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "897", "terminationDate": "2022-06-24"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "898", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "899", "terminationDate": "2021-06-25"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "900", "terminationDate": "2022-03-29"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "901", "terminationDate": "2023-11-17"}, "emitted_at": 1710872577923}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "902", "terminationDate": "2021-09-21"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "903", "terminationDate": "2022-08-29"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "904", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "905", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "907", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "908", "terminationDate": "2022-07-22"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "909", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "910", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "911", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "912", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "913", "terminationDate": "2022-01-31"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "914", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "915", "terminationDate": "2022-02-28"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "916", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "918", "terminationDate": "2021-10-15"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "919", "terminationDate": "2022-02-04"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "920", "terminationDate": "2022-04-19"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "921", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577924}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "922", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "923", "terminationDate": "2023-08-09"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "924", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "925", "terminationDate": "2023-07-20"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "926", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "927", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "928", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "929", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "930", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "931", "terminationDate": "2022-07-01"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "932", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "933", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "934", "terminationDate": "2022-07-08"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "935", "terminationDate": "2023-02-16"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "936", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "937", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "938", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "939", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577925}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "940", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "941", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "942", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "943", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "944", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "945", "terminationDate": "2022-03-23"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "946", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "947", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "948", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "950", "terminationDate": "2023-03-29"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "951", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "952", "terminationDate": "2024-01-24"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "953", "terminationDate": "2022-11-20"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "954", "terminationDate": "2024-02-01"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "955", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "956", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "957", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "958", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577926}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "959", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "960", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "961", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "962", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "963", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "964", "terminationDate": "2021-10-29"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "965", "terminationDate": "2022-07-05"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "966", "terminationDate": "2021-10-27"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "967", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "968", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "969", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "970", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "971", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "972", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "973", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "974", "terminationDate": "2024-01-15"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "975", "terminationDate": "2022-10-17"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "976", "terminationDate": "2022-01-14"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "977", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "978", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "979", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577927}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "980", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "981", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "982", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "983", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "984", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "985", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "986", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "987", "terminationDate": "2023-03-31"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "988", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "989", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "990", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "991", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "992", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "993", "terminationDate": "2022-04-15"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "994", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "995", "terminationDate": "2022-01-19"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "996", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "997", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "998", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "999", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577928}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1000", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1001", "terminationDate": "2021-12-30"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1002", "terminationDate": "2023-11-24"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1003", "terminationDate": "2022-01-17"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1004", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1005", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1006", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1007", "terminationDate": "2023-04-25"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1008", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1009", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1010", "terminationDate": "2022-12-09"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1011", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1012", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1013", "terminationDate": "2022-11-04"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1014", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1015", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1016", "terminationDate": "2024-02-09"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1017", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1018", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1019", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577929}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1020", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1021", "terminationDate": "2022-11-11"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1022", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1023", "terminationDate": "2022-03-03"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1024", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1025", "terminationDate": "2024-01-02"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1026", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1027", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1028", "terminationDate": "2024-01-15"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1029", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1030", "terminationDate": "2022-09-16"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1031", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1032", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1033", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1034", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1035", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1036", "terminationDate": "2024-01-12"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1037", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1038", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1039", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1040", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577930}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1041", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1042", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1043", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1044", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1045", "terminationDate": "2023-05-26"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1046", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1047", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1048", "terminationDate": "2024-02-13"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1049", "terminationDate": "2023-04-14"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1050", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1051", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1052", "terminationDate": "2022-01-11"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1053", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1054", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1055", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1056", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1057", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1058", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1059", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1060", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577931}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1061", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1062", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1063", "terminationDate": "2023-05-19"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1064", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1065", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1066", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1067", "terminationDate": "2023-01-13"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1068", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1069", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1072", "terminationDate": "2022-07-11"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1073", "terminationDate": "2023-12-06"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1074", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1075", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1076", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1077", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1078", "terminationDate": "2023-07-28"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1079", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1080", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1081", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1083", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1084", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577932}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1085", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1086", "terminationDate": "2024-02-18"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1088", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1089", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1090", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1091", "terminationDate": "2023-03-01"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1092", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1093", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1095", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1096", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1097", "terminationDate": "2022-06-30"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1098", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1099", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1100", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1101", "terminationDate": "2022-09-23"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1102", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1103", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1104", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1105", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1107", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1108", "terminationDate": "2022-09-30"}, "emitted_at": 1710872577933}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1109", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1110", "terminationDate": "2023-01-06"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1111", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1112", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1113", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1114", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1115", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1116", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1117", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1118", "terminationDate": "2023-10-18"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1119", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1120", "terminationDate": "2023-01-20"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1121", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1122", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1124", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1126", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1127", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1128", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1129", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1130", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577934}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1131", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1132", "terminationDate": "2023-08-25"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1133", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1134", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1136", "terminationDate": "2023-11-03"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1138", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1139", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1140", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1141", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1142", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1143", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1144", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1145", "terminationDate": "2024-01-12"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1146", "terminationDate": "2022-07-15"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1147", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1148", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1149", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1150", "terminationDate": "2024-01-24"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1151", "terminationDate": "2022-07-11"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1152", "terminationDate": "2022-12-09"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1154", "terminationDate": "2023-04-21"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1155", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577935}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1156", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1157", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1158", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1159", "terminationDate": "2023-05-18"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1160", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1161", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1162", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1163", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1164", "terminationDate": "2022-08-26"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1165", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1166", "terminationDate": "2022-08-09"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1167", "terminationDate": "2022-08-19"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1168", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1169", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1170", "terminationDate": "2022-06-29"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1171", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1172", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1173", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1174", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1175", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1176", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1178", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1179", "terminationDate": "2023-05-12"}, "emitted_at": 1710872577936}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1180", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1181", "terminationDate": "2023-05-05"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1182", "terminationDate": "2022-11-30"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1183", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1184", "terminationDate": "2023-06-23"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1185", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1186", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1187", "terminationDate": "2022-05-05"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1188", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1190", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1191", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1193", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1194", "terminationDate": "2024-01-31"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1195", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1196", "terminationDate": "2022-07-29"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1197", "terminationDate": "2022-05-25"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1198", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1199", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1200", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1201", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1203", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1204", "terminationDate": "2022-10-31"}, "emitted_at": 1710872577937}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1205", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1206", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1207", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1208", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1209", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1210", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1211", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1212", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1213", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1214", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1215", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1216", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1217", "terminationDate": "2022-09-02"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1219", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1220", "terminationDate": "2023-10-06"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1222", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1223", "terminationDate": "2024-02-12"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1224", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1225", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1227", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1228", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1229", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1230", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577938}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1231", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1232", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1233", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1234", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1235", "terminationDate": "2022-12-16"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1237", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1238", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1239", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1240", "terminationDate": "2022-12-16"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1241", "terminationDate": "2023-02-17"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1242", "terminationDate": "2022-09-06"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1243", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1244", "terminationDate": "2024-02-23"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1245", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1246", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1247", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1248", "terminationDate": "2023-08-01"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1250", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1251", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1252", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1254", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1255", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577939}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1256", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1258", "terminationDate": "2023-07-03"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1259", "terminationDate": "2022-09-06"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1260", "terminationDate": "2023-09-28"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1261", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1262", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1264", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1265", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1266", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1267", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1268", "terminationDate": "2023-09-30"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1269", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1270", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1271", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1272", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1273", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1274", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1275", "terminationDate": "2022-09-09"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1276", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1277", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1278", "terminationDate": "2023-02-10"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1280", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1281", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577940}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1283", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1284", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1285", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1286", "terminationDate": "2023-08-08"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1287", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1288", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1289", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1290", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1291", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1292", "terminationDate": "2022-11-30"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1293", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1294", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1295", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1296", "terminationDate": "2023-05-26"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1297", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1298", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1299", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1300", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1301", "terminationDate": "2023-02-23"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1302", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1303", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1304", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577941}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1305", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1306", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1307", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1308", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1309", "terminationDate": "2022-08-21"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1310", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1311", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1312", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1313", "terminationDate": "2023-12-07"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1314", "terminationDate": "2022-08-31"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1315", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1316", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1317", "terminationDate": "2023-10-30"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1318", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1319", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1320", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1321", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1322", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1323", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1324", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1325", "terminationDate": "2024-02-19"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1326", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1327", "terminationDate": "2023-05-09"}, "emitted_at": 1710872577942}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1328", "terminationDate": "2023-07-21"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1329", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1330", "terminationDate": "2023-02-03"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1331", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1332", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1333", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1334", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1335", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1336", "terminationDate": "2023-01-31"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1338", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1339", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1340", "terminationDate": "2023-04-21"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1341", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1342", "terminationDate": "2022-12-31"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1343", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1344", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1345", "terminationDate": "2023-03-13"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1346", "terminationDate": "2023-11-17"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1347", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1348", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1349", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1350", "terminationDate": "2024-02-13"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1351", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1352", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577943}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1353", "terminationDate": "2023-05-31"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1354", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1355", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1356", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1357", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1358", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1360", "terminationDate": "2023-08-16"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1361", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1362", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1363", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1364", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1365", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1366", "terminationDate": "2023-08-15"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1367", "terminationDate": "2023-03-23"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1368", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1369", "terminationDate": "2023-03-23"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1370", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1371", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1372", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1373", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1374", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1375", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1376", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1378", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1379", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577944}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1381", "terminationDate": "2023-10-09"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1382", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1383", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1384", "terminationDate": "2023-11-15"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1385", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1386", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1387", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1388", "terminationDate": "2023-09-05"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1389", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1390", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1391", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1392", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1393", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1394", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1395", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1397", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1398", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1399", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1400", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1401", "terminationDate": "2023-06-30"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1402", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1403", "terminationDate": "2023-08-16"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1404", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1405", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577945}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1406", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1407", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1408", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1409", "terminationDate": "2023-04-25"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1410", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1411", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1412", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1413", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1414", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1415", "terminationDate": "2023-09-07"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1416", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1417", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1418", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1419", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1420", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1421", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1422", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1424", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1425", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1426", "terminationDate": "2023-08-10"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1427", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1428", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1429", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1430", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577946}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1431", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1432", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1433", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1434", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1435", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1436", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1437", "terminationDate": "2023-03-03"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1438", "terminationDate": "2023-03-16"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1439", "terminationDate": "2023-02-01"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1440", "terminationDate": "2023-02-01"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1441", "terminationDate": "2022-12-01"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1442", "terminationDate": "2022-11-01"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1443", "terminationDate": "2023-12-27"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1444", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1445", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1446", "terminationDate": "2023-06-13"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1448", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1449", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1451", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1452", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1453", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1454", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1455", "terminationDate": "2024-01-19"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1456", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1457", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577947}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1458", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1459", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1460", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1461", "terminationDate": "2023-08-25"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1462", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1463", "terminationDate": "2023-09-22"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1464", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1465", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1466", "terminationDate": "2023-08-23"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1467", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1468", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1469", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1470", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1471", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1472", "terminationDate": "2023-08-10"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1473", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1474", "terminationDate": "2023-08-11"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1475", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1476", "terminationDate": "2023-08-18"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1477", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1478", "terminationDate": "2024-03-04"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1479", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1480", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1481", "terminationDate": "2023-10-17"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1482", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577948}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1483", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1484", "terminationDate": "2023-10-13"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1485", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1486", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1487", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1488", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1489", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1490", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1491", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1492", "terminationDate": "2023-08-31"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1493", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1494", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1495", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1496", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1497", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1498", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1499", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1500", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1501", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1502", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1503", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1504", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1505", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1506", "terminationDate": "2024-01-10"}, "emitted_at": 1710872577949}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1507", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1508", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1510", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1511", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1512", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1513", "terminationDate": "2024-01-26"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1514", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1515", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1516", "terminationDate": "2023-08-21"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1518", "terminationDate": "2023-10-31"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1520", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1521", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1522", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1523", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1524", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1525", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1526", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1527", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1528", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1529", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1530", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1531", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1532", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1533", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1534", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577950}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1535", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1536", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1538", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1539", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1540", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1541", "terminationDate": "2024-01-31"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1542", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1543", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1544", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1545", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1546", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1547", "terminationDate": "2023-09-13"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1548", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1549", "terminationDate": "2023-12-31"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1550", "terminationDate": "2024-01-26"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1551", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1552", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1553", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1554", "terminationDate": "2024-02-29"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1555", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1556", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1557", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1558", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1559", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1560", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577951}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1561", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1562", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1563", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1564", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1565", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1566", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1567", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1568", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1569", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1570", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1571", "terminationDate": "2024-01-18"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1572", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1573", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1574", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1575", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1576", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1577", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1578", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1579", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1580", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1581", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1582", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1583", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1584", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1585", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1586", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577952}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1587", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1588", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1589", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1590", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1591", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1592", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1593", "terminationDate": "2024-01-19"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1595", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1597", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1598", "terminationDate": "2023-12-01"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1599", "terminationDate": "2023-12-15"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1600", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1601", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1602", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1603", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1604", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1605", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1606", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1607", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1608", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1609", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1610", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1611", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1612", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1613", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577953}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1614", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1615", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1616", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1617", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1618", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1619", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1620", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1621", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1622", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1623", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1624", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1625", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1626", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1627", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1628", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1629", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1630", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1631", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1632", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1633", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1634", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1635", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1636", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1637", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1638", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1639", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577954}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1640", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1641", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1642", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1643", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1644", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1645", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1646", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1647", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1648", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1649", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1650", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1651", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1652", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1653", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1654", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1655", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1656", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1657", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1658", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1659", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1660", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1661", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1662", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1663", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1664", "terminationDate": "2024-02-23"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1665", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1666", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1667", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577955}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1668", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1669", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1670", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1671", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1672", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1673", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1674", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1675", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1676", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1677", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1678", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1680", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1681", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1682", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1683", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1684", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1685", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1686", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1687", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1689", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1690", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1691", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1692", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1693", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1694", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1695", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1696", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577956}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1697", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1698", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1699", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1700", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1701", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1702", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1703", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1704", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1705", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1706", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1707", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1708", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1709", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1710", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1711", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1712", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1713", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1714", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1715", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1716", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1717", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1718", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1719", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1720", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1721", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1722", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577957}} -{"type": "RECORD", "record": {"stream": "custom_reports_stream", "data": {"id": "1723", "terminationDate": "0000-00-00"}, "emitted_at": 1710872577958}} -{"type": "LOG", "log": {"level": "INFO", "message": "Read 10741 records from custom_reports_stream stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream custom_reports_stream as STOPPED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872577958.311, "stream_status": {"stream_descriptor": {"name": "custom_reports_stream", "namespace": null}, "status": "COMPLETE"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing custom_reports_stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_tables_stream 0:00:00.390416"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as STARTED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578315.8481, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "STARTED"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: meta_fields_stream "}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as RUNNING"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578586.349, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "RUNNING"}}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4967, "name": "% Sales Commissions", "type": "textarea"}, "emitted_at": 1710872578585}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4968, "name": "% Variable Bonus", "type": "textarea"}, "emitted_at": 1710872578586}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4641, "name": "2022 Annual Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578587}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4641.1", "name": "2022 Annual Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578587}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4740, "name": "2022 SKO 1-INTRODUCTION - Completed", "type": "date"}, "emitted_at": 1710872578587}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4740.2", "name": "2022 SKO 1-INTRODUCTION - Due Date", "type": "date"}, "emitted_at": 1710872578587}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4736, "name": "2022 SKO 2-COREDB - Completed", "type": "date"}, "emitted_at": 1710872578587}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4736.2", "name": "2022 SKO 2-COREDB - Due Date", "type": "date"}, "emitted_at": 1710872578588}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4737, "name": "2022 SKO 3-CLOUD - Completed", "type": "date"}, "emitted_at": 1710872578588}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4737.2", "name": "2022 SKO 3-CLOUD - Due Date", "type": "date"}, "emitted_at": 1710872578588}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4741, "name": "2022 SKO 4-DATA SCIENCE - Completed", "type": "date"}, "emitted_at": 1710872578589}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4741.2", "name": "2022 SKO 4-DATA SCIENCE - Due Date", "type": "date"}, "emitted_at": 1710872578589}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4738, "name": "2022 SKO 5-GO TO MARKET - Completed", "type": "date"}, "emitted_at": 1710872578589}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4738.2", "name": "2022 SKO 5-GO TO MARKET - Due Date", "type": "date"}, "emitted_at": 1710872578590}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4739, "name": "2022 SKO 6-TECHNICAL - Completed", "type": "date"}, "emitted_at": 1710872578590}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4739.2", "name": "2022 SKO 6-TECHNICAL - Due Date", "type": "date"}, "emitted_at": 1710872578590}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4751, "name": "2022 SKO 7-NEW HIRE Aura Enterprise Customer Pursuit - Completed", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4751.2", "name": "2022 SKO 7-NEW HIRE Aura Enterprise Customer Pursuit - Due Date", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4752, "name": "2022 SKO 7-NEW HIRE Competitive Overview - Completed", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4752.2", "name": "2022 SKO 7-NEW HIRE Competitive Overview - Due Date", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4753, "name": "2022 SKO 7-NEW HIRE Neo4j Company Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4753.2", "name": "2022 SKO 7-NEW HIRE Neo4j Company Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578591}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4754, "name": "2022 SKO 7-NEW HIRE Neo4j Product Vision - Completed", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4754.2", "name": "2022 SKO 7-NEW HIRE Neo4j Product Vision - Due Date", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4755, "name": "2022 SKO 7-NEW HIRE Neo4j Services - Completed", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4755.2", "name": "2022 SKO 7-NEW HIRE Neo4j Services - Due Date", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4748, "name": "2022 SKO 7-NEW HIRE Objection Handling Session - Completed", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4748.2", "name": "2022 SKO 7-NEW HIRE Objection Handling Session - Due Date", "type": "date"}, "emitted_at": 1710872578592}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4756, "name": "2022 SKO 7-NEW HIRE Product Management - Aura Briefing - Completed", "type": "date"}, "emitted_at": 1710872578593}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4756.2", "name": "2022 SKO 7-NEW HIRE Product Management - Aura Briefing - Due Date", "type": "date"}, "emitted_at": 1710872578593}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4757, "name": "2022 SKO 7-NEW HIRE Product Management - Core DB - Completed", "type": "date"}, "emitted_at": 1710872578593}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4757.2", "name": "2022 SKO 7-NEW HIRE Product Management - Core DB - Due Date", "type": "date"}, "emitted_at": 1710872578593}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4758, "name": "2022 SKO 7-NEW HIRE Product Management - Visualization briefing - Completed", "type": "date"}, "emitted_at": 1710872578593}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4758.2", "name": "2022 SKO 7-NEW HIRE Product Management - Visualization briefing - Due Date", "type": "date"}, "emitted_at": 1710872578594}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4746, "name": "2022 SKO 7-NEW HIRE Sales Tools Training - Completed", "type": "date"}, "emitted_at": 1710872578595}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4746.2", "name": "2022 SKO 7-NEW HIRE Sales Tools Training - Due Date", "type": "date"}, "emitted_at": 1710872578595}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4742, "name": "2022 SKO 7-NEW HIRE Vision for 2020 - 2030 - Completed", "type": "date"}, "emitted_at": 1710872578595}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4742.2", "name": "2022 SKO 7-NEW HIRE Vision for 2020 - 2030 - Due Date", "type": "date"}, "emitted_at": 1710872578596}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4744, "name": "2022 SKO 7-NEW HIRE Voice of the Customer - Manulife - Completed", "type": "date"}, "emitted_at": 1710872578596}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4744.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer - Manulife - Due Date", "type": "date"}, "emitted_at": 1710872578596}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4743, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Bank of Montreal - Completed", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4743.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Bank of Montreal - Due Date", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4749, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Deloitte / Allianz - Completed", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4749.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Deloitte / Allianz - Due Date", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4750, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Novo Nordisk - Completed", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4750.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Novo Nordisk - Due Date", "type": "date"}, "emitted_at": 1710872578597}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4745, "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Volvo - Completed", "type": "date"}, "emitted_at": 1710872578598}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4745.2", "name": "2022 SKO 7-NEW HIRE Voice of the Customer: Volvo - Due Date", "type": "date"}, "emitted_at": 1710872578598}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4747, "name": "2022 SKO 7-NEW HIRE Welcome and Apiax Customer Session - Completed", "type": "date"}, "emitted_at": 1710872578598}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4747.2", "name": "2022 SKO 7-NEW HIRE Welcome and Apiax Customer Session - Due Date", "type": "date"}, "emitted_at": 1710872578598}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4175, "name": "Accrual Level Start Date", "type": "date"}, "emitted_at": 1710872578598}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 8, "name": "Address Line 1", "type": "text", "alias": "address1"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 9, "name": "Address Line 2", "type": "text", "alias": "address2"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5001, "name": "Agency Name", "type": "text"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4911, "name": "Allergies", "type": "text", "alias": "customAllergies"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.8", "name": "Annual Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.6", "name": "Annual Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578599}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.3", "name": "Annual Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.7", "name": "Annual Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.5", "name": "Annual Leave (Australia) - Days scheduled", "type": "int"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.4", "name": "Annual Leave (Australia) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4881.2", "name": "Annual Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4881, "name": "Annual Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4884, "name": "Annual Leave (Australia) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578600}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4884.1", "name": "Annual Leave (Australia) policy - Started on", "type": "date"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.8", "name": "Annual Leave (India) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.6", "name": "Annual Leave (India) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.3", "name": "Annual Leave (India) - Available Balance", "type": "int"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.7", "name": "Annual Leave (India) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.5", "name": "Annual Leave (India) - Days scheduled", "type": "int"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.4", "name": "Annual Leave (India) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578601}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4894.2", "name": "Annual Leave (India) - Policy", "type": "text"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4894, "name": "Annual Leave (India) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4897, "name": "Annual Leave (India) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4897.1", "name": "Annual Leave (India) policy - Started on", "type": "date"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.8", "name": "Annual Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.6", "name": "Annual Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.3", "name": "Annual Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.7", "name": "Annual Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578602}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.5", "name": "Annual Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.4", "name": "Annual Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4598.2", "name": "Annual Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4598, "name": "Annual Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5002, "name": "Anticipated End Date", "type": "date"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4507, "name": "Asset category", "type": "list"}, "emitted_at": 1710872578603}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4508, "name": "Asset description", "type": "text"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4849, "name": "A Testing Talent - not a course - Completed", "type": "date"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4849.2", "name": "A Testing Talent - not a course - Due Date", "type": "date"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4659, "name": "Aura Consumption Based Pricing - 49min - Completed", "type": "date"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4659.2", "name": "Aura Consumption Based Pricing - 49min - Due Date", "type": "date"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4793, "name": "Aura Role", "type": "text", "alias": "customAuraRole3"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5112, "name": "Aura Role", "type": "list"}, "emitted_at": 1710872578604}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5111, "name": "Aura Role Indicator", "type": "list"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4863, "name": "Benchmark Code", "type": "text"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1502, "name": "Benefit History", "type": "benefit_history"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 6, "name": "Birth Date", "type": "date", "alias": "dateOfBirth"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4485, "name": "Bonus Reason", "type": "list"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.8", "name": "Carer's Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.6", "name": "Carer's Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578605}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.3", "name": "Carer's Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578606}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.7", "name": "Carer's Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578606}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.5", "name": "Carer's Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578606}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.4", "name": "Carer's Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578606}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4945.2", "name": "Carer's Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578606}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4945, "name": "Carer's Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5113, "name": "Changed By", "type": "list"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5114, "name": "Change Reason", "type": "text"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.8", "name": "Childcare Leave (APAC) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.6", "name": "Childcare Leave (APAC) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.3", "name": "Childcare Leave (APAC) - Available Balance", "type": "int"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.7", "name": "Childcare Leave (APAC) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578607}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.5", "name": "Childcare Leave (APAC) - Days scheduled", "type": "int"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.4", "name": "Childcare Leave (APAC) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4992.2", "name": "Childcare Leave (APAC) - Policy", "type": "text"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4992, "name": "Childcare Leave (APAC) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4993, "name": "Childcare Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4993.1", "name": "Childcare Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4768, "name": "CI Boot Camp: Tool up to Win! - Completed", "type": "date"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4768.2", "name": "CI Boot Camp: Tool up to Win! - Due Date", "type": "date"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4566, "name": "Citizen Service Number/BSN (NL employees only)", "type": "text", "alias": "customCitizenServiceNumber/BSN(NLemployeesonly)"}, "emitted_at": 1710872578608}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 10, "name": "City", "type": "text", "alias": "city"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4667, "name": "Cloud Managed Services & AgilePS - 26min - Completed", "type": "date"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4667.2", "name": "Cloud Managed Services & AgilePS - 26min - Due Date", "type": "date"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4860, "name": "Comments", "type": "textarea"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5067, "name": "Comments - Non-Employee", "type": "textarea"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4021, "name": "Compensation: Date", "type": "date", "alias": "payRateEffectiveDate"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4017, "name": "Compensation Change Reason", "type": "list", "alias": "payChangeReason"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4045, "name": "Compensation comments", "type": "textarea"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.1", "name": "Completed - Category", "type": "list"}, "emitted_at": 1710872578609}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.2", "name": "Completed - Completed", "type": "date"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.3", "name": "Completed - Cost", "type": "currency"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.4", "name": "Completed - Credits", "type": "int"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.5", "name": "Completed - Hours", "type": "int"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.6", "name": "Completed - Instructor", "type": "text"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4020.7", "name": "Completed - Notes", "type": "text"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4020, "name": "Completed - Title", "type": "training_type"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4913, "name": "Corporate Career Path", "type": "list"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4960, "name": "Corporate Career Path", "type": "text", "alias": "customCorporateCareerPath1"}, "emitted_at": 1710872578610}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4852, "name": "Corporate Job Level", "type": "list"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4959, "name": "Corporate Job level", "type": "text", "alias": "customCorporateJoblevel"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4856, "name": "Corporate Title", "type": "list"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4961, "name": "Corporate Title", "type": "text", "alias": "customCorporateTitle1"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3991, "name": "Country", "type": "country", "alias": "country"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4725, "name": "Covered CS Accounts - Completed", "type": "date"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4725.2", "name": "Covered CS Accounts - Due Date", "type": "date"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4643, "name": "CPR-number (DK employees only)", "type": "text", "alias": "customCPR-number(DKemployeesonly)"}, "emitted_at": 1710872578611}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4602, "name": "Custom Gender Identity", "type": "text", "alias": "genderIdentityCustom"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4654, "name": "Daily Video Message - 29 May 2020: \"Surprises\" - Completed", "type": "date"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4654.2", "name": "Daily Video Message - 29 May 2020: \"Surprises\" - Due Date", "type": "date"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4510, "name": "Date loaned", "type": "date"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4511, "name": "Date returned", "type": "date"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4, "name": "Department", "type": "list", "alias": "department"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1928, "name": "Dependent Birth Date", "type": "date"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1931, "name": "Dependent City", "type": "text"}, "emitted_at": 1710872578612}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3992, "name": "Dependent Country", "type": "country"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1923, "name": "Dependent First Name", "type": "text"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4301, "name": "Dependent Full-Time Student", "type": "checkbox"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1927, "name": "Dependent Gender", "type": "gender"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1935, "name": "Dependent Home Phone", "type": "phone"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1924, "name": "Dependent Last Name", "type": "text"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1925, "name": "Dependent Middle Name", "type": "text"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1926, "name": "Dependent Relationship", "type": "relationship"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1933, "name": "Dependent SSN", "type": "ssn"}, "emitted_at": 1710872578613}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1932, "name": "Dependent State", "type": "state"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1929, "name": "Dependent Street 1", "type": "text"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1930, "name": "Dependent Street 2", "type": "text"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4300, "name": "Dependent US Citizen", "type": "checkbox"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1934, "name": "Dependent ZIP", "type": "text"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1355, "name": "Division", "type": "list", "alias": "division"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4498, "name": "Division #", "type": "list"}, "emitted_at": 1710872578614}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4776, "name": "Division Number", "type": "text", "alias": "customDivisionNumber"}, "emitted_at": 1710872578615}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4647, "name": "DNI Number (ES employees only)", "type": "text", "alias": "customDNINumber(ESemployeesonly)"}, "emitted_at": 1710872578615}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4650, "name": "E-staff", "type": "employee"}, "emitted_at": 1710872578615}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4792, "name": "E-Staff", "type": "text", "alias": "customE-Staff1"}, "emitted_at": 1710872578615}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 157, "name": "EEO Job Category", "type": "list", "alias": "eeo"}, "emitted_at": 1710872578615}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5110, "name": "Effective Date", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4497, "name": "Effective Date - Additional Job Information", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5104, "name": "Effective Date - Contract Exceptions", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4855, "name": "Effective Date - Job Leveling", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4999, "name": "Effective Date - Non-Employee", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4965, "name": "Effective Date - Sales", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4606, "name": "Effective Date - Stock Options", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4315, "name": "Eligible For Re-hire", "type": "list"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4671, "name": "EMEA Professional Services briefing - 27min - Completed", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4671.2", "name": "EMEA Professional Services briefing - 27min - Due Date", "type": "date"}, "emitted_at": 1710872578616}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 692, "name": "Emergency Contact City", "type": "text"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3993, "name": "Emergency Contact Country", "type": "country"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2123, "name": "Emergency Contact Email", "type": "email"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 159, "name": "Emergency Contact Home Phone", "type": "phone"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 693, "name": "Emergency Contact Mobile Phone", "type": "phone"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 158, "name": "Emergency Contact Name", "type": "text"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4289, "name": "Emergency Contact Primary", "type": "checkbox"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 160, "name": "Emergency Contact Relationship", "type": "list"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4299, "name": "Emergency Contacts", "type": "employee_contacts"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 690, "name": "Emergency Contact State", "type": "state"}, "emitted_at": 1710872578617}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 691, "name": "Emergency Contact Street 1", "type": "text"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2124, "name": "Emergency Contact Street 2", "type": "text"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4063, "name": "Emergency Contact Work Ext", "type": "text"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4044, "name": "Emergency Contact Work Phone", "type": "phone"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 689, "name": "Emergency Contact ZIP Code", "type": "text"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 636, "name": "Employee #", "type": "employee_number", "alias": "employeeNumber"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 16, "name": "Employment Status", "type": "list", "alias": "employmentHistoryStatus"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "16.1", "name": "Employment Status - FTE", "type": "list", "alias": "employmentHistoryStatus"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4302, "name": "Employment Status: ACA Full-Time", "type": "aca_status", "alias": "acaStatus"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1936, "name": "Employment Status: Date", "type": "date", "alias": "employeeStatusDate"}, "emitted_at": 1710872578618}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4046, "name": "Employment status comments", "type": "textarea"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4500, "name": "Entity", "type": "list"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4791, "name": "Entity", "type": "text", "alias": "customEntity1"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4655, "name": "Episode 2: Capitalizing on Opportunities - Completed", "type": "date"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4655.2", "name": "Episode 2: Capitalizing on Opportunities - Due Date", "type": "date"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1037, "name": "Ethnicity", "type": "list", "alias": "ethnicity"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1, "name": "First Name", "type": "text", "alias": "firstName"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4406, "name": "Fiscal Code (IT employees only)", "type": "text", "alias": "customFiscalcodeItaly"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4670, "name": "GDSL product briefing - 30min - Completed", "type": "date"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4670.2", "name": "GDSL product briefing - 30min - Due Date", "type": "date"}, "emitted_at": 1710872578619}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4876, "name": "GDSML - The market knows what Graph Data Science is and what we mean by it. - Completed", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4876.2", "name": "GDSML - The market knows what Graph Data Science is and what we mean by it. - Due Date", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4878, "name": "GDSML - What are some benefits of fully managed over self managed - Completed", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4878.2", "name": "GDSML - What are some benefits of fully managed over self managed - Due Date", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4879, "name": "GDSML - What are the commercial products we offer - Completed", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4879.2", "name": "GDSML - What are the commercial products we offer - Due Date", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4872, "name": "GDSML - What are the most important value messages when pitching Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4872.2", "name": "GDSML - What are the most important value messages when pitching Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4873, "name": "GDSML - What are usually bad fits for Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4873.2", "name": "GDSML - What are usually bad fits for Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578620}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4877, "name": "GDSML - What commercial variants do we offer - Completed", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4877.2", "name": "GDSML - What commercial variants do we offer - Due Date", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4869, "name": "GDSML - What do we want data science managers to do - Completed", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4869.2", "name": "GDSML - What do we want data science managers to do - Due Date", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4868, "name": "GDSML - What do we want data scientists to do - Completed", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4868.2", "name": "GDSML - What do we want data scientists to do - Due Date", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4866, "name": "GDSML - What is always part of the commercial offering - Completed", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4866.2", "name": "GDSML - What is always part of the commercial offering - Due Date", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4875, "name": "GDSML - What is not an alternative to Neo4j Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4875.2", "name": "GDSML - What is not an alternative to Neo4j Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578621}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4871, "name": "GDSML - Where can you sell Graph Data Science - Completed", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4871.2", "name": "GDSML - Where can you sell Graph Data Science - Due Date", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4865, "name": "GDSML - Which products do we sell - Completed", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4865.2", "name": "GDSML - Which products do we sell - Due Date", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4870, "name": "GDSML - Who are the most important stakeholders in any Graph Data Science purchase process - Completed", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4870.2", "name": "GDSML - Who are the most important stakeholders in any Graph Data Science purchase process - Due Date", "type": "date"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 154, "name": "Gender", "type": "gender", "alias": "gender"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4574, "name": "Gender Identity", "type": "multilist", "alias": "genderIdentity"}, "emitted_at": 1710872578622}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4651, "name": "Github ID", "type": "text", "alias": "customGithubID"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4657, "name": "Graph Databases for Dummies - Completed", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4657.2", "name": "Graph Databases for Dummies - Due Date", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4763, "name": "Graph Data Science (GDS) - 301 - Completed", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4763.2", "name": "Graph Data Science (GDS) - 301 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4733, "name": "Graph Data Science (GDS) - Sales 101 - Completed", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4733.2", "name": "Graph Data Science (GDS) - Sales 101 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4734, "name": "Graph Data Science (GDS) - Sales 201 - Completed", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4734.2", "name": "Graph Data Science (GDS) - Sales 201 - Due Date", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4874, "name": "Graph Data Science LevelUP quiz (finish by 15-Dec-2022) - Completed", "type": "date"}, "emitted_at": 1710872578623}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4874.2", "name": "Graph Data Science LevelUP quiz (finish by 15-Dec-2022) - Due Date", "type": "date"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5087, "name": "Guaranteed Severance", "type": "list"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4561, "name": "Headcount", "type": "list"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4788, "name": "Headcount", "type": "text", "alias": "customHeadcount2"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4794, "name": "Highspot Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4794.2", "name": "Highspot Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 3, "name": "Hire Date", "type": "date", "alias": "hireDate"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.8", "name": "Historical Balances (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.6", "name": "Historical Balances (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.3", "name": "Historical Balances (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.7", "name": "Historical Balances (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578624}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.5", "name": "Historical Balances (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.4", "name": "Historical Balances (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5061.2", "name": "Historical Balances (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5061, "name": "Historical Balances (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.8", "name": "Historical Balances - Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.6", "name": "Historical Balances - Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.3", "name": "Historical Balances - Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.7", "name": "Historical Balances - Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.5", "name": "Historical Balances - Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.4", "name": "Historical Balances - Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5097.2", "name": "Historical Balances - Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5097, "name": "Historical Balances - Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578625}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.8", "name": "Historical Balances - RTT (France) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.6", "name": "Historical Balances - RTT (France) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.3", "name": "Historical Balances - RTT (France) - Available Balance", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.7", "name": "Historical Balances - RTT (France) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.5", "name": "Historical Balances - RTT (France) - Days scheduled", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.4", "name": "Historical Balances - RTT (France) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5120.2", "name": "Historical Balances - RTT (France) - Policy", "type": "text"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5120, "name": "Historical Balances - RTT (France) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.8", "name": "Historical Balances - Suppressed Festivity (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.6", "name": "Historical Balances - Suppressed Festivity (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.3", "name": "Historical Balances - Suppressed Festivity (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.7", "name": "Historical Balances - Suppressed Festivity (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.5", "name": "Historical Balances - Suppressed Festivity (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578626}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.4", "name": "Historical Balances - Suppressed Festivity (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5096.2", "name": "Historical Balances - Suppressed Festivity (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5096, "name": "Historical Balances - Suppressed Festivity (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1357, "name": "Home Email", "type": "email", "alias": "homeEmail"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 14, "name": "Home Phone", "type": "phone", "alias": "homePhone"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.8", "name": "Hospitalization Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.6", "name": "Hospitalization Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.3", "name": "Hospitalization Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.7", "name": "Hospitalization Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.5", "name": "Hospitalization Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.4", "name": "Hospitalization Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4929.2", "name": "Hospitalization Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578627}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4929, "name": "Hospitalization Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4930, "name": "Hospitalization Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4930.1", "name": "Hospitalization Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4640, "name": "Hours Per Pay Cycle", "type": "text", "alias": "hoursPerPayCycle"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4663, "name": "Identity and Access Management - with Nulli - 34min - Completed", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4663.2", "name": "Identity and Access Management - with Nulli - 34min - Due Date", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4730, "name": "Introducing Neo4j 4.3: The Fastest Path to Graph Productivity - Completed", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4730.2", "name": "Introducing Neo4j 4.3: The Fastest Path to Graph Productivity - Due Date", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4735, "name": "Introducing Neo4j 4.4: Fastest Path to Graph Database Productivity (10 mins.) - Completed", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4735.2", "name": "Introducing Neo4j 4.4: Fastest Path to Graph Database Productivity (10 mins.) - Due Date", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4729, "name": "Introduction to Machine Learning Concepts - Completed", "type": "date"}, "emitted_at": 1710872578628}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4729.2", "name": "Introduction to Machine Learning Concepts - Due Date", "type": "date"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4728, "name": "Intro to Knowledge Graphs - Completed", "type": "date"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4728.2", "name": "Intro to Knowledge Graphs - Due Date", "type": "date"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4405, "name": "Israeli ID Number (IL employees only)", "type": "text", "alias": "customIsraeliIDno."}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4901, "name": "Job Change Reason", "type": "text"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4047, "name": "Job Information: Date", "type": "date"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4790, "name": "Job Level", "type": "text", "alias": "customJobLevel2"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 17, "name": "Job Title", "type": "list", "alias": "jobTitle"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 2, "name": "Last Name", "type": "text", "alias": "lastName"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.8", "name": "Leave of Absence - Paid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.6", "name": "Leave of Absence - Paid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578629}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.3", "name": "Leave of Absence - Paid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.7", "name": "Leave of Absence - Paid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.5", "name": "Leave of Absence - Paid (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.4", "name": "Leave of Absence - Paid (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4947.2", "name": "Leave of Absence - Paid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4947, "name": "Leave of Absence - Paid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.8", "name": "Leave of Absence - Unpaid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.6", "name": "Leave of Absence - Unpaid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.3", "name": "Leave of Absence - Unpaid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.7", "name": "Leave of Absence - Unpaid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.5", "name": "Leave of Absence - Unpaid (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.4", "name": "Leave of Absence - Unpaid (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4948.2", "name": "Leave of Absence - Unpaid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4948, "name": "Leave of Absence - Unpaid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578630}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 18, "name": "Location", "type": "list", "alias": "location"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4603, "name": "Manager Email", "type": "text", "alias": "customManagerEmail"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4966, "name": "MBO", "type": "list"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5, "name": "Middle Name", "type": "text", "alias": "middleName"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.8", "name": "Military Leave (APAC) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.6", "name": "Military Leave (APAC) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.3", "name": "Military Leave (APAC) - Available Balance", "type": "int"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.7", "name": "Military Leave (APAC) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.5", "name": "Military Leave (APAC) - Days scheduled", "type": "int"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.4", "name": "Military Leave (APAC) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4990.2", "name": "Military Leave (APAC) - Policy", "type": "text"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4990, "name": "Military Leave (APAC) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4837, "name": "ML5 Aura and Fabric (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578631}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4837.2", "name": "ML5 Aura and Fabric (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4820, "name": "ML5 Aura and Fabric - Completed", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4820.2", "name": "ML5 Aura and Fabric - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4832, "name": "ML5 Autonomous cluster benefits (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4832.2", "name": "ML5 Autonomous cluster benefits (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4813, "name": "ML5 Autonomous cluster benefits - Completed", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4813.2", "name": "ML5 Autonomous cluster benefits - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4805, "name": "ML5 Cloud operating agility - Completed", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4805.2", "name": "ML5 Cloud operating agility - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4825, "name": "ML5 Cloud operating agility personas (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4825.2", "name": "ML5 Cloud operating agility personas (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578632}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4806, "name": "ML5 Cloud operating agility personas - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4806.2", "name": "ML5 Cloud operating agility personas - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4836, "name": "ML5 Enhanced index use cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4836.2", "name": "ML5 Enhanced index use cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4819, "name": "ML5 Enhanced index use cases - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4819.2", "name": "ML5 Enhanced index use cases - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4828, "name": "ML5 Fabric and federated queries (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4828.2", "name": "ML5 Fabric and federated queries (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4810, "name": "ML5 Fabric and federated queries - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4810.2", "name": "ML5 Fabric and federated queries - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4812, "name": "ML5 Fabric enhancement - Completed", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4812.2", "name": "ML5 Fabric enhancement - Due Date", "type": "date"}, "emitted_at": 1710872578633}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4831, "name": "ML5 Fabric enhancements (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4831.2", "name": "ML5 Fabric enhancements (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4833, "name": "ML5 Hybrid deployment compatibility (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4833.2", "name": "ML5 Hybrid deployment compatibility (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4815, "name": "ML5 Hybrid deployment compatibility - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4815.2", "name": "ML5 Hybrid deployment compatibility - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4844, "name": "ML5 Hybrid deployment use cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4844.2", "name": "ML5 Hybrid deployment use cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4814, "name": "ML5 Hybrid deployment use cases - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4814.2", "name": "ML5 Hybrid deployment use cases - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4802, "name": "ML5 Improved scalability (3 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4802.2", "name": "ML5 Improved scalability (3 min) - Due Date", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4829, "name": "ML5 K-Hop and TigerGraph (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578634}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4829.2", "name": "ML5 K-Hop and TigerGraph (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4809, "name": "ML5 K-Hop and TigerGraph - Completed", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4809.2", "name": "ML5 K-Hop and TigerGraph - Due Date", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4808, "name": "ML5 K-Hop case - Completed", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4808.2", "name": "ML5 K-Hop case - Due Date", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4827, "name": "ML5 K-Hop cases (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4827.2", "name": "ML5 K-Hop cases (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4826, "name": "ML5 K-Hop significance (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578635}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4826.2", "name": "ML5 K-Hop significance (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4807, "name": "ML5 K-Hop significance - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4807.2", "name": "ML5 K-Hop significance - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4835, "name": "ML5 Main messages (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4835.2", "name": "ML5 Main messages (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4817, "name": "ML5 Main messages - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4817.2", "name": "ML5 Main messages - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4818, "name": "ML5 Multi-cluster fabric benefits - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4818.2", "name": "ML5 Multi-cluster fabric benefits - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4838, "name": "ML5 Offline import features (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4838.2", "name": "ML5 Offline import features (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4821, "name": "ML5 Offline import features - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4821.2", "name": "ML5 Offline import features - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4839, "name": "ML5 Ops Manager deployment types support (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4839.2", "name": "ML5 Ops Manager deployment types support (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4822, "name": "ML5 Ops Manager deployment types support - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4822.2", "name": "ML5 Ops Manager deployment types support - Due Date", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4799, "name": "ML5 Performance claims (6 min) - Completed", "type": "date"}, "emitted_at": 1710872578636}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4799.2", "name": "ML5 Performance claims (6 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4796, "name": "ML5 Performance claims - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4796.2", "name": "ML5 Performance claims - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4801, "name": "ML5 Query performance personas (3min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4801.2", "name": "ML5 Query performance personas (3min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4798, "name": "ML5 Query performance personas - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4798.2", "name": "ML5 Query performance personas - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4823, "name": "ML5 Scalability personas (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4823.2", "name": "ML5 Scalability personas (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4803, "name": "ML5 Scalability personas - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4803.2", "name": "ML5 Scalability personas - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4830, "name": "ML5 Shard querying (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4830.2", "name": "ML5 Shard querying (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4811, "name": "ML5 Shard querying - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4811.2", "name": "ML5 Shard querying - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4824, "name": "ML5 Unbounded scalability (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4824.2", "name": "ML5 Unbounded scalability (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4804, "name": "ML5 Unbounded scalability - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4804.2", "name": "ML5 Unbounded scalability - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4834, "name": "ML5 Upgrade with no downtime (1 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4834.2", "name": "ML5 Upgrade with no downtime (1 min) - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4816, "name": "ML5 Upgrade with no downtime - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4816.2", "name": "ML5 Upgrade with no downtime - Due Date", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4800, "name": "ML5 Widening performance (2 min) - Completed", "type": "date"}, "emitted_at": 1710872578637}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4800.2", "name": "ML5 Widening performance (2 min) - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4797, "name": "ML5 Widening performance - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4797.2", "name": "ML5 Widening performance - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 13, "name": "Mobile Phone", "type": "phone", "alias": "mobilePhone"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4649, "name": "National identification number (SG employees only)", "type": "text", "alias": "customNationalidentificationnumber(SGemployeesonly)"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4660, "name": "Neo4j 4.2 briefing - 44min - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4660.2", "name": "Neo4j 4.2 briefing - 44min - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4841, "name": "Neo4j 5 Level UP Quiz (finish by October 31, 2022) - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4841.2", "name": "Neo4j 5 Level UP Quiz (finish by October 31, 2022) - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4795, "name": "Neo4j 5 Level UP Quiz - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4795.2", "name": "Neo4j 5 Level UP Quiz - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4653, "name": "Neo4j Renewals Manager New Hire Training - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4653.2", "name": "Neo4j Renewals Manager New Hire Training - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4761, "name": "Neo4j Scale-in-a-Box: Core Graph Database at Scale - Technical - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4761.2", "name": "Neo4j Scale-in-a-Box: Core Graph Database at Scale - Technical - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4762, "name": "Neo4j Scale-in-a-Box: GDS at Scale - Technical - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4762.2", "name": "Neo4j Scale-in-a-Box: GDS at Scale - Technical - Due Date", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4759, "name": "Neo4j Scale-in-a-Box: Graph Database at Scale - Completed", "type": "date"}, "emitted_at": 1710872578638}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4759.2", "name": "Neo4j Scale-in-a-Box: Graph Database at Scale - Due Date", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4760, "name": "Neo4j Scale-in-a-Box: Graph Data Science at Scale - Completed", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4760.2", "name": "Neo4j Scale-in-a-Box: Graph Data Science at Scale - Due Date", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4402, "name": "NI Number (UK employees only)", "type": "text", "alias": "customNINumber(UK)"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4646, "name": "NISS Number (BE employees only)", "type": "text", "alias": "customNISSNumber(BEemployeesonly)"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4726, "name": "Non-Covered CS Accounts - Completed", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4726.2", "name": "Non-Covered CS Accounts - Due Date", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5000, "name": "Non-Employee Type", "type": "list"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4969, "name": "Non-Recoverable Draw", "type": "list"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4970, "name": "Non-Recoverable Draw Monthly Amount", "type": "currency"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4970.1", "name": "Non-Recoverable Draw Monthly Amount - Currency code", "type": "text"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4971, "name": "Non-Recoverable Draw Total Amount", "type": "currency"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4971.1", "name": "Non-Recoverable Draw Total Amount - Currency code", "type": "text"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4562, "name": "Non HC Hire Date", "type": "date", "alias": "customOriginalDateofHire"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4672, "name": "NORAM Professional Services briefing - 34min - Completed", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4672.2", "name": "NORAM Professional Services briefing - 34min - Due Date", "type": "date"}, "emitted_at": 1710872578639}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5089, "name": "Notes", "type": "textarea"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5066, "name": "Notice Requirement", "type": "textarea"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4333, "name": "Original Hire Date", "type": "date", "alias": "originalHireDate"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4401, "name": "OTE", "type": "currency", "alias": "customOTE"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4401.1", "name": "OTE - Currency code", "type": "text", "alias": "customOTE"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.8", "name": "Outpatient Leave (Singapore) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.6", "name": "Outpatient Leave (Singapore) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.3", "name": "Outpatient Leave (Singapore) - Available Balance", "type": "int"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.7", "name": "Outpatient Leave (Singapore) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.5", "name": "Outpatient Leave (Singapore) - Days scheduled", "type": "int"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.4", "name": "Outpatient Leave (Singapore) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4926.2", "name": "Outpatient Leave (Singapore) - Policy", "type": "text"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4926, "name": "Outpatient Leave (Singapore) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4927, "name": "Outpatient Sick Leave (Singapore) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4927.1", "name": "Outpatient Sick Leave (Singapore) policy - Started on", "type": "date"}, "emitted_at": 1710872578640}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4518, "name": "Overtime Rate", "type": "currency", "alias": "overtimeRate"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4518.1", "name": "Overtime Rate - Currency code", "type": "text", "alias": "overtimeRate"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4042, "name": "Overtime Status", "type": "exempt", "alias": "exempt"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4330, "name": "Paid per", "type": "paid_per", "alias": "payPer"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.8", "name": "Parental Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.6", "name": "Parental Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.3", "name": "Parental Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.7", "name": "Parental Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.5", "name": "Parental Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.4", "name": "Parental Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4425.2", "name": "Parental Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4425, "name": "Parental Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4669, "name": "Partner program - 49min - Completed", "type": "date"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4669.2", "name": "Partner program - 49min - Due Date", "type": "date"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 19, "name": "Pay rate", "type": "currency", "alias": "payRate"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "19.1", "name": "Pay rate - Currency code", "type": "text", "alias": "payRate"}, "emitted_at": 1710872578641}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4331, "type": "pay_period", "deprecated": true, "name": "Pay Period", "alias": "payPeriod"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4386, "name": "Pay Schedule", "type": "list", "alias": "paySchedule"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 156, "name": "Pay type", "type": "pay_type", "alias": "payType"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4787, "name": "People Manager", "type": "text", "alias": "customPeopleManager2"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.8", "name": "Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.6", "name": "Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.3", "name": "Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.7", "name": "Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.5", "name": "Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.4", "name": "Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5102.2", "name": "Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5102, "name": "Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5100, "name": "Permits Seniority 2 + 4 Years (Italy) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5103, "name": "Permits Seniority 2 + 4 Years (Italy) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5100.1", "name": "Permits Seniority 2 + 4 Years (Italy) policy - Started on", "type": "date"}, "emitted_at": 1710872578642}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5103.1", "name": "Permits Seniority 2 + 4 Years (Italy) policy - Started on", "type": "date"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4644, "name": "Personbeteckning (FI Employees only)", "type": "text", "alias": "customPersonbeteckning(FIEmployeesonly)"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4407, "name": "Personnummer (SE employees only)", "type": "text", "alias": "customPersonnummer(SE)"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4645, "name": "PESEL Number (PL employees only)", "type": "text", "alias": "customPESELNumber(PLemployeesonly)"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5074, "name": "Position #", "type": "list"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5090, "name": "Post Term Obligations", "type": "textarea"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4784, "name": "Preferred Last Name", "type": "text", "alias": "customPreferredLastName"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1358, "type": "text", "deprecated": true, "name": "Nickname", "alias": "nickname"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1358, "name": "Preferred Name", "type": "text", "alias": "preferredName"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5085, "name": "Prior Inventions", "type": "list"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4575, "name": "Pronouns", "type": "list", "alias": "pronouns"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4764, "name": "PS - Completed", "type": "date"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4764.2", "name": "PS - Due Date", "type": "date"}, "emitted_at": 1710872578643}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4864, "name": "Quiz Graph Data Science for sales Nov-2022 - Completed", "type": "date"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4864.2", "name": "Quiz Graph Data Science for sales Nov-2022 - Due Date", "type": "date"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4974, "name": "Recoverable Draw", "type": "list"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4975, "name": "Recoverable Draw Monthly Amount", "type": "currency"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4975.1", "name": "Recoverable Draw Monthly Amount - Currency code", "type": "text"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.8", "name": "Region Specific National Holiday (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.6", "name": "Region Specific National Holiday (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.3", "name": "Region Specific National Holiday (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.7", "name": "Region Specific National Holiday (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.5", "name": "Region Specific National Holiday (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.4", "name": "Region Specific National Holiday (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4951.2", "name": "Region Specific National Holiday (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4951, "name": "Region Specific National Holiday (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4902, "name": "Regrettable", "type": "list", "alias": "customRegrettable"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4912, "name": "Regrettable or Non-Regrettable", "type": "list"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4724, "name": "Renewals Test - Completed", "type": "date"}, "emitted_at": 1710872578644}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4724.2", "name": "Renewals Test - Due Date", "type": "date"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4668, "name": "Renewals workflow - 40min - Completed", "type": "date"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4668.2", "name": "Renewals workflow - 40min - Due Date", "type": "date"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 91, "name": "Reporting to", "type": "employee"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.8", "name": "RTT (France) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.6", "name": "RTT (France) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.3", "name": "RTT (France) - Available Balance", "type": "int"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.7", "name": "RTT (France) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.5", "name": "RTT (France) - Days scheduled", "type": "int"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.4", "name": "RTT (France) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5117.2", "name": "RTT (France) - Policy", "type": "text"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5117, "name": "RTT (France) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5118, "name": "RTT - France policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5118.1", "name": "RTT - France policy - Started on", "type": "date"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4732, "name": "Sales Enablement Survey - Completed", "type": "date"}, "emitted_at": 1710872578645}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4732.2", "name": "Sales Enablement Survey - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4847, "name": "Sales New Hire Competition Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4847.2", "name": "Sales New Hire Competition Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4848, "name": "Sales New Hire CoreDB Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4848.2", "name": "Sales New Hire CoreDB Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4861, "name": "Sales New Hire Deal Desk Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4861.2", "name": "Sales New Hire Deal Desk Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4846, "name": "Sales New Hire Legal Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4846.2", "name": "Sales New Hire Legal Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4859, "name": "Sales New Hire Marketing Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4859.2", "name": "Sales New Hire Marketing Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4845, "name": "Sales New Hire Partner Ecosystem Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4845.2", "name": "Sales New Hire Partner Ecosystem Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4842, "name": "Sales New Hire Partners Ecosystem Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4842.2", "name": "Sales New Hire Partners Ecosystem Overview - Due Date", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4858, "name": "Sales New Hire Pre-Sales Overview - Completed", "type": "date"}, "emitted_at": 1710872578646}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4858.2", "name": "Sales New Hire Pre-Sales Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4840, "name": "Sales New Hire Renewals Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4840.2", "name": "Sales New Hire Renewals Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4886, "name": "Sales New Hire Sales Development (SDR) Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4886.2", "name": "Sales New Hire Sales Development (SDR) Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4862, "name": "Sales New Hire Sales Operations Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4862.2", "name": "Sales New Hire Sales Operations Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4843, "name": "Sales New Hire SFDC Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4843.2", "name": "Sales New Hire SFDC Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4887, "name": "Sales New Hire Strategic Products Overview - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4887.2", "name": "Sales New Hire Strategic Products Overview - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4779, "name": "Sales Onboarding Week-1 - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4779.2", "name": "Sales Onboarding Week-1 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4780, "name": "Sales Onboarding Week-2 - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4780.2", "name": "Sales Onboarding Week-2 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4781, "name": "Sales Onboarding Week-3 - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4781.2", "name": "Sales Onboarding Week-3 - Due Date", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4782, "name": "Sales Onboarding Week-4 - Completed", "type": "date"}, "emitted_at": 1710872578647}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4782.2", "name": "Sales Onboarding Week-4 - Due Date", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4783, "name": "Sales Onboarding Week-5 - Completed", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4783.2", "name": "Sales Onboarding Week-5 - Due Date", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 1610, "name": "Self-service access", "type": "employee_access"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4666, "name": "Selling GDS - 53min - Completed", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4666.2", "name": "Selling GDS - 53min - Due Date", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4661, "name": "Selling GDS 1.4 - 59min - Completed", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4661.2", "name": "Selling GDS 1.4 - 59min - Due Date", "type": "date"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4509, "name": "Serial #", "type": "text"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4476, "name": "Shirt size", "type": "list", "alias": "customShirtsize1"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.8", "name": "Sick & Carer's Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.6", "name": "Sick & Carer's Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.3", "name": "Sick & Carer's Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.7", "name": "Sick & Carer's Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.5", "name": "Sick & Carer's Leave (Australia) - Days scheduled", "type": "int"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.4", "name": "Sick & Carer's Leave (Australia) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4889.2", "name": "Sick & Carer's Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578648}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4889, "name": "Sick & Carer's Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4893, "name": "Sick & Carer's Leave (Australia) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4893.1", "name": "Sick & Carer's Leave (Australia) policy - Started on", "type": "date"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.8", "name": "Sick Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.6", "name": "Sick Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.3", "name": "Sick Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.7", "name": "Sick Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.5", "name": "Sick Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.4", "name": "Sick Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4914.2", "name": "Sick Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4914, "name": "Sick Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.8", "name": "Sick Leave (India) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.6", "name": "Sick Leave (India) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.3", "name": "Sick Leave (India) - Available Balance", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.7", "name": "Sick Leave (India) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.5", "name": "Sick Leave (India) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.4", "name": "Sick Leave (India) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4906.2", "name": "Sick Leave (India) - Policy", "type": "text"}, "emitted_at": 1710872578649}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4906, "name": "Sick Leave (India) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4909, "name": "Sick Leave (India) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4909.1", "name": "Sick Leave (India) policy - Started on", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4686, "name": "SKO Live - Day 1 Field Operations Strategy & Plan - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4686.2", "name": "SKO Live - Day 1 Field Operations Strategy & Plan - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4684, "name": "SKO Live - Day 1 Pitch Contest - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4684.2", "name": "SKO Live - Day 1 Pitch Contest - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4688, "name": "SKO Live - Day 1 Product Vision Q&A - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4688.2", "name": "SKO Live - Day 1 Product Vision Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4685, "name": "SKO Live - Day 1 Vision for 2020 - 2030 - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4685.2", "name": "SKO Live - Day 1 Vision for 2020 - 2030 - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4687, "name": "SKO Live - Day 1 Voice of the Customer: Bank of Montreal - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4687.2", "name": "SKO Live - Day 1 Voice of the Customer: Bank of Montreal - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4690, "name": "SKO Live - Day 2 GDS Product Q&A - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4690.2", "name": "SKO Live - Day 2 GDS Product Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4692, "name": "SKO Live - Day 2 Improv - How it Matters in a connected world - Completed", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4692.2", "name": "SKO Live - Day 2 Improv - How it Matters in a connected world - Due Date", "type": "date"}, "emitted_at": 1710872578650}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4691, "name": "SKO Live - Day 2 Voice of the Customer - Manulife - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4691.2", "name": "SKO Live - Day 2 Voice of the Customer - Manulife - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4689, "name": "SKO Live - Day 2 Welcome Session - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4689.2", "name": "SKO Live - Day 2 Welcome Session - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4696, "name": "SKO Live - Day 3 Aura Q&A - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4696.2", "name": "SKO Live - Day 3 Aura Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4694, "name": "SKO Live - Day 3 Sales Best Practices - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4694.2", "name": "SKO Live - Day 3 Sales Best Practices - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4695, "name": "SKO Live - Day 3 Voice of the Customer: Volvo - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4695.2", "name": "SKO Live - Day 3 Voice of the Customer: Volvo - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4693, "name": "SKO Live - Day 3 Welcome Session - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4693.2", "name": "SKO Live - Day 3 Welcome Session - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4714, "name": "SKO Live - Day 4 Negotiation Skills - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4714.2", "name": "SKO Live - Day 4 Negotiation Skills - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4712, "name": "SKO Live - Day 4 Product Management - Visualization QA - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4712.2", "name": "SKO Live - Day 4 Product Management - Visualization QA - Due Date", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4713, "name": "SKO Live - Day 4 Sales Tools Training - Completed", "type": "date"}, "emitted_at": 1710872578651}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4713.2", "name": "SKO Live - Day 4 Sales Tools Training - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4711, "name": "SKO Live - Day 4 Welcome and Apiax Customer Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4711.2", "name": "SKO Live - Day 4 Welcome and Apiax Customer Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4716, "name": "SKO Live - Day 5 Field Presentation and Integrated Demo - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4716.2", "name": "SKO Live - Day 5 Field Presentation and Integrated Demo - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4717, "name": "SKO Live - Day 5 Objection Handling Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4717.2", "name": "SKO Live - Day 5 Objection Handling Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4719, "name": "SKO Live - Day 5 Product Management: Core DB Q&A Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4719.2", "name": "SKO Live - Day 5 Product Management: Core DB Q&A Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4718, "name": "SKO Live - Day 5 Voice of the Customer: Deloitte / Allianz - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4718.2", "name": "SKO Live - Day 5 Voice of the Customer: Deloitte / Allianz - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4715, "name": "SKO Live - Day 5 Welcome and Presentation Session - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4715.2", "name": "SKO Live - Day 5 Welcome and Presentation Session - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4721, "name": "SKO Live - Day 6 Fireside Chat w/ Emil & Lars Q&A - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4721.2", "name": "SKO Live - Day 6 Fireside Chat w/ Emil & Lars Q&A - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4720, "name": "SKO Live - Day 6 Opening Session / Pitch Contest - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4720.2", "name": "SKO Live - Day 6 Opening Session / Pitch Contest - Due Date", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4722, "name": "SKO Live - Day 6 Pitch Contest Winner & Moving to an Outbound Organization w/ Aaron Ross - Completed", "type": "date"}, "emitted_at": 1710872578652}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4722.2", "name": "SKO Live - Day 6 Pitch Contest Winner & Moving to an Outbound Organization w/ Aaron Ross - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4723, "name": "SKO Live - Day 6 Voice of the Customer: Novo Nordisk - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4723.2", "name": "SKO Live - Day 6 Voice of the Customer: Novo Nordisk - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4703, "name": "SKOO - Accelerating & Uplifting ARR with Solutions - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4703.2", "name": "SKOO - Accelerating & Uplifting ARR with Solutions - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4699, "name": "SKOO - Aura Enterprise Customer Pursuit - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4699.2", "name": "SKOO - Aura Enterprise Customer Pursuit - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4682, "name": "SKOO - Cloud Managed Services (CMS): 2021 - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4682.2", "name": "SKOO - Cloud Managed Services (CMS): 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4706, "name": "SKOO - Competitive Overview - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4706.2", "name": "SKOO - Competitive Overview - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4697, "name": "SKOO - Customer Success - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4697.2", "name": "SKOO - Customer Success - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4707, "name": "SKOO - EMEA Sales Engineering - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4707.2", "name": "SKOO - EMEA Sales Engineering - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4704, "name": "SKOO - Global Sales Development - Completed", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4704.2", "name": "SKOO - Global Sales Development - Due Date", "type": "date"}, "emitted_at": 1710872578653}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4676, "name": "SKOO - Graph Data Science: 2021 Product Update - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4676.2", "name": "SKOO - Graph Data Science: 2021 Product Update - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4675, "name": "SKOO - Legal Hot Topics: Accelerating Deal Closure - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4675.2", "name": "SKOO - Legal Hot Topics: Accelerating Deal Closure - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4673, "name": "SKOO - Market and Sector Outlook 2021 - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4673.2", "name": "SKOO - Market and Sector Outlook 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4678, "name": "SKOO - Marketing 2021 - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4678.2", "name": "SKOO - Marketing 2021 - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4658, "name": "SKOO - Neo4j Company Pitch Training - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4658.2", "name": "SKOO - Neo4j Company Pitch Training - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4710, "name": "SKOO - Neo4j Innovation Lab - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4710.2", "name": "SKOO - Neo4j Innovation Lab - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4680, "name": "SKOO - Neo4j Product Vision - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4680.2", "name": "SKOO - Neo4j Product Vision - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4683, "name": "SKOO - Neo4j Services - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4683.2", "name": "SKOO - Neo4j Services - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4708, "name": "SKOO - North America Sales Engineering - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4708.2", "name": "SKOO - North America Sales Engineering - Due Date", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4677, "name": "SKOO - Nurturing the Integrated Customer Experience - Completed", "type": "date"}, "emitted_at": 1710872578654}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4677.2", "name": "SKOO - Nurturing the Integrated Customer Experience - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4674, "name": "SKOO - Product Management - Aura Briefing - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4674.2", "name": "SKOO - Product Management - Aura Briefing - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4709, "name": "SKOO - Product Management - Core DB - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4709.2", "name": "SKOO - Product Management - Core DB - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4698, "name": "SKOO - Product Management - Visualization briefing - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4698.2", "name": "SKOO - Product Management - Visualization briefing - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4700, "name": "SKOO - Selling GDS to Economic Influencers - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4700.2", "name": "SKOO - Selling GDS to Economic Influencers - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4701, "name": "SKOO - Selling with Cloud Partners - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4701.2", "name": "SKOO - Selling with Cloud Partners - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4681, "name": "SKOO - Selling with Partners - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4681.2", "name": "SKOO - Selling with Partners - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4679, "name": "SKOO - SuppARRt (Customer Support) - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4679.2", "name": "SKOO - SuppARRt (Customer Support) - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4702, "name": "SKOO - Surviving the Security Conversation - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4702.2", "name": "SKOO - Surviving the Security Conversation - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4705, "name": "SKOO - Your Role in Customer Retention - Completed", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4705.2", "name": "SKOO - Your Role in Customer Retention - Due Date", "type": "date"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4404, "name": "Social Security Number (FR employees only)", "type": "text", "alias": "customSocialsecuritynumber(FR)"}, "emitted_at": 1710872578655}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4483, "name": "Spot Bonus - Date", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4484, "name": "Spot Bonus: Amount", "type": "currency"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4484.1", "name": "Spot Bonus: Amount - Currency code", "type": "text"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4486, "name": "Spot Bonus: Comment", "type": "textarea"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 7, "name": "SSN", "type": "ssn", "alias": "ssn"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 11, "name": "State", "type": "state", "alias": "state"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 387, "type": "status", "deprecated": true, "name": "Employment Status", "alias": "employmentStatus"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 387, "name": "Status", "type": "status", "alias": "status"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4766, "name": "Stephen Test - Completed", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4766.2", "name": "Stephen Test - Due Date", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4609, "name": "Stock Options: Amount", "type": "int"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4608, "name": "Stock Options: Change Reason", "type": "list"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4765, "name": "Stock Options: Comment", "type": "text"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5076, "name": "Stock Options: Date Added", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4769, "name": "Supply Chain - Bill of Material (BOM) - Completed", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4769.2", "name": "Supply Chain - Bill of Material (BOM) - Due Date", "type": "date"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.8", "name": "Suppressed Festivity (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.6", "name": "Suppressed Festivity (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.3", "name": "Suppressed Festivity (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578656}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.7", "name": "Suppressed Festivity (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.5", "name": "Suppressed Festivity (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.4", "name": "Suppressed Festivity (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5013.2", "name": "Suppressed Festivity (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5013, "name": "Suppressed Festivity (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.8", "name": "Suppressed Festivity - Italy Executive - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.6", "name": "Suppressed Festivity - Italy Executive - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.3", "name": "Suppressed Festivity - Italy Executive - Available Balance", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.7", "name": "Suppressed Festivity - Italy Executive - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.5", "name": "Suppressed Festivity - Italy Executive - Days scheduled", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.4", "name": "Suppressed Festivity - Italy Executive - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5094.2", "name": "Suppressed Festivity - Italy Executive - Policy", "type": "text"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5094, "name": "Suppressed Festivity - Italy Executive - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5095, "name": "Suppressed Festivity - Italy Executive policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5095.1", "name": "Suppressed Festivity - Italy Executive policy - Started on", "type": "date"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5014, "name": "Suppressed Festivity - Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5014.1", "name": "Suppressed Festivity - Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4488, "name": "Target Variable - Date", "type": "date"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4489, "name": "Target Variable: Amount", "type": "currency"}, "emitted_at": 1710872578657}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4489.1", "name": "Target Variable: Amount - Currency code", "type": "text"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4568, "name": "Target Variable: Change Reason", "type": "list"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4491, "name": "Target Variable: Comment", "type": "textarea"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4490, "name": "Target Variable Reason", "type": "list"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4403, "name": "Tax Identification number (DE employees only)", "type": "text", "alias": "customInsurancenumber(DE)"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4648, "name": "Tax identification number (NL employees only)", "type": "text", "alias": "customTaxidentificationnumber(NLemployeesonly)"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4499, "name": "Team Name", "type": "list"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4789, "name": "Team Name", "type": "text", "alias": "customTeamName1"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4314, "name": "Termination Reason", "type": "list"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4313, "name": "Termination Type", "type": "list"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.8", "name": "Test - Historical Balances (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.6", "name": "Test - Historical Balances (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.3", "name": "Test - Historical Balances (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.7", "name": "Test - Historical Balances (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.5", "name": "Test - Historical Balances (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.4", "name": "Test - Historical Balances (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5029.2", "name": "Test - Historical Balances (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5029, "name": "Test - Historical Balances (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.8", "name": "Test - Leave of Absence - Paid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.6", "name": "Test - Leave of Absence - Paid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578658}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.3", "name": "Test - Leave of Absence - Paid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.7", "name": "Test - Leave of Absence - Paid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.5", "name": "Test - Leave of Absence - Paid (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.4", "name": "Test - Leave of Absence - Paid (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5077.2", "name": "Test - Leave of Absence - Paid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5077, "name": "Test - Leave of Absence - Paid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.8", "name": "Test - Leave of Absence - Unpaid (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.6", "name": "Test - Leave of Absence - Unpaid (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.3", "name": "Test - Leave of Absence - Unpaid (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.7", "name": "Test - Leave of Absence - Unpaid (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.5", "name": "Test - Leave of Absence - Unpaid (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.4", "name": "Test - Leave of Absence - Unpaid (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5078.2", "name": "Test - Leave of Absence - Unpaid (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5078, "name": "Test - Leave of Absence - Unpaid (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.8", "name": "Test - Parental Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.6", "name": "Test - Parental Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.3", "name": "Test - Parental Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.7", "name": "Test - Parental Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578659}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.5", "name": "Test - Parental Leave (EMEA) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.4", "name": "Test - Parental Leave (EMEA) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5079.2", "name": "Test - Parental Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5079, "name": "Test - Parental Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.8", "name": "Test - Permits (Italy) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.6", "name": "Test - Permits (Italy) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.3", "name": "Test - Permits (Italy) - Available Balance", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.7", "name": "Test - Permits (Italy) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.5", "name": "Test - Permits (Italy) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.4", "name": "Test - Permits (Italy) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5016.2", "name": "Test - Permits (Italy) - Policy", "type": "text"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5016, "name": "Test - Permits (Italy) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.8", "name": "Test - Sick Leave (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.6", "name": "Test - Sick Leave (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.3", "name": "Test - Sick Leave (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.7", "name": "Test - Sick Leave (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.5", "name": "Test - Sick Leave (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.4", "name": "Test - Sick Leave (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4917.2", "name": "Test - Sick Leave (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4917, "name": "Test - Sick Leave (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578660}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.8", "name": "Test - Vacation (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.6", "name": "Test - Vacation (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.3", "name": "Test - Vacation (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.7", "name": "Test - Vacation (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.5", "name": "Test - Vacation (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.4", "name": "Test - Vacation (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4415.2", "name": "Test - Vacation (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4415, "name": "Test - Vacation (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5019, "name": "Test - Vacation (Germany) policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5019.1", "name": "Test - Vacation (Germany) policy - Started on", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5093, "name": "Test - Vacation Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5093.1", "name": "Test - Vacation Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4767, "name": "Test 2 - Completed", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4767.2", "name": "Test 2 - Due Date", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4731, "name": "The Art of the Big Deal - Completed", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4731.2", "name": "The Art of the Big Deal - Due Date", "type": "date"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.8", "name": "Unpaid Leave (Australia) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.6", "name": "Unpaid Leave (Australia) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.3", "name": "Unpaid Leave (Australia) - Available Balance", "type": "int"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.7", "name": "Unpaid Leave (Australia) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578661}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.5", "name": "Unpaid Leave (Australia) - Hours scheduled", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.4", "name": "Unpaid Leave (Australia) - Hours taken (YTD)", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5106.2", "name": "Unpaid Leave (Australia) - Policy", "type": "text"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5106, "name": "Unpaid Leave (Australia) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4656, "name": "Updated Deal Desk Submission Process Training - Completed", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4656.2", "name": "Updated Deal Desk Submission Process Training - Due Date", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4665, "name": "Upselling possibilities - 43min - Completed", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4665.2", "name": "Upselling possibilities - 43min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4662, "name": "Use Case - Financial crime analysis with Linkurio.us - 48min - Completed", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4662.2", "name": "Use Case - Financial crime analysis with Linkurio.us - 48min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4664, "name": "Use Case - Knowledge Graphs with Graphaware Hume - 38min - Completed", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4664.2", "name": "Use Case - Knowledge Graphs with Graphaware Hume - 38min - Due Date", "type": "date"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.8", "name": "Vacation (EMEA) - Accrual Start Date", "type": "time_off_type"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.6", "name": "Vacation (EMEA) - Adjustments (YTD)", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.3", "name": "Vacation (EMEA) - Available Balance", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.7", "name": "Vacation (EMEA) - Current balance", "type": "time_off_type"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.5", "name": "Vacation (EMEA) - Days scheduled", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.4", "name": "Vacation (EMEA) - Days taken (YTD)", "type": "int"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4941.2", "name": "Vacation (EMEA) - Policy", "type": "text"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4941, "name": "Vacation (EMEA) - Policy Assigned", "type": "time_off_type_exists"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4977, "name": "Vacation - Finland policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578662}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4977.1", "name": "Vacation - Finland policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5119, "name": "Vacation - France policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5119.1", "name": "Vacation - France policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5009, "name": "Vacation - Germany policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5009.1", "name": "Vacation - Germany policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5092, "name": "Vacation - Italy Executive policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5092.1", "name": "Vacation - Italy Executive policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5091, "name": "Vacation - Italy policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5091.1", "name": "Vacation - Italy policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4942, "name": "Vacation - Spain policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4942.1", "name": "Vacation - Spain policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5010, "name": "Vacation - The Netherlands policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5010.1", "name": "Vacation - The Netherlands policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5115, "name": "Vacation - UK Intern policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5115.1", "name": "Vacation - UK Intern policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5011, "name": "Vacation - UK policy - Assigned", "type": "time_off_policy_exists"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "5011.1", "name": "Vacation - UK policy - Started on", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 5088, "name": "Vesting Acceleration", "type": "list"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4001, "name": "Veteran Status", "type": "multilist"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4512, "name": "Voluntary Self-Identification of Disability", "type": "list", "alias": "customVoluntarySelf-IdentificationofDisability"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4867, "name": "Which of these statements are true - Completed", "type": "date"}, "emitted_at": 1710872578663}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4867.2", "name": "Which of these statements are true - Due Date", "type": "date"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 15, "name": "Work Email", "type": "email", "alias": "workEmail"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 635, "name": "Work Ext.", "type": "text", "alias": "workPhoneExtension"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 4727, "name": "Working Session: Building Trust for Better Prospecting on LinkedIn - Completed", "type": "date"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": "4727.2", "name": "Working Session: Building Trust for Better Prospecting on LinkedIn - Due Date", "type": "date"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 634, "name": "Work Phone", "type": "phone", "alias": "workPhone"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": 12, "name": "Zip Code", "type": "text", "alias": "zipcode"}, "emitted_at": 1710872578664}} -{"type": "RECORD", "record": {"stream": "meta_fields_stream", "data": {"id": -38, "name": "Termination Date", "type": "date", "alias": "terminationDate"}, "emitted_at": 1710872578664}} -{"type": "LOG", "log": {"level": "INFO", "message": "Read 903 records from meta_fields_stream stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream meta_fields_stream as STOPPED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872578664.644, "stream_status": {"stream_descriptor": {"name": "meta_fields_stream", "namespace": null}, "status": "COMPLETE"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing meta_fields_stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_fields_stream 0:00:00.706214\nSyncing stream meta_tables_stream 0:00:00.390416"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as STARTED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872580183.289, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "STARTED"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Syncing stream: tables_stream "}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as RUNNING"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872581422.672, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "RUNNING"}}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "118", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Web Program Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "187", "date": "2019-04-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4", "employeeId": "154", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Head of Solutions Lab", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "181", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "140", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sales Ops Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "246", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "162", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "1", "date": "2019-09-09", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, Human Resources", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "206", "date": "2019-10-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management, End-User Appplications", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "142", "date": "2019-04-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Enterprise Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "219", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "190", "date": "2018-02-20", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Director of Sales, Western", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "139", "date": "2019-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "157", "date": "2017-01-11", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "193", "date": "2019-09-23", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "156", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "146", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "249", "date": "2019-07-29", "location": "San Mateo - USA (HQ)", "department": "Support Engineering (US)", "division": "", "jobTitle": "Lead DBaaS Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "147", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "163", "date": "2017-04-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Web Developer, Front-end UX", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "213", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Corporate Accounts Representative", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "227", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Technical Support Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "153", "date": "2016-11-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "130", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "35", "employeeId": "135", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. Director, Customer Support", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "179", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "180", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "215", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "257", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "254", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Lead Managed Service Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "191", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "205", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Principal Curriculum Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "263", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "46", "employeeId": "166", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "198", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "243", "date": "2019-06-10", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "148", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "VP, Account Management", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "171", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "129", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Manager", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "241", "date": "2019-05-30", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Solutions Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "235", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "133", "date": "2014-12-08", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "152", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "232", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "192", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "251", "date": "2019-08-12", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "199", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "131", "date": "2014-12-01", "location": "Remote - USA", "department": "Engineering (US)", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "145", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "VP Channel, Americas", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "160", "date": "2017-02-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "255", "date": "2019-09-03", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Data Scientist", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "209", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "155", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "73", "employeeId": "183", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Prog Mgr, Comm Dev and Enablement", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "114", "date": "2019-09-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP, Finance & Administration", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "144", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sales Ops Manager", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "158", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Manager", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "175", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Product Management (US)", "division": "", "jobTitle": "Director, Product Management - Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "211", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Federal Alliance & Channel Manager, US", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "125", "date": "2013-10-14", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Director, Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "188", "date": "2018-01-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Chief Marketing Officer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "120", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "256", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Sr. Manager of Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "173", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "236", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "Partner Bus Dev Manager", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "217", "date": "2019-01-07", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "185", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "253", "date": "2019-10-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "126", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "182", "date": "2017-11-06", "location": "Remote - USA", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "Technology Partner Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "92", "employeeId": "247", "date": "2019-07-22", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "132", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "138", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Global Market Development Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "123", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "240", "date": "2019-10-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "98", "employeeId": "208", "date": "2018-07-30", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "210", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer & Customer Success", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "239", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "167", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Bus Dev (US)", "division": "", "jobTitle": "SVP, Bus and Corp Dev", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "159", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "220", "date": "2019-01-14", "location": "San Mateo - USA (HQ)", "department": "Legal", "division": "G&A", "jobTitle": "Associate General Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "168", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "Sales & Marketing", "jobTitle": "Solution Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "176", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Director, Field Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "178", "date": "2018-04-01", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "124", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "248", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Product Marketing Director", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "121", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "224", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Visual Designer", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "114", "employeeId": "218", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "172", "date": "2019-10-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "202", "date": "2018-06-25", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "149", "date": "2016-03-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "EA and Office Manager, America", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "122", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Director", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "169", "date": "2017-07-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "128", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "197", "date": "2019-05-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Sr. Marketing Operations Mgr", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "186", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "141", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "161", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "222", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "137", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "136", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Engineering (US)", "division": "", "jobTitle": "Software Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "130", "employeeId": "245", "date": "2019-10-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "UX Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "184", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "212", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "250", "date": "2019-08-01", "location": "San Mateo - USA (HQ)", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "207", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "238", "date": "2019-05-20", "location": "Remote - USA", "department": "Sales Development", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "115", "date": "2019-03-25", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. HR Generalist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "231", "date": "2019-04-08", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Intern", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "127", "date": "2019-10-01", "location": "San Mateo - USA (HQ)", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Director, Sales Engineering, Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "252", "date": "2019-10-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "221", "date": "2019-01-14", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "134", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "143", "date": "2019-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "229", "date": "2019-10-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "350", "date": "2018-05-14", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "364", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "148", "employeeId": "357", "date": "2018-09-01", "location": "Remote - Belgium", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Sr. Director for Professional Services EMEA (kJube BVBA)", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "316", "date": "2017-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "117", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "392", "date": "2019-05-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "338", "date": "2019-01-01", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager/HR Coordinator", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "374", "date": "2019-01-15", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "266", "date": "2012-07-09", "location": "Munich - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Developer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "359", "date": "2018-09-10", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Analyst", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "268", "date": "2013-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "295", "date": "2018-04-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Director Global Telecom Practice", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "380", "date": "2019-03-01", "location": "Remote - Israel", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "403", "date": "2019-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "384", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "343", "date": "2017-10-16", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Data Analyst", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "395", "date": "2019-06-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "412", "date": "2019-10-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "397", "date": "2019-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "304", "date": "2016-02-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "288", "date": "2015-01-01", "location": "Remote - Spain", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "393", "date": "2019-05-13", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Project Director", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "271", "date": "2013-09-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "371", "date": "2019-01-14", "location": "Remote - The Netherlands", "department": "Product-EMEA", "division": "", "jobTitle": "Contractor (Cannan Consultancy)", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "323", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "348", "date": "2018-04-02", "location": "Remote - Belgium", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Chief Solutions Architect (iBridge BBVA)", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "276", "date": "2014-05-19", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "406", "date": "2019-10-01", "location": "Remote - Italy", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, Italy", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "329", "date": "2019-01-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "391", "date": "2019-05-07", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "404", "date": "2019-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Quality Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "407", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "296", "date": "2019-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "293", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "341", "date": "2017-09-18", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "381", "date": "2019-03-01", "location": "Remote - EMEA", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "385", "date": "2019-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "278", "date": "2017-12-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "265", "date": "2012-07-03", "location": "Remote - France", "department": "Sales (EMEA)", "division": "", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "415", "date": "2019-11-01", "location": "Remote - Spain", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "396", "date": "2019-06-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "260", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "347", "date": "2018-02-12", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "387", "date": "2019-04-08", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "284", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "325", "date": "2019-10-01", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Technical Standards Specialist (Healthy Consulting Ltd)", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "418", "date": "2020-01-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "292", "date": "2019-07-01", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Associate Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "320", "date": "2019-01-01", "location": "Remote - Belgium", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "342", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Chief Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "306", "date": "2019-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "330", "date": "2017-07-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "280", "date": "2014-08-01", "location": "Remote - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "200", "employeeId": "408", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "335", "date": "2017-08-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "411", "date": "2019-10-07", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "383", "date": "2019-03-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "262", "date": "2020-02-05", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "205", "employeeId": "370", "date": "2019-01-07", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "398", "date": "2019-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "301", "date": "2015-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "208", "employeeId": "305", "date": "2019-01-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "372", "date": "2019-01-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "344", "date": "2017-10-16", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "116", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "300", "date": "2015-10-01", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "365", "date": "2019-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "324", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "216", "employeeId": "355", "date": "2018-08-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "414", "date": "2019-10-21", "location": "London - UK", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "334", "date": "2019-01-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "327", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "313", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "321", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "353", "date": "2018-09-27", "location": "Malm\u00f6 - Sweden", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management for Product Design", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "289", "date": "2017-07-01", "location": "Remote - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "389", "date": "2019-04-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "382", "date": "2019-03-01", "location": "Remote - Israel", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative, Israel", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "377", "date": "2019-10-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern Trainee", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "386", "date": "2019-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "333", "date": "2020-02-05", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "229", "employeeId": "285", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "259", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "294", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. QA Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "279", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "349", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "368", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "361", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "409", "date": "2019-10-01", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "331", "date": "2017-07-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "238", "employeeId": "360", "date": "2019-10-01", "location": "Remote - EMEA", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Sr. Delivery Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "339", "date": "2019-01-11", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "281", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "311", "date": "2018-06-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "242", "employeeId": "340", "date": "2017-09-05", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "243", "employeeId": "417", "date": "2019-11-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "309", "date": "2016-10-03", "location": "Munich - Germany", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Director DACH", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "270", "date": "2020-02-05", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "394", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "275", "date": "2014-03-11", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Channel Director", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "390", "date": "2019-05-01", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "297", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "410", "date": "2019-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "314", "date": "2017-02-27", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "328", "date": "2017-07-10", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "318", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "332", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "362", "date": "2018-10-01", "location": "Remote - Poland", "department": "Engineering-EMEA", "division": "", "jobTitle": "Performance Benchmarking Infrastructure Developer (Symentis)", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "299", "date": "2015-09-14", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "312", "date": "2016-12-05", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "401", "date": "2019-07-03", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "366", "date": "2018-11-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "260", "employeeId": "307", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "326", "date": "2018-10-15", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "379", "date": "2019-03-08", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "317", "date": "2017-04-01", "location": "Munich - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "399", "date": "2019-07-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "363", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "274", "date": "2019-05-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "376", "date": "2019-02-01", "location": "Remote - Belgium", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative (He.Ro Business Development Consulting)", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "402", "date": "2019-09-01", "location": "Remote - France", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "388", "date": "2019-04-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "291", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "405", "date": "2019-09-09", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "322", "date": "2017-05-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Enterprise Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "378", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "303", "date": "2016-01-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "375", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "286", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "336", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "373", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "354", "date": "2019-01-11", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "315", "date": "2017-03-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant (Anabranch)", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "282", "date": "2019-01-11", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "416", "date": "2019-11-18", "location": "Remote - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "337", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "369", "date": "2020-02-05", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "400", "date": "2019-07-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "310", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "283", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "308", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "319", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "413", "date": "2019-10-14", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "290", "date": "2015-01-07", "location": "Remote - Germany", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Sales Manager", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "346", "date": "2018-02-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "267", "date": "2012-08-01", "location": "Remote - Belgium", "department": "Sales (EMEA)", "division": "", "jobTitle": "Regional VP of Sales, EMEA (Bruggen BVBA)", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "287", "date": "2014-11-03", "location": "Remote - The Netherlands", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "273", "date": "2013-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "VP, Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "272", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "345", "date": "2017-11-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "351", "date": "2018-10-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "261", "date": "2010-10-25", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "356", "date": "2019-06-01", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "298", "date": "2019-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "269", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "358", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "302", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "352", "date": "2020-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "308", "employeeId": "421", "date": "2019-11-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "312", "employeeId": "533", "date": "2016-05-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "561", "date": "2018-06-18", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting-US", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "539", "date": "2017-04-01", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "527", "date": "2015-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "316", "employeeId": "506", "date": "2011-02-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Julian Simpson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "549", "date": "2017-09-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "523", "date": "2015-04-01", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "553", "date": "2017-11-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "535", "date": "2016-10-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "544", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "531", "date": "2016-02-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "510", "date": "2011-10-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "516", "date": "2014-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "536", "date": "2017-01-23", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "554", "date": "2018-01-08", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "560", "date": "2018-06-11", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "515", "date": "2013-06-03", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "515", "date": "2014-01-02", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Assistant", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "331", "employeeId": "545", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "565", "date": "2018-08-13", "location": "London - UK", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "334", "employeeId": "541", "date": "2017-04-03", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Marketing Digital Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "335", "employeeId": "568", "date": "2019-07-15", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "528", "date": "2015-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "547", "date": "2017-07-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "338", "employeeId": "534", "date": "2016-06-06", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "555", "date": "2018-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "520", "date": "2014-10-13", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "530", "date": "2016-02-01", "location": "Malm\u00f6 - Sweden", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Global Support Manager", "reportsTo": "Gabriel Stanek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "562", "date": "2018-06-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Petra Selmer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "557", "date": "2018-03-26", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "550", "date": "2017-10-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "512", "date": "2012-09-24", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Community Manager", "reportsTo": "Peter Neubauer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "524", "date": "2015-04-01", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "566", "date": "2019-03-25", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "564", "date": "2018-07-16", "location": "Munich - Germany", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Intern (Contractor)", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "504", "date": "2010-09-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-Sales Manager, EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "537", "date": "2017-01-23", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "502", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "503", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Dev Relations - EMEA", "division": "", "jobTitle": "Developer Evangelist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "559", "date": "2018-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "509", "date": "2011-09-20", "location": "Malaysia", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "558", "date": "2018-03-26", "location": "Malm\u00f6 - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Intern", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "556", "date": "2018-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "552", "date": "2017-10-09", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "507", "date": "2011-05-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "514", "date": "2013-01-28", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Representative", "reportsTo": "Holger Temme", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "538", "date": "2017-03-15", "location": "Remote - EMEA", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "511", "date": "2012-04-01", "location": "UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "511", "date": "2013-01-01", "location": "New Zeeland", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "Utpal Bhatt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "364", "employeeId": "546", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "546", "date": "2018-06-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "546", "date": "2019-06-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "551", "date": "2017-10-03", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "368", "employeeId": "548", "date": "2017-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "369", "employeeId": "522", "date": "2015-02-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "370", "employeeId": "522", "date": "2015-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "372", "employeeId": "501", "date": "2009-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "CTO", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "505", "date": "2010-10-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "519", "date": "2014-05-05", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Area Sales Director", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "525", "date": "2015-04-01", "location": "London - UK", "department": "Marketing (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Scott Lorenson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "376", "employeeId": "563", "date": "2018-07-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Ginger Sanfilippo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "567", "date": "2019-04-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "513", "date": "2012-11-05", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Representative", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "521", "date": "2015-01-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "542", "date": "2017-04-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Contractor", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "540", "date": "2017-04-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern Trainee", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "517", "date": "2014-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "532", "date": "2016-04-01", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "526", "date": "2015-04-01", "location": "Malm\u00f6 - Sweden", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "569", "date": "2019-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "570", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "571", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "572", "date": "2019-11-01", "location": "Remote - The Netherlands", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "117", "date": "2015-09-10", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "117", "date": "2017-01-09", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "117", "date": "2017-09-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "338", "date": "2017-09-01", "location": "London - UK", "department": "G&A - Finance/Admin (EMEA)", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "142", "date": "2015-08-11", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Senior Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "142", "date": "2019-09-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Contractor", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "241", "date": "2019-10-04", "location": "Remote - USA", "department": "Solutions Eng (US)", "division": "", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "193", "date": "2018-02-26", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "573", "date": "2019-10-21", "location": "London - UK", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "574", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "575", "date": "2020-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "400", "employeeId": "576", "date": "2019-11-18", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "577", "date": "2019-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "346", "date": "2019-12-03", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "311", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "385", "date": "2019-12-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "394", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "398", "date": "2019-12-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "578", "date": "2019-12-02", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "579", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "419", "date": "2019-10-29", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "411", "employeeId": "142", "date": "2019-10-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Executive", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "414", "employeeId": "156", "date": "2019-12-03", "location": "San Mateo - USA (HQ)", "department": "Sales (US)", "division": "", "jobTitle": "Sr. Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "415", "employeeId": "322", "date": "2019-12-03", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Enterprise Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "323", "date": "2019-12-03", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "207", "date": "2019-12-03", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "419", "employeeId": "218", "date": "2019-12-03", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "391", "date": "2019-12-03", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Account Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "424", "employeeId": "186", "date": "2020-01-01", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "426", "employeeId": "582", "date": "2019-10-21", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "427", "employeeId": "295", "date": "2020-01-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Pre-sales Director", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "428", "employeeId": "268", "date": "2012-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Research Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "268", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "295", "date": "2015-07-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "295", "date": "2017-07-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Director Global Telecom Practice", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "384", "date": "2017-09-13", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Julian Simpson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "384", "date": "2018-08-09", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "435", "employeeId": "323", "date": "2017-05-08", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "323", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Manager, EMEA Sales Development", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "323", "date": "2018-01-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Manager, EMEA Sales Development", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "438", "employeeId": "329", "date": "2017-07-15", "location": "London - UK", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "439", "employeeId": "296", "date": "2015-07-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "EMEA Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "293", "date": "2015-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "278", "date": "2014-07-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Manager, EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "260", "date": "2012-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "347", "date": "2019-01-11", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "277", "date": "2014-05-19", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "284", "date": "2014-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "292", "date": "2015-05-01", "location": "London - UK", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Field Engineering Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "320", "date": "2017-05-01", "location": "Remote - Belgium", "department": "Sales (US)", "division": "", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "245", "date": "2019-12-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Intern", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "449", "employeeId": "350", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Professional Services Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "450", "employeeId": "175", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management - Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "451", "employeeId": "249", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Lead DBaaS Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "452", "employeeId": "131", "date": "2019-12-03", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "453", "employeeId": "583", "date": "2019-11-11", "location": "Remote - USA", "department": "Support Engineering (US)", "division": "", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "454", "employeeId": "583", "date": "2020-01-01", "location": "Remote - USA", "department": "Support - Aura (US)", "division": "", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "584", "date": "2019-12-09", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "342", "date": "2017-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "342", "date": "2012-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Product Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "317", "date": "2020-01-01", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "342", "date": "2015-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "572", "date": "2018-04-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "572", "date": "2018-09-03", "location": "Remote - The Netherlands", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "572", "date": "2018-10-15", "location": "Remote - The Netherlands", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "330", "date": "2019-04-01", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "123", "date": "2020-01-01", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "335", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "322", "date": "2020-01-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Renewal Sales Manager, EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "474", "employeeId": "323", "date": "2020-01-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "391", "date": "2020-01-01", "location": "London - UK", "department": "Sales (EMEA)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "343", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Head of Analytics & Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "359", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "587", "date": "2020-01-09", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "479", "employeeId": "588", "date": "2020-01-13", "location": "Remote - France", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sales Representative France", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "589", "date": "2019-11-11", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "590", "date": "2019-12-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Specialist", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "591", "date": "2020-01-21", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "262", "date": "2011-01-01", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Developer (Contractor)", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "262", "date": "2018-01-22", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "262", "date": "2018-01-01", "location": "Munich - Germany", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "370", "date": "2019-10-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "305", "date": "2016-03-01", "location": "Remote - Germany", "department": "PS Consulting (EMEA)", "division": "", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "599", "date": "2019-12-09", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "600", "date": "2019-12-16", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "499", "employeeId": "601", "date": "2019-12-30", "location": "Remote - USA", "department": "Pre-Sales Eng (US)", "division": "", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "500", "employeeId": "245", "date": "2019-06-17", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Intern", "reportsTo": "Aileen Agricola", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "501", "employeeId": "207", "date": "2020-01-01", "location": "Remote - USA", "department": "Sales (US)", "division": "", "jobTitle": "Renewal Sales Representative", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "202", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "210", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "217", "date": "2020-01-01", "location": "Remote - USA", "department": "PS Consultants (US)", "division": "", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "506", "employeeId": "125", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "508", "employeeId": "151", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "602", "date": "2020-01-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "603", "date": "2019-12-12", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "365", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "604", "date": "2020-01-06", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "605", "date": "2020-02-05", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter and Resourcer, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "264", "date": "2011-08-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "606", "date": "2020-02-01", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "516", "employeeId": "607", "date": "2020-02-01", "location": "Stockholm - Sweden", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "517", "employeeId": "608", "date": "2020-03-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "EMEA Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "609", "date": "2020-03-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Sr. Analyst, Commercial Excellence", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "610", "date": "2020-03-16", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "611", "date": "2020-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "613", "date": "2020-03-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "414", "date": "2020-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "346", "date": "2020-01-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "299", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "292", "date": "2020-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "527", "employeeId": "311", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "385", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "330", "date": "2020-01-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "400", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "304", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "344", "date": "2020-01-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "412", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "535", "employeeId": "394", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "536", "employeeId": "316", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "271", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "539", "employeeId": "366", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "398", "date": "2020-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "355", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "395", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "543", "employeeId": "331", "date": "2020-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "334", "date": "2020-01-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "321", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "307", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "272", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "339", "date": "2020-01-21", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "576", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "347", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "403", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "284", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "553", "employeeId": "260", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "354", "date": "2020-01-21", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "293", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "282", "date": "2020-01-21", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "372", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "136", "date": "2020-01-21", "location": "San Mateo - USA (HQ)", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Architect", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "298", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "388", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "561", "employeeId": "285", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "562", "employeeId": "365", "date": "2020-01-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "141", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "147", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Lead Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "568", "employeeId": "324", "date": "2017-05-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "569", "employeeId": "313", "date": "2016-03-21", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Assistant", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "313", "date": "2017-01-23", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "332", "date": "2020-03-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "572", "employeeId": "116", "date": "2010-10-15", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Director, Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "573", "employeeId": "116", "date": "2017-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "340", "date": "2019-12-01", "location": "Remote - EMEA", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "355", "date": "2017-03-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer (Timicode)", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "334", "date": "2017-08-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "327", "date": "2017-07-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "321", "date": "2017-05-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "353", "date": "2018-07-01", "location": "Malm\u00f6 - Sweden", "department": "Product-EMEA", "division": "", "jobTitle": "Product Experience Designer", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "289", "date": "2015-01-01", "location": "Remote - Germany", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Sr. Manager of Pre-sales, Europe", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "333", "date": "2017-08-01", "location": "London - UK", "department": "Pre-Sales Eng (EMEA)", "division": "", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "285", "date": "2014-09-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "615", "date": "2020-01-27", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "250", "date": "2020-01-27", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "178", "date": "2017-10-02", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "178", "date": "2019-05-29", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Sayuri Tschetter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "178", "date": "2019-10-16", "location": "San Mateo - USA (HQ)", "department": "G&A - Finance/Admin (US)", "division": "", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "197", "date": "2018-04-30", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Marketing Operations Manager", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "322", "date": "2020-02-05", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "125", "date": "2020-01-18", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "401", "date": "2020-01-18", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "134", "date": "2020-01-18", "location": "San Mateo - USA (HQ)", "department": "Analytics", "division": "G&A", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "616", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "618", "date": "2020-02-03", "location": "Remote - USA", "department": "Sales (US)", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "292", "date": "2020-02-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager, Aura", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "414", "date": "2020-02-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Activation", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "605", "employeeId": "317", "date": "2020-02-04", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager, GQL Spec Editor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "371", "date": "2020-02-04", "location": "Remote - The Netherlands", "department": "Product-EMEA", "division": "", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "391", "date": "2020-01-27", "location": "London - UK", "department": "Sales (EMEA)", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "610", "employeeId": "323", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "619", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Professional Services, Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "259", "date": "2009-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "294", "date": "2015-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. QA Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "349", "date": "2019-09-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "349", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "349", "date": "2018-05-07", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Account Development Rep", "reportsTo": "Scott Marino", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "361", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "378", "date": "2020-01-18", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "350", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "357", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Director for Professional Services EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "255", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "217", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "202", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "629", "employeeId": "243", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "393", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "233", "date": "2019-04-22", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "221", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "329", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "572", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "387", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "219", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "161", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "210", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "247", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "305", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "235", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "171", "date": "2020-02-05", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "229", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "399", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "573", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "212", "date": "2019-12-31", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "413", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "146", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "266", "date": "2020-02-05", "location": "Munich - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Developer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "295", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-sales Director", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "380", "date": "2020-02-05", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "170", "date": "2017-07-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering - East", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "123", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "341", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "130", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "234", "date": "2019-04-29", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "415", "date": "2020-02-05", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "216", "date": "2018-12-03", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "189", "date": "2019-11-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "320", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "289", "date": "2020-02-05", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "184", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "663", "employeeId": "607", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "594", "date": "2020-01-13", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "198", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "599", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "228", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "601", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "127", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering, Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "185", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "172", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "181", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "180", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "674", "employeeId": "402", "date": "2020-02-05", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "405", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "315", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "677", "employeeId": "232", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "678", "employeeId": "287", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "257", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "258", "date": "2019-10-14", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "135", "date": "2020-02-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Customer Success", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "186", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "174", "date": "2020-02-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "254", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Lead Managed Service Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "252", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "227", "date": "2020-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Manager", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "241", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "348", "date": "2020-02-01", "location": "Remote - Belgium", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "159", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "194", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "390", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Innovation Lab Leader & UX Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "154", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Solutions Lab", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "356", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "182", "date": "2020-02-05", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "Technology Partner Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "581", "date": "2019-10-29", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Solutions Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "236", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Bus Dev Manager", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "167", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "SVP, Bus and Corp Dev", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "178", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "339", "date": "2017-09-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "583", "date": "2020-02-05", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. DBaaS Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "340", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "603", "date": "2020-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "708", "employeeId": "312", "date": "2020-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "379", "date": "2020-02-05", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "710", "employeeId": "190", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director of Sales, Western", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "169", "date": "2017-07-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "145", "date": "2020-01-07", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Channel, Americas", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "288", "date": "2020-02-05", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative (Sorbet Solutions SL)", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "580", "date": "2019-11-18", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "160", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "214", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "276", "date": "2020-02-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "406", "date": "2020-02-05", "location": "Remote - Italy", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Italy", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "223", "date": "2019-01-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "592", "date": "2020-01-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "595", "date": "2020-01-07", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "391", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "207", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "606", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "265", "date": "2020-02-05", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "119", "date": "2012-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "277", "date": "2016-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, UK", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "126", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "729", "employeeId": "187", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "730", "employeeId": "300", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "731", "employeeId": "382", "date": "2020-02-05", "location": "Remote - Israel", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative, Israel", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "732", "employeeId": "211", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Alliance & Channel Manager, US", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "133", "date": "2018-02-20", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "201", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Accounts Representative", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "230", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "195", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "737", "employeeId": "588", "date": "2020-02-05", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "213", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Accounts Representative", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "618", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "150", "date": "2020-02-05", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Sales East", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "309", "date": "2020-02-05", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Director, CEMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "275", "date": "2020-02-05", "location": "Remote - EMEA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of APAC Channel", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "120", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "President, Field Operations and Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "225", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "179", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "142", "date": "2020-02-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "132", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "376", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative BeNeLux", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "218", "date": "2020-01-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "153", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "156", "date": "2020-01-27", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "177", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "290", "date": "2020-02-05", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Sales Manager", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "267", "date": "2020-02-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "215", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "128", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "152", "date": "2020-02-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "281", "date": "2014-08-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "311", "date": "2016-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "412", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "383", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "781", "employeeId": "299", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "400", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "392", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "571", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "374", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "268", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "403", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "397", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "404", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "407", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "293", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "795", "employeeId": "381", "date": "2020-02-05", "location": "Remote - EMEA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "396", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "260", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "347", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "284", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "418", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "569", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "280", "date": "2020-02-05", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "587", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "408", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "335", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "411", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "301", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "372", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "810", "employeeId": "365", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "324", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "813", "employeeId": "421", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "327", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "321", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "386", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "602", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "285", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "259", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "294", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "361", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "339", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "281", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "578", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "297", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "410", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "314", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "328", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "332", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "362", "date": "2020-02-05", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "307", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "326", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "604", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "363", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "388", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "291", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "303", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "354", "date": "2020-02-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "282", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "337", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "310", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "416", "date": "2020-02-05", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "283", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "308", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "273", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "VP, Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "853", "employeeId": "272", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "345", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "351", "date": "2020-02-05", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "261", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "298", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "269", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "358", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "576", "date": "2020-02-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "197", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Operations Mgr", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "582", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "593", "date": "2020-01-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "865", "employeeId": "617", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Technology Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "251", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "200", "date": "2018-05-21", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Communications", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "165", "date": "2017-05-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "246", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "278", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "163", "date": "2019-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer, Front-end UX", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "245", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "237", "date": "2019-05-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "875", "employeeId": "162", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "876", "employeeId": "199", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "256", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "139", "date": "2020-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "242", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "274", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "367", "date": "2019-04-26", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "176", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "138", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Global Market Development Manager", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "224", "date": "2019-12-02", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Visual Designer", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "885", "employeeId": "248", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "188", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "129", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "Amit Chaudhry", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "244", "date": "2019-06-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "371", "date": "2020-02-05", "location": "Remote - The Netherlands", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "226", "date": "2019-03-04", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. Data Scientist", "reportsTo": "Jacob Graham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "203", "date": "2019-12-04", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for AI & Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "353", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management for Neo4j Developer Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "409", "date": "2020-02-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "317", "date": "2020-02-05", "location": "Munich - Germany", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, GQL Spec Editor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "121", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "206", "date": "2020-02-04", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management for Neo4j Visualization", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "352", "date": "2020-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management, Neo4j DBMS", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "238", "date": "2020-01-20", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "155", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "614", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Sales Development", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "158", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "173", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "370", "date": "2020-01-20", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "349", "date": "2020-01-20", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "204", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "166", "date": "2020-01-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "336", "date": "2020-02-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "239", "date": "2020-01-20", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "157", "date": "2020-02-05", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "144", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "914", "employeeId": "125", "date": "2020-02-05", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "270", "date": "2013-05-13", "location": "London - UK", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Field Sales Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "916", "employeeId": "270", "date": "2017-12-01", "location": "London - UK", "department": "Dev Relations_EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "270", "date": "2019-01-01", "location": "London - UK", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "620", "date": "2020-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West/Central Region", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "621", "date": "2020-02-24", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "499", "date": "2020-02-03", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Associate Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "923", "employeeId": "622", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Data Science Solution Architect", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "297", "date": "2015-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "318", "date": "2017-04-18", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "318", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "318", "date": "2019-09-23", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "928", "employeeId": "318", "date": "2018-06-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Director and Controller EMEA", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "332", "date": "2017-07-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "362", "date": "2018-10-15", "location": "Remote - Poland", "department": "Engineering-EMEA", "division": "", "jobTitle": "Performance Benchmarking Infrastructure Developer (Symentis)", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "401", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Field Operations Incentive Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "307", "date": "2016-05-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "499", "date": "2019-06-10", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "934", "employeeId": "326", "date": "2017-06-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "379", "date": "2019-02-18", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "623", "date": "2019-12-09", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. SFDC Developer", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "624", "date": "2020-01-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Communications Generalist", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "625", "date": "2020-01-02", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "626", "date": "2020-01-06", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "941", "employeeId": "627", "date": "2017-12-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "628", "date": "2020-01-13", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "629", "date": "2017-01-10", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "629", "date": "2019-01-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "630", "date": "2020-02-10", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "631", "date": "2017-08-01", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "947", "employeeId": "164", "date": "2020-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "317", "date": "2018-04-28", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "317", "date": "2018-06-28", "location": "Munich - Germany", "department": "Product-EMEA", "division": "", "jobTitle": "Product Manager", "reportsTo": "Alastair Green", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "312", "date": "2019-01-01", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "579", "date": "2019-12-10", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "HR Coordinator", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "605", "date": "2020-01-06", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Recruiter and Resourcer, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "363", "date": "2018-10-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "274", "date": "2018-01-22", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "274", "date": "2017-12-01", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Sr. Director EMEA", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "274", "date": "2014-01-20", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Marketing Director EMEA", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "263", "date": "2018-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "263", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "262", "date": "2019-01-01", "location": "Munich - Germany", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "313", "date": "2017-05-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "313", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "962", "employeeId": "306", "date": "2016-04-20", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "340", "date": "2019-03-08", "location": "London - UK", "department": "Support Eng (EMEA)", "division": "", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "291", "date": "2015-03-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "966", "employeeId": "322", "date": "2020-01-27", "location": "London - UK", "department": "Renewals", "division": "", "jobTitle": "Renewal Sales Manager, EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "378", "date": "2020-02-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "378", "date": "2019-02-11", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Sales Development Representative", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "375", "date": "2019-01-16", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Accounting Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "970", "employeeId": "367", "date": "2018-11-27", "location": "Munich - Germany", "department": "Marketing - EMEA", "division": "", "jobTitle": "Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "971", "employeeId": "286", "date": "2018-11-02", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "286", "date": "2014-10-15", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "336", "date": "2020-01-18", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "336", "date": "2019-09-01", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Gordon Carrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "336", "date": "2018-08-27", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "336", "date": "2017-08-21", "location": "London - UK", "department": "Sales Development (EMEA)", "division": "", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Scott Marino", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "633", "date": "2020-03-02", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "373", "date": "2019-01-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "354", "date": "2018-07-01", "location": "Remote - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "282", "date": "2014-08-06", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "282", "date": "2019-03-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "337", "date": "2017-08-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "369", "date": "2018-04-16", "location": "London - UK", "department": "G&A-EMEA", "division": "", "jobTitle": "Part Time Recruiter (Penny Stevenson Consulting Ltd)", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "369", "date": "2018-10-01", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Part Time Recruiter (Penny Stevenson Consulting Ltd)", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "634", "date": "2020-04-01", "location": "Remote - Switzerland", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Rep. Switzerland/Austria", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "369", "date": "2019-01-01", "location": "London - UK", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "987", "employeeId": "635", "date": "2020-04-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "310", "date": "2016-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "636", "date": "2020-03-02", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Aura Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "637", "date": "2020-03-02", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "283", "date": "2014-08-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "327", "date": "2016-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "377", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "308", "date": "2016-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "995", "employeeId": "319", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "319", "date": "2017-04-27", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Richard Newhagen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "319", "date": "2019-01-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Office Manager", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "272", "date": "2013-09-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "351", "date": "2018-06-01", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "356", "date": "2018-08-13", "location": "Stockholm - Sweden", "department": "Solutions Eng (EMEA)", "division": "", "jobTitle": "Innovation Lab Leader, EMEA", "reportsTo": "Alessandro Svensson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "298", "date": "2015-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "269", "date": "2013-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "358", "date": "2017-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "302", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "302", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "302", "date": "2016-01-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "352", "date": "2018-06-07", "location": "London - UK", "department": "Product-EMEA", "division": "", "jobTitle": "Director of Product Management (Athoa Ltd)", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "638", "date": "2020-02-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "639", "date": "2020-03-02", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1010", "employeeId": "116", "date": "2019-03-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1011", "employeeId": "151", "date": "2017-01-03", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Jr. Sales Ops Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "342", "date": "2020-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Architect", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "269", "date": "2012-06-01", "location": "London - UK", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "363", "date": "2018-01-15", "location": "Leipzig - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "377", "date": "2018-08-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Intern", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "317", "date": "2013-01-07", "location": "Munich - Germany", "department": "Engineering-EMEA", "division": "", "jobTitle": "Developer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "353", "date": "2012-02-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Engineer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "204", "date": "2019-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "138", "date": "2020-02-16", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "139", "date": "2020-02-18", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "134", "date": "2014-12-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Demand Generation", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "134", "date": "2017-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Marketing Ops & Analytics", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "134", "date": "2018-01-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Marketing Ops & Analytics", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1026", "employeeId": "164", "date": "2017-05-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "189", "date": "2018-02-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1028", "employeeId": "364", "date": "2018-10-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "117", "date": "2018-09-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-EMEA", "division": "", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "117", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "HR Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "359", "date": "2020-01-01", "location": "Stockholm - Sweden", "department": "G&A-Analytics EMEA", "division": "", "jobTitle": "Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "384", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "IT Consultant", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1033", "employeeId": "384", "date": "2019-04-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Manager, IT", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "343", "date": "2020-02-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Head of Analytics & Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "640", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1036", "employeeId": "131", "date": "2011-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "154", "date": "2015-09-14", "location": "Stockholm - Sweden", "department": "Marketing - EMEA", "division": "", "jobTitle": "Solutions Marketing Manager", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "301", "date": "2020-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Information Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "130", "date": "2020-02-25", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Pre-Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "162", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "129", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "248", "date": "2020-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "593", "date": "2020-02-22", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "116", "date": "2018-10-01", "location": "Malm\u00f6 - Sweden", "department": "G&A-Finance/admin EMEA", "division": "", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "368", "date": "2019-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering-EMEA", "division": "", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "317", "date": "2020-03-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1047", "employeeId": "275", "date": "2020-01-07", "location": "Remote - EMEA", "department": "Sales (EMEA)", "division": "", "jobTitle": "Head of APAC Channel", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1048", "employeeId": "391", "date": "2020-02-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "323", "date": "2020-02-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "329", "date": "2020-03-01", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "203", "date": "2018-07-02", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Sr. PM for AI & Graph Analytics", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1052", "employeeId": "405", "date": "2020-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "607", "date": "2020-03-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1054", "employeeId": "415", "date": "2020-03-01", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "PreSales Field Engineer Spain/Iberia\u00a0", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "341", "date": "2020-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "498", "date": "2019-06-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "", "jobTitle": "Intern", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1057", "employeeId": "137", "date": "2015-04-13", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "137", "date": "2017-07-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "301", "date": "2020-03-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "642", "date": "2020-04-20", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "643", "date": "2020-03-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive, Northeast", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "644", "date": "2020-04-20", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "231", "date": "2020-03-16", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "226", "date": "2020-04-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "533", "date": "2020-05-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "645", "date": "2020-06-22", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "646", "date": "2020-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "647", "date": "2020-03-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "648", "date": "2020-03-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "649", "date": "2020-04-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "650", "date": "2020-05-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1074", "employeeId": "651", "date": "2020-03-23", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "652", "date": "2020-03-23", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "361", "date": "2020-03-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "176", "date": "2020-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director NA Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "653", "date": "2020-09-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "654", "date": "2019-03-04", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Temp", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "367", "date": "2020-02-05", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "655", "date": "2020-04-06", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "APAC Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "255", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "217", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "202", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "243", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "233", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "221", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "640", "date": "2020-03-02", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "210", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "247", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "235", "date": "2020-02-10", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "229", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "212", "date": "2020-01-01", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "146", "date": "2020-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "625", "date": "2020-02-10", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "244", "date": "2019-08-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "656", "date": "2020-04-06", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre Sales Engineer, OEM", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "245", "date": "2020-04-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "344", "date": "2020-04-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "658", "date": "2020-05-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "163", "date": "2020-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Web User Experience", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "224", "date": "2020-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Visual Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "659", "date": "2020-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Security Specialist", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "662", "date": "2020-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "663", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1109", "employeeId": "664", "date": "2020-05-11", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "665", "date": "2020-04-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "667", "date": "2020-04-30", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "333", "date": "2019-10-01", "location": "London - UK", "department": "G&A-Dev Rel EMEA", "division": "", "jobTitle": "Developer Relations Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "245", "date": "2020-06-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "668", "date": "2020-05-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1116", "employeeId": "452", "date": "2015-01-19", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "", "jobTitle": "Director, Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "460", "date": "2019-06-02", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, Human Resources", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "669", "date": "2020-06-03", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "670", "date": "2020-06-08", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Manager, EMEA", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "671", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "316", "date": "2020-07-15", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "672", "date": "2020-06-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "674", "date": "2020-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "676", "date": "2020-07-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "677", "date": "2021-08-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1128", "employeeId": "678", "date": "2020-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "679", "date": "2020-06-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1130", "employeeId": "546", "date": "2020-06-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "361", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "365", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1133", "employeeId": "283", "date": "2020-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "131", "date": "2020-06-12", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "681", "date": "2020-06-01", "location": "Remote - France", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Scientific Advisor", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "682", "date": "2020-07-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "120", "date": "2020-05-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "President, Field Operations and Chief Operating Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "605", "date": "2020-06-24", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "684", "date": "2020-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "685", "date": "2020-08-03", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "370", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "336", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Account Development Rep", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "378", "date": "2020-05-18", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1146", "employeeId": "686", "date": "2020-08-01", "location": "Remote - EMEA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "687", "date": "2020-09-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "162", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director, Analytics", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "593", "date": "2020-07-09", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "129", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Manager", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "248", "date": "2020-07-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Product Marketing Director", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "688", "date": "2020-07-20", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "689", "date": "2020-07-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "690", "date": "2020-06-10", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Scientist", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "691", "date": "2020-07-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "693", "date": "2020-09-15", "location": "Remote - EMEA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "334", "date": "2020-07-20", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "283", "date": "2020-07-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "694", "date": "2020-07-01", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "695", "date": "2020-08-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "697", "date": "2020-09-14", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "696", "date": "2020-10-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "698", "date": "2020-09-02", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep, France", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "699", "date": "2020-08-24", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "700", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "701", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "702", "date": "2020-08-14", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Dirk Aschoff)", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "703", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "704", "date": "2020-09-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "705", "date": "2020-08-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Communication Specialist", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "706", "date": "2020-08-24", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "212", "date": "2020-07-01", "location": "Boston - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Project Director", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "268", "date": "2020-07-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "707", "date": "2020-11-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "157", "date": "2020-10-01", "location": "Boston - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "708", "date": "2020-09-01", "location": "Remote - Poland", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Rafal Janicki)", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "709", "date": "2020-09-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1181", "employeeId": "710", "date": "2020-11-02", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "711", "date": "2020-09-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "712", "date": "2020-10-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "713", "date": "2020-10-01", "location": "Remote - France", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "138", "date": "2020-09-09", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "714", "date": "2020-09-28", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "715", "date": "2020-10-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "716", "date": "2020-09-21", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Cloud Managed Services Lead", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "717", "date": "2020-09-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "718", "date": "2020-09-28", "location": "Malm\u00f6 - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Director, Sales Operations", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "719", "date": "2020-09-21", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "720", "date": "2020-09-07", "location": "Remote - EMEA", "department": "Legal", "division": "G&A", "jobTitle": "EMEA Counsel", "reportsTo": "Nina Chang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "721", "date": "2020-09-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "722", "date": "2020-10-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amy Hodler", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "271", "date": "2020-09-23", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "403", "date": "2020-09-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "397", "date": "2020-09-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "723", "date": "2020-10-19", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Support Specialist", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "724", "date": "2020-09-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "725", "date": "2019-12-16", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketo Administrator", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "726", "date": "2020-12-01", "location": "Remote - Italy", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "727", "date": "2020-10-05", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "728", "date": "2020-11-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "616", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "633", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "615", "date": "2020-10-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "156", "date": "2020-10-01", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Brent Merhar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "730", "date": "2020-05-01", "location": "Remote - USA", "department": "Marketing", "division": "", "jobTitle": "Consultant", "reportsTo": "Karin Wolok", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "651", "date": "2020-10-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "SDR Team Lead", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1212", "employeeId": "731", "date": "2020-10-05", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "732", "date": "2020-09-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Global Integrated Campaign Manager", "reportsTo": "Lauren McCormack", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "729", "date": "2020-11-02", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "734", "date": "2020-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "353", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "395", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "383", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "574", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "366", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "668", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "362", "date": "2020-10-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "310", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1225", "employeeId": "533", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "385", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "570", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "311", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "283", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Sr. Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "346", "date": "2020-10-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "404", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "396", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "684", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "294", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "332", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "269", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "330", "date": "2020-10-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "575", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "334", "date": "2020-10-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "735", "date": "2021-01-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "736", "date": "2020-10-12", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Intern, Developer Relations", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "737", "date": "2020-10-12", "location": "Remote - Canada", "department": "Business Development", "division": "G&A", "jobTitle": "Partner Solutions Architect", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "738", "date": "2020-11-30", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "John Kennedy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "398", "date": "2020-10-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "739", "date": "2021-01-04", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Enterprise", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1248", "employeeId": "740", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "419", "date": "2019-10-09", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "419", "date": "2020-10-19", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Talent & HR Ops Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "686", "date": "2020-12-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "Claudia Remlinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "743", "date": "2020-11-16", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "744", "date": "2020-11-16", "location": "Remote - Beijing", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "745", "date": "2020-11-16", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "746", "date": "2021-01-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "747", "date": "2020-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "748", "date": "2020-12-14", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "749", "date": "2020-10-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "131", "date": "2020-10-01", "location": "Remote - USA", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "751", "date": "2021-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "752", "date": "2020-12-07", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "741", "date": "2020-11-02", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Corbett Waddingham", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "742", "date": "2020-12-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "753", "date": "2020-12-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1268", "employeeId": "754", "date": "2020-11-09", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1269", "employeeId": "755", "date": "2020-12-14", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "139", "date": "2015-06-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "292", "date": "2020-11-13", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Associate Product Manager, Aura", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "756", "date": "2020-01-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Marketing Manager", "reportsTo": "Lauren McCormack", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "757", "date": "2020-11-17", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations DevOps Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "758", "date": "2021-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "759", "date": "2020-11-23", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director ASEAN", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "760", "date": "2021-02-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for Dev Tools", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "761", "date": "2021-01-11", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "274", "date": "2020-12-02", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Director, Enterprise Cloud Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "762", "date": "2020-12-21", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "VP, Global Cloud Partnerships", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "763", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "764", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "765", "date": "2020-12-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, OEM Sales", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "766", "date": "2020-12-14", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "767", "date": "2021-01-01", "location": "Stockholm - Sweden", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - Nordic", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "583", "date": "2020-12-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Data Engineer", "reportsTo": "John Kennedy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "768", "date": "2021-02-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "769", "date": "2020-12-14", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "770", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "605", "date": "2021-05-03", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "771", "date": "2021-01-04", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1292", "employeeId": "772", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1293", "employeeId": "773", "date": "2021-01-04", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "774", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "775", "date": "2021-01-04", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director APAC Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "776", "date": "2021-03-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1297", "employeeId": "725", "date": "2020-12-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1298", "employeeId": "777", "date": "2021-01-04", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "778", "date": "2020-12-14", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "VP, People", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "1", "date": "2020-12-14", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, Human Resources", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "381", "date": "2021-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "780", "date": "2020-12-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "262", "date": "2021-01-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Director, Global Developer Relations", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "116", "date": "2020-12-14", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, HR and Business Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "319", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "402", "date": "2021-01-01", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "315", "date": "2021-01-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer Consultant", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "782", "date": "2021-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "783", "date": "2021-01-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "139", "date": "2020-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Content Marketing", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "691", "date": "2020-12-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "582", "date": "2020-12-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "785", "date": "2021-05-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "786", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "787", "date": "2021-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "788", "date": "2021-02-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "419", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Specialist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "115", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Generalist", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "1", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "116", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People & Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "117", "date": "2021-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, People, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "149", "date": "2020-12-14", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "EA and Office Manager, America", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "790", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "791", "date": "2021-01-11", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "792", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "793", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "794", "date": "2021-01-11", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "795", "date": "2021-01-11", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "590", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "796", "date": "2021-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Developer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "206", "date": "2021-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of PM for Neo4j User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "356", "date": "2021-01-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "798", "date": "2019-10-07", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "799", "date": "2021-04-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "800", "date": "2021-04-19", "location": "Remote - France", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "212", "date": "2021-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Cloud Programs", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "801", "date": "2019-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "269", "date": "2021-01-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "802", "date": "2021-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "803", "date": "2021-03-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "804", "date": "2020-03-23", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "797", "date": "2021-01-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Competitive and Enablement Product Marketing Director", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "626", "date": "2021-01-11", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "142", "date": "2021-01-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "226", "date": "2021-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of PM for Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "197", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "237", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Global Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "251", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1355", "employeeId": "155", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1356", "employeeId": "158", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Sales Development", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1357", "employeeId": "173", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1358", "employeeId": "199", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Managing Editor", "reportsTo": "Bryce Merkl Sasaki", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "256", "date": "2021-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "805", "date": "2021-03-15", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "806", "date": "2021-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "174", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "600", "date": "2021-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office & People Strategy Coordinator", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "414", "date": "2021-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "312", "date": "2021-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "336", "date": "2021-01-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "807", "date": "2021-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1368", "employeeId": "225", "date": "2021-01-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "627", "date": "2021-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering - APAC", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "244", "date": "2021-01-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "715", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1372", "employeeId": "804", "date": "2021-01-26", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "251", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "199", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Managing Editor", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "782", "date": "2021-01-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "808", "date": "2021-02-08", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "809", "date": "2021-02-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "810", "date": "2021-04-01", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1379", "employeeId": "196", "date": "2019-10-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Partner Marketing Manager", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "489", "date": "2019-09-11", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Ryan Fisher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "293", "date": "2021-02-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "801", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "798", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, East", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "479", "date": "2017-03-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "", "jobTitle": "Sr. Director Product Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "440", "date": "2017-03-04", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "", "jobTitle": "Systems Administration Manager", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1387", "employeeId": "497", "date": "2019-01-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "812", "date": "2021-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Content Analyst", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "813", "date": "2021-02-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "199", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Content", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "715", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "804", "date": "2021-02-08", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "251", "date": "2021-02-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "782", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Deb Cameron", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "244", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Deb Cameron", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "806", "date": "2021-02-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Jessica Baumgardner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "814", "date": "2021-04-08", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Senior Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "815", "date": "2021-04-05", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "628", "date": "2021-02-15", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "816", "date": "2021-03-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "817", "date": "2021-03-15", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "818", "date": "2021-03-15", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "819", "date": "2021-03-22", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "713", "date": "2021-03-01", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "820", "date": "2021-03-15", "location": "Boston - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. Manager, People Strategy", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "138", "date": "2021-02-25", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "821", "date": "2021-02-22", "location": "Remote - India", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Lance Kaji", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "133", "date": "2018-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "822", "date": "2021-06-01", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "823", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1412", "employeeId": "824", "date": "2021-03-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "745", "date": "2021-01-11", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "825", "date": "2021-03-08", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "UK Country Director", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "665", "date": "2021-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "667", "date": "2021-01-01", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "771", "date": "2021-01-04", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "826", "date": "2021-03-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Sales Enablement", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "605", "date": "2021-03-03", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "131", "date": "2021-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "277", "date": "2021-04-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, UK", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "231", "date": "2021-03-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Merton Thompson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "827", "date": "2021-03-08", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "828", "date": "2021-06-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "829", "date": "2021-03-15", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "830", "date": "2021-06-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "831", "date": "2021-05-24", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "832", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX Designer", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "319", "date": "2021-03-08", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "352", "date": "2021-04-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Director of Product Management", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "833", "date": "2021-04-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "834", "date": "2021-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1434", "employeeId": "419", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. People Strategy Specialist", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "835", "date": "2021-04-19", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Graph Data Science Product Manager", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1436", "employeeId": "178", "date": "2021-03-15", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Armida Mandadero", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "117", "date": "2021-03-17", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Sr. Manager, People, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "836", "date": "2021-06-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "716", "date": "2021-03-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Managed Services Lead", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "263", "date": "2009-10-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "263", "date": "2011-05-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "636", "date": "2021-03-22", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Aura Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "837", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "838", "date": "2021-03-22", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "741", "date": "2021-03-19", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "256", "date": "2021-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Enterprise Digital & Marketing Automation", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "801", "date": "2021-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "839", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "842", "date": "2021-05-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - DACH Region", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1453", "employeeId": "843", "date": "2021-04-12", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Armida Mandadero", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "844", "date": "2021-04-01", "location": "Remote - Italy", "department": "Legal", "division": "G&A", "jobTitle": "Legal Contractor", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "845", "date": "2021-04-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "590", "date": "2021-04-12", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "846", "date": "2021-04-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Blog Managing Editor", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "847", "date": "2021-04-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "848", "date": "2021-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "849", "date": "2021-04-05", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "744", "date": "2021-04-05", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "219", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "638", "date": "2021-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "850", "date": "2021-04-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Integrations Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "850", "date": "2017-06-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "370", "date": "2021-04-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Specialist", "reportsTo": "Maria Samaan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "851", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "852", "date": "2021-06-01", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "853", "date": "2021-04-19", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Iberia & Italy Region", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1470", "employeeId": "854", "date": "2021-04-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "855", "date": "2021-04-12", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "582", "date": "2021-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Demand Generation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "808", "date": "2021-04-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "856", "date": "2021-05-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1476", "employeeId": "857", "date": "2021-04-26", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "LATAM Channel & Alliances Manager", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "858", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "859", "date": "2021-04-26", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "860", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Director", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "150", "date": "2021-04-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "240", "date": "2021-04-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "253", "date": "2021-04-01", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Merton Thompson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "861", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "General Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "862", "date": "2021-06-14", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "304", "date": "2021-05-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "813", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "758", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "697", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "368", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "577", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "569", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "646", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "587", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "374", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "703", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "389", "date": "2021-04-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "314", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "707", "date": "2021-04-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "863", "date": "2021-05-03", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Jose Ramirez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1500", "employeeId": "636", "date": "2021-05-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Manager, Neo4j Aura", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "741", "date": "2021-04-22", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "744", "date": "2021-04-22", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "815", "date": "2021-04-22", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "864", "date": "2020-06-26", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Freelancer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "865", "date": "2021-04-26", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "664", "date": "2021-04-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1507", "employeeId": "866", "date": "2021-05-17", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "821", "date": "2021-04-23", "location": "Remote - India", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "642", "date": "2021-04-23", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "144", "date": "2021-04-23", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "623", "date": "2021-04-23", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. SFDC Developer", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1512", "employeeId": "705", "date": "2021-05-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Analyst Relations", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "867", "date": "2021-07-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1514", "employeeId": "225", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "790", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "793", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "700", "date": "2021-05-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "869", "date": "2021-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "870", "date": "2021-06-28", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "871", "date": "2021-05-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "872", "date": "2021-08-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "873", "date": "2021-05-10", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1524", "employeeId": "874", "date": "2021-05-17", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1525", "employeeId": "336", "date": "2021-07-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - EMEA", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "875", "date": "2021-08-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "876", "date": "2021-06-01", "location": "Remote - Canada", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager - Bloom", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "877", "date": "2021-07-26", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1529", "employeeId": "756", "date": "2021-05-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "878", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "879", "date": "2021-08-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager Germany", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1532", "employeeId": "880", "date": "2021-06-30", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "881", "date": "2021-08-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "882", "date": "2021-08-02", "location": "Malm\u00f6 - Sweden", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "883", "date": "2021-07-26", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Site Reliability Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "884", "date": "2021-07-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "736", "date": "2021-06-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Data Science Technology Specialist", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "885", "date": "2021-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Web Development Intern", "reportsTo": "Paul Dessert", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "886", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UI/UX Design Intern", "reportsTo": "Shreyans Gandhi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "887", "date": "2021-05-24", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "200", "date": "2021-05-15", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "888", "date": "2021-06-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1543", "employeeId": "244", "date": "2021-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "889", "date": "2021-06-01", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1545", "employeeId": "890", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "891", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Testing Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "892", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "857", "date": "2021-06-01", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "LATAM Channel & Alliances Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "893", "date": "2021-08-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "894", "date": "2021-08-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "895", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "895", "date": "2014-02-24", "location": "Stockholm - Sweden", "department": "Sales (EMEA)", "division": "", "jobTitle": "Inside Sales Rep, Nordics", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "896", "date": "2021-06-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "844", "date": "2021-06-01", "location": "Remote - Italy", "department": "Legal", "division": "G&A", "jobTitle": "Legal Contractor", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "897", "date": "2021-07-05", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "898", "date": "2021-07-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "899", "date": "2021-06-14", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Business Systems Analyst (Jr. Salesforce Admin)", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "300", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Karl Sj\u00f6borg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1560", "employeeId": "606", "date": "2021-09-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Karl Sj\u00f6borg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "240", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "253", "date": "2021-06-09", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "901", "date": "2021-06-16", "location": "Remote - India", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1565", "employeeId": "669", "date": "2021-06-09", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer and Researcher", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "822", "date": "2021-06-09", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "278", "date": "2021-06-07", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "296", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "686", "date": "2021-06-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Manager EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "367", "date": "2021-06-07", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Digital Marketing Manager EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1571", "employeeId": "722", "date": "2021-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "231", "date": "2021-06-14", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "902", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1574", "employeeId": "280", "date": "2021-06-14", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1575", "employeeId": "903", "date": "2021-08-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Social Media Marketing", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "904", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1577", "employeeId": "905", "date": "2021-11-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "854", "date": "2021-06-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1580", "employeeId": "907", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "908", "date": "2021-06-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "343", "date": "2021-07-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "865", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "909", "date": "2021-10-04", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "910", "date": "2021-10-25", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead PM, Aura Platform", "reportsTo": "Kurt Freytag", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "651", "date": "2021-07-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Development", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1587", "employeeId": "639", "date": "2021-07-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "829", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1589", "employeeId": "773", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "709", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "774", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1592", "employeeId": "859", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "155", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "807", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "173", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "652", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "791", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1598", "employeeId": "704", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1599", "employeeId": "911", "date": "2021-08-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "USA Federal Channel & Alliances Director", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1600", "employeeId": "912", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "900", "date": "2021-07-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "VP, Global Revenue Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "772", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "913", "date": "2021-08-02", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1604", "employeeId": "326", "date": "2021-07-05", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "282", "date": "2021-07-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Drivers and Connectivity Lead", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1606", "employeeId": "914", "date": "2021-09-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "915", "date": "2021-09-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1609", "employeeId": "664", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1610", "employeeId": "144", "date": "2021-07-06", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "642", "date": "2021-07-06", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "852", "date": "2021-07-06", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "916", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "918", "date": "2021-07-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1617", "employeeId": "919", "date": "2021-08-11", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Carl Spataro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "920", "date": "2021-07-19", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "682", "date": "2021-07-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1620", "employeeId": "162", "date": "2017-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Partner Marketing", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "921", "date": "2021-09-20", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Application Security Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "922", "date": "2021-07-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1623", "employeeId": "923", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Nordics", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "924", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative - UK", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "925", "date": "2021-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - UK/Benelux", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "927", "date": "2021-09-07", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "926", "date": "2021-09-02", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for Developer Experience", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "928", "date": "2021-07-26", "location": "Remote - China", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1629", "employeeId": "929", "date": "2021-09-27", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1630", "employeeId": "930", "date": "2021-08-09", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "190", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1632", "employeeId": "162", "date": "2021-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "629", "date": "2021-07-30", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "353", "date": "2010-09-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "G&A", "jobTitle": "Field Engineer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1635", "employeeId": "292", "date": "2021-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura", "reportsTo": "Alicia Frame", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "931", "date": "2021-08-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jennifer Adams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "932", "date": "2021-10-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "933", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1639", "employeeId": "600", "date": "2021-07-26", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Specialist", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "934", "date": "2021-08-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director Alliances and Channels", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "935", "date": "2021-08-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1642", "employeeId": "936", "date": "2021-08-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Marketing", "reportsTo": "Maya Sampath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "236", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "Director, Global Cloud and ISV Partnerships", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1644", "employeeId": "278", "date": "2021-11-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "937", "date": "2021-09-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "191", "date": "2021-01-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "245", "date": "2021-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "818", "date": "2021-06-05", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "938", "date": "2021-08-23", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "939", "date": "2021-08-30", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "940", "date": "2021-08-23", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer - LatAm", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "364", "date": "2021-10-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Chief of Staff / Director of Product Operations", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "941", "date": "2021-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "942", "date": "2021-09-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "943", "date": "2021-08-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "944", "date": "2021-09-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "945", "date": "2021-08-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Marketing Coordinator", "reportsTo": "Rence Holt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "605", "date": "2021-08-16", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "369", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "866", "date": "2021-08-16", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "838", "date": "2021-08-16", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Geeta Sood", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "946", "date": "2021-09-07", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "582", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "947", "date": "2021-10-18", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "948", "date": "2021-10-18", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "951", "date": "2021-08-30", "location": "Remote - China", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "952", "date": "2021-09-13", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Tara Jana", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "953", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "954", "date": "2021-10-04", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "299", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "955", "date": "2021-09-27", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "956", "date": "2021-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Events Specialist", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "957", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "958", "date": "2021-10-11", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "959", "date": "2021-05-17", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consultant", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "801", "date": "2021-08-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "756", "date": "2021-08-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Digital Marketing", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "960", "date": "2022-01-03", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "961", "date": "2021-11-22", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1682", "employeeId": "962", "date": "2021-10-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "546", "date": "2021-09-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "963", "date": "2021-09-27", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "587", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "646", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "331", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "355", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "400", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1690", "employeeId": "674", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "752", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "748", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "796", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Developer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "803", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "847", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "836", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "368", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "577", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "569", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "831", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1701", "employeeId": "410", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "848", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Quality Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "891", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Testing Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "269", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "291", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "301", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "324", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "327", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "363", "date": "2021-09-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "411", "date": "2021-09-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "416", "date": "2021-09-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1712", "employeeId": "578", "date": "2021-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graph Analytics Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "381", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1714", "employeeId": "785", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "931", "date": "2021-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "964", "date": "2021-09-20", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting/Payroll Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1717", "employeeId": "965", "date": "2021-09-07", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Database / Email Marketer", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "966", "date": "2021-09-08", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "313", "date": "2021-09-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Finance Administrator EMEA", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "644", "date": "2021-09-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "967", "date": "2021-09-27", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "968", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "970", "date": "2021-09-08", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "823", "date": "2021-09-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "971", "date": "2021-09-13", "location": "Remote - Canada", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "972", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "639", "date": "2021-09-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Team Lead-Outbound", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1729", "employeeId": "686", "date": "2021-10-28", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "973", "date": "2021-11-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1731", "employeeId": "974", "date": "2021-09-27", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "975", "date": "2021-10-04", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "178", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Lydia Browne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1734", "employeeId": "843", "date": "2021-09-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Lydia Browne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "976", "date": "2021-09-28", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1736", "employeeId": "316", "date": "2021-04-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Graphic Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1738", "employeeId": "978", "date": "2021-09-21", "location": "Remote - Singapore", "department": "Business Development", "division": "G&A", "jobTitle": "APAC Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "979", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "980", "date": "2021-11-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Benelux", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1741", "employeeId": "981", "date": "2021-10-11", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Anne Taylor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "982", "date": "2021-11-22", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Mattias Olsson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "983", "date": "2021-12-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "984", "date": "2021-10-17", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Partner Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "985", "date": "2021-10-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "763", "date": "2021-09-20", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "986", "date": "2021-11-02", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "987", "date": "2021-11-30", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "988", "date": "2021-09-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Joann Neuhaus", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "369", "date": "2021-09-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "866", "date": "2021-09-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "605", "date": "2021-09-22", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "268", "date": "2021-09-30", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1754", "employeeId": "802", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "421", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1756", "employeeId": "645", "date": "2021-09-30", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "875", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "351", "date": "2021-09-30", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1759", "employeeId": "297", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "839", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "628", "date": "2021-09-30", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "611", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1763", "employeeId": "337", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "687", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "648", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "914", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "728", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "302", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "286", "date": "2021-09-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "281", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "335", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "317", "date": "2021-09-30", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "361", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "365", "date": "2021-09-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "989", "date": "2021-11-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "990", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Principal, Partner Solutions & Technology", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1777", "employeeId": "991", "date": "2021-10-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "992", "date": "2021-11-01", "location": "London - UK", "department": "Business Development", "division": "G&A", "jobTitle": "EMEA Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "993", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "994", "date": "2021-11-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "995", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Product Led Marketing Demand Generation", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1782", "employeeId": "778", "date": "2021-09-29", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1783", "employeeId": "273", "date": "2021-09-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "SVP Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "121", "date": "2021-09-29", "location": "San Mateo - USA (HQ)", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "SVP Product", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "996", "date": "2021-10-18", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Thursday Roberts", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "838", "date": "2021-09-22", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "197", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1788", "employeeId": "725", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "969", "date": "2021-10-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1790", "employeeId": "783", "date": "2021-10-01", "location": "Remote - USA", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "997", "date": "2021-10-18", "location": "Remote - USA", "department": "Business Development", "division": "G&A", "jobTitle": "Director Global Cloud Channel Architecture", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1792", "employeeId": "998", "date": "2021-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Events Specialist", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "999", "date": "2021-11-15", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "262", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "329", "date": "2021-10-15", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "864", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Freelancer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "353", "date": "2021-10-15", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1799", "employeeId": "854", "date": "2021-10-15", "location": "Remote - Belgium", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1800", "employeeId": "922", "date": "2021-10-15", "location": "Remote - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "757", "date": "2021-10-15", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations DevOps Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1802", "employeeId": "887", "date": "2021-10-15", "location": "Munich - Germany", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "694", "date": "2021-10-15", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "G&A", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "182", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Fawad Zakariya", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1805", "employeeId": "761", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "205", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Principal Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "192", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1808", "employeeId": "951", "date": "2021-10-15", "location": "Remote - China", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "143", "date": "2021-10-15", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1810", "employeeId": "1000", "date": "2022-01-05", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Architect", "reportsTo": "James Freeman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "1001", "date": "2021-10-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Operations Analyst Intern", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1812", "employeeId": "1002", "date": "2021-10-18", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "1003", "date": "2021-10-18", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1814", "employeeId": "1004", "date": "2021-10-18", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "EMEA Digital Marketing and Engagement Director", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "1005", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "1006", "date": "2022-01-24", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "413", "date": "2021-10-01", "location": "London - UK", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "1007", "date": "2021-10-18", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "1008", "date": "2021-10-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "977", "date": "2021-10-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1822", "employeeId": "1009", "date": "2022-01-04", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Vice President, IT", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "1010", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1824", "employeeId": "257", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "180", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1826", "employeeId": "198", "date": "2021-10-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "367", "date": "2021-11-01", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "1011", "date": "2021-10-25", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1829", "employeeId": "178", "date": "2021-10-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "843", "date": "2021-10-20", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1831", "employeeId": "184", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "189", "date": "2021-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer, Team Lead", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1833", "employeeId": "1012", "date": "2021-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "1013", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1835", "employeeId": "1014", "date": "2021-11-29", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager for GraphQL", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "1015", "date": "2021-11-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1837", "employeeId": "1016", "date": "2021-11-15", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "806", "date": "2021-10-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Demand Gen Copywriter", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "1017", "date": "2022-01-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "1018", "date": "2021-11-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "1019", "date": "2021-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1842", "employeeId": "866", "date": "2022-01-01", "location": "London - UK", "department": "Human Resources", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "1020", "date": "2022-04-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1844", "employeeId": "134", "date": "2021-11-01", "location": "San Mateo - USA (HQ)", "department": "Sales Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "943", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "942", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "668", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "362", "date": "2021-11-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Performance Benchmarking Infrastructure Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1849", "employeeId": "310", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "729", "date": "2021-11-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "280", "date": "2021-11-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1852", "employeeId": "916", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "697", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1854", "employeeId": "758", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "813", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "304", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "326", "date": "2021-11-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "1021", "date": "2021-12-13", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "914", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "648", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "947", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "361", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "728", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "875", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1865", "employeeId": "337", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "302", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1867", "employeeId": "802", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "645", "date": "2021-11-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1869", "employeeId": "335", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "365", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "421", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "611", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Scala Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "268", "date": "2021-11-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "687", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1875", "employeeId": "281", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "297", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1877", "employeeId": "839", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "962", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1879", "employeeId": "317", "date": "2021-11-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Member of Technical Staff", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "286", "date": "2021-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1881", "employeeId": "351", "date": "2021-11-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "838", "date": "2021-11-08", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1883", "employeeId": "605", "date": "2021-11-08", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "369", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "866", "date": "2021-11-08", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "546", "date": "2021-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581515}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1887", "employeeId": "628", "date": "2021-11-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Consultant", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1022", "date": "2022-01-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1023", "date": "2021-11-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Competitive Analyst Consultant", "reportsTo": "Thomas Lindsey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1891", "employeeId": "1025", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1026", "date": "2021-11-15", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1893", "employeeId": "1027", "date": "2021-12-13", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1028", "date": "2022-01-10", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - LatAm", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1895", "employeeId": "1024", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Global Corporate Sales", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "1029", "date": "2022-01-03", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive, LatAm", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1898", "employeeId": "1030", "date": "2021-11-15", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "1031", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Barry McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "1032", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Information Security Officer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "1033", "date": "2021-11-22", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1902", "employeeId": "1034", "date": "2022-01-17", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Director, UK/IE & Benelux", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "1035", "date": "2022-04-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "919", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1905", "employeeId": "253", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "240", "date": "2021-11-08", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "231", "date": "2021-11-08", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581516}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "822", "date": "2021-11-08", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1909", "employeeId": "1036", "date": "2021-12-09", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1037", "date": "2021-12-13", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Channel and Alliances Director", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1911", "employeeId": "1038", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "1039", "date": "2022-01-15", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1040", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "VP, Global Customer Support", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "1041", "date": "2022-02-07", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1915", "employeeId": "1042", "date": "2021-12-15", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "1043", "date": "2021-12-06", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1917", "employeeId": "1044", "date": "2022-01-10", "location": "Boston - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "VP, Global Talent Acquisition", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1045", "date": "2022-01-10", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success, Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "1046", "date": "2021-12-09", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "1047", "date": "2021-12-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "1048", "date": "2022-01-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "1049", "date": "2021-12-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "1050", "date": "2021-12-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Joann Neuhaus", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1924", "employeeId": "783", "date": "2021-12-06", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "1051", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "1052", "date": "2022-01-10", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581517}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "900", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Global Revenue Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "197", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "642", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Global Deals Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "134", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "664", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "144", "date": "2021-12-01", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Global Sales Ops", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "821", "date": "2021-12-01", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "725", "date": "2021-12-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "852", "date": "2021-12-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "413", "date": "2021-12-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rosalyn Santa Elena", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "1053", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Operations Lead", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "1054", "date": "2022-03-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "374", "date": "2021-12-29", "location": "Remote - Australia", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "1055", "date": "2022-01-10", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1056", "date": "2022-02-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Data Science Solution Architect", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "1057", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "VP, Legal", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "213", "date": "2021-11-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "1058", "date": "2022-02-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "587", "date": "2021-12-16", "location": "Remote - Canada", "department": "Field Engineering - Solutions", "division": "Sales & Marketing", "jobTitle": "Senior Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581518}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "763", "date": "2022-01-24", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "786", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Specialist, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "359", "date": "2022-01-01", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Principal Analyst, Global Business Strategy & Planning", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "1059", "date": "2022-09-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "1060", "date": "2022-01-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1061", "date": "2022-01-17", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1062", "date": "2022-01-24", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager Iberia", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1063", "date": "2022-02-07", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "280", "date": "2021-12-22", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "678", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "787", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "713", "date": "2021-12-21", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "740", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "647", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "751", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "576", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "850", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Integrations Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "339", "date": "2021-12-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581519}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "354", "date": "2021-12-21", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "1064", "date": "2022-03-01", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager, Professional Services EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "921", "date": "2021-12-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Application Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "386", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "659", "date": "2021-12-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Information Security Specialist", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "332", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Developer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "872", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "894", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "684", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Build Service Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "294", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Sr. QA Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "396", "date": "2021-12-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software packaging and Deployment Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "994", "date": "2021-12-21", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "1065", "date": "2022-01-03", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "1066", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1067", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "1068", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Partner Manager", "reportsTo": "John Broad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "1069", "date": "2022-02-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "846", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "806", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Jocelyn Hoppa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581520}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "919", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "253", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Sr. Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "240", "date": "2022-01-05", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "231", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "965", "date": "2022-01-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Lisa Hatheway", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "822", "date": "2022-01-05", "location": "Remote - Germany", "department": "Legal", "division": "G&A", "jobTitle": "Head of EMEA Legal", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "1072", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "1073", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "1074", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director of Customer Success, EMEA", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "1075", "date": "2022-02-15", "location": "Remote - The Netherlands", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager, EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "639", "date": "2022-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "829", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "704", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1076", "date": "2022-01-04", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "1077", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "965", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "686", "date": "2022-01-08", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2005", "employeeId": "858", "date": "2022-01-08", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2006", "employeeId": "582", "date": "2022-01-08", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581521}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "995", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Product Led Marketing Demand Generation", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "682", "date": "2022-01-08", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "367", "date": "2022-01-08", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "862", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "336", "date": "2022-01-04", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive - EMEA", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1078", "date": "2022-02-07", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "829", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1033", "date": "2022-01-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "704", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "639", "date": "2022-01-04", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Matthew Schwalbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "209", "date": "2022-01-04", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2025", "employeeId": "1079", "date": "2022-03-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "584", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "981", "date": "2022-01-05", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "1080", "date": "2022-01-10", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "227", "date": "2022-01-04", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Manager", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1081", "date": "2022-01-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "365", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "293", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581522}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "264", "date": "2022-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "299", "date": "2022-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "972", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2038", "employeeId": "671", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "636", "date": "2022-01-04", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Manager, Neo4j Aura", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "264", "date": "2016-11-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1083", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2043", "employeeId": "309", "date": "2022-01-09", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Sales, DACH & Emerging Regions", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "825", "date": "2022-01-09", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "UK Country Director", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2045", "employeeId": "895", "date": "2022-01-09", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, Nordics", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "265", "date": "2022-01-09", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "980", "date": "2022-01-09", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Benelux", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "588", "date": "2022-01-09", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "584", "date": "2022-01-10", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Manager, Recruiting", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1010", "date": "2022-01-10", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Manager, EMEA", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "312", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Manager - EMEA", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2053", "employeeId": "670", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Lead Customer Success Manager, EMEA", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "958", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "603", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581523}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "986", "date": "2022-01-10", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "376", "date": "2022-01-09", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative BeNeLux", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1084", "date": "2022-01-24", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "985", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "187", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "792", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "629", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "727", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "888", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "207", "date": "2022-01-10", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "1085", "date": "2022-01-18", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "G&A", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "901", "date": "2022-01-10", "location": "Remote - India", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "1086", "date": "2022-01-17", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "1088", "date": "2022-03-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "EMEA Channel & Alliances Manager", "reportsTo": "Morten Schlosser", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "1089", "date": "2022-02-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "1090", "date": "2022-01-24", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "1004", "date": "2022-01-19", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Digital Marketing and Engagement EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "1091", "date": "2022-04-19", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "Field Operations Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "414", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581524}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "739", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura Enterprise", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "910", "date": "2022-01-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead PM, Aura Platform", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "159", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "826", "date": "2022-01-09", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Sales Enablement", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "1092", "date": "2022-02-14", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "356", "date": "2022-01-09", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Business Design and Strategic Programs, Team Lead EMEA", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "1093", "date": "2022-09-01", "location": "Remote - Sweden", "department": "Legal", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "194", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "587", "date": "2022-01-01", "location": "Remote - Canada", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "772", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "250", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "348", "date": "2022-01-01", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "1095", "date": "2022-03-28", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "700", "date": "2022-01-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "152", "date": "2022-01-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "1096", "date": "2022-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "1097", "date": "2022-04-04", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "1098", "date": "2022-01-24", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "1099", "date": "2022-01-31", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581525}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "707", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "1100", "date": "2022-03-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Renewals", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2104", "employeeId": "1101", "date": "2022-02-07", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "1102", "date": "2022-02-14", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer - Aura", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "1103", "date": "2022-05-10", "location": "Stockholm - Sweden", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Marketing, Nordics (Senior Manager)", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "245", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX Engineer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "669", "date": "2021-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "182", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "971", "date": "2022-02-01", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "719", "date": "2022-01-31", "location": "Remote - USA", "department": "Self Serve Growth", "division": "G&A", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "762", "date": "2022-02-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Partnerships", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "236", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Director, Global Cloud and ISV Partnerships", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "965", "date": "2022-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director Demand Generation, Database Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "582", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Demand Generation Programs", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "163", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "682", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "200", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "676", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "775", "date": "2022-02-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581526}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "858", "date": "2022-02-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "614", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "367", "date": "2022-02-02", "location": "Munich - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Global Data Science Programs", "reportsTo": "Julia Astashkina", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "737", "date": "2022-02-01", "location": "Remote - Canada", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Partner Solutions Architect", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "1104", "date": "2022-04-01", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director PreSales EMEA South", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "1105", "date": "2022-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Competitive Intelligence Analyst", "reportsTo": "Thomas Lindsey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "1085", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "818", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "719", "date": "2022-02-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "997", "date": "2022-02-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Director Global Cloud Channel Architecture", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "143", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "978", "date": "2022-02-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "APAC Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "1080", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "192", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "205", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "138", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Aura Self-Serve Growth", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "761", "date": "2022-02-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "951", "date": "2022-02-01", "location": "Remote - China", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "757", "date": "2022-02-01", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581527}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "864", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Freelancer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "694", "date": "2022-02-01", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "329", "date": "2022-02-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "887", "date": "2022-02-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "278", "date": "2022-02-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "262", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "353", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Julie Hamel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "854", "date": "2022-02-01", "location": "Remote - Belgium", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "922", "date": "2022-02-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "992", "date": "2022-02-01", "location": "London - UK", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "EMEA Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "1107", "date": "2022-03-07", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "1108", "date": "2022-02-09", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Intern", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "165", "date": "2020-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Americas Corporate and Digital Events", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "1060", "date": "2022-02-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "1061", "date": "2022-02-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "1109", "date": "2022-02-15", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "1110", "date": "2022-03-21", "location": "Remote - Singapore", "department": "Recruiting", "division": "G&A", "jobTitle": "People Strategy & Talent Acquisition Lead, APAC", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "1111", "date": "2022-02-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "1112", "date": "2022-05-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581528}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "1113", "date": "2022-03-21", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "1114", "date": "2022-02-28", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "1115", "date": "2022-03-07", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "1116", "date": "2022-02-28", "location": "Boston - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "1118", "date": "2022-02-28", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "1119", "date": "2022-03-21", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "1120", "date": "2022-02-28", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "1121", "date": "2022-04-01", "location": "Remote - Japan", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "773", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "626", "date": "2022-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, ANZ", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "174", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "186", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "855", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "991", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "816", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Associate", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "374", "date": "2022-01-01", "location": "Remote - Australia", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "628", "date": "2022-01-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Consultant", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "242", "date": "2022-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "199", "date": "2022-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Leena Bengani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581529}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "176", "date": "2022-02-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2186", "employeeId": "775", "date": "2022-01-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "206", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM for Neo4j User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "364", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Chief of Staff / Senior Director of Product Operations", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "226", "date": "2022-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM for Graph Data Science", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "820", "date": "2022-01-01", "location": "Boston - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "149", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "141", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "629", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "599", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "180", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2196", "employeeId": "257", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "177", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Charles Fischer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "170", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "184", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "189", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "127", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "178", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "A/P Staff Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "499", "date": "2022-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581530}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "192", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "143", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Staff Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2206", "employeeId": "205", "date": "2022-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Curriculum Developer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "324", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "351", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "327", "date": "2022-02-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "329", "date": "2022-01-01", "location": "London - UK", "department": "Developer Relations", "division": "G&A", "jobTitle": "Senior Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "304", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "850", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "837", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "648", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "647", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "355", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "668", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "927", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "395", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "604", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "334", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "856", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581531}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2223", "employeeId": "383", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "796", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "400", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "747", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "576", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "734", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "751", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2230", "employeeId": "758", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "679", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "578", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "921", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2234", "employeeId": "712", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "883", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "347", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "286", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "332", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "331", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "831", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "662", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581532}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "385", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "328", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "389", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "1051", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "994", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "962", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "947", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "1012", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "361", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "802", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "403", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "570", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "891", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "574", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "421", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "398", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "365", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "684", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "602", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581533}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2261", "employeeId": "678", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "396", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "293", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "297", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "298", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "848", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "291", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "785", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "314", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "635", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "281", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "310", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "283", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "311", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "335", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "611", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "659", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "337", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581534}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "269", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "294", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "410", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "687", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "674", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "613", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "392", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "944", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "307", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "812", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "260", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "575", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "131", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "703", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "368", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "386", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "366", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "301", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "302", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581535}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "373", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "372", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "388", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "321", "date": "2022-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "116", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "VP, People and Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "268", "date": "2022-02-01", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "713", "date": "2022-02-01", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "317", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "710", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "316", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "339", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "346", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "411", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "354", "date": "2022-02-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "352", "date": "2022-01-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM, Neo4j Database", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "729", "date": "2022-02-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "362", "date": "2022-02-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "280", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "416", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "909", "date": "2022-02-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581536}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "330", "date": "2022-02-01", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "757", "date": "2022-01-01", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "G&A", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "685", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Regional Manager", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "312", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Manager - EMEA", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "649", "date": "2022-01-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "399", "date": "2022-01-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "845", "date": "2022-01-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "309", "date": "2022-01-01", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Sales, DACH & Emerging Regions", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "653", "date": "2022-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "759", "date": "2022-01-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, China", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "1018", "date": "2022-01-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "745", "date": "2022-01-01", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "601", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre-Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "699", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "232", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "594", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "937", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "770", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581537}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "889", "date": "2022-01-01", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "755", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "228", "date": "2022-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "824", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "592", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "769", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "851", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "1015", "date": "2022-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "401", "date": "2022-03-01", "location": "Stockholm - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Manager, Global Compensation and People", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "1122", "date": "2022-03-14", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Aura Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "685", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Regional Manager", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "340", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "788", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "870", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "884", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "1017", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "1055", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "1006", "date": "2022-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "986", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581538}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "603", "date": "2022-02-15", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "1124", "date": "2022-02-28", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "1117", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "1126", "date": "2022-03-07", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "1127", "date": "2022-03-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "981", "date": "2022-02-01", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "393", "date": "2022-03-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Customer Post Sales Enablement Manager", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "178", "date": "2022-02-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "A/P Staff Accountant", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "843", "date": "2022-02-28", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "1084", "date": "2022-02-28", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "1128", "date": "2022-03-21", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Designer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "295", "date": "2022-03-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Director Sales Engineering", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "1129", "date": "2022-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "182", "date": "2022-03-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Relations & Advocacy", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "971", "date": "2022-03-01", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "719", "date": "2022-03-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Head of Aura Self Service Growth", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "200", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Corporate Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "775", "date": "2022-03-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, APAC Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "676", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581539}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "176", "date": "2022-03-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "176", "date": "2022-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Vice President, North America Marketing", "reportsTo": "Lance Walter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "262", "date": "2022-03-01", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Director, User Innovation", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "1130", "date": "2022-06-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "1131", "date": "2022-05-23", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "583", "date": "2022-03-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Data Engineer", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "738", "date": "2022-03-01", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "1132", "date": "2022-05-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "858", "date": "2022-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing, EMEA", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "1133", "date": "2022-05-23", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "1134", "date": "2022-02-22", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "1136", "date": "2022-04-25", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - Benelux", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "221", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Regional Manager", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "1138", "date": "2022-06-06", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "1139", "date": "2022-03-05", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "243", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "210", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "235", "date": "2022-03-01", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "233", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581540}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "202", "date": "2022-03-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "1140", "date": "2022-03-21", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Partner Cloud Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "1141", "date": "2022-03-28", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Community Specialist", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "1142", "date": "2022-04-25", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Rep - UK Corporate", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "1143", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "1144", "date": "2022-04-04", "location": "Remote - Mexico", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "1145", "date": "2022-04-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Daniel Fitzpatrick", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "1146", "date": "2022-04-04", "location": "San Mateo - USA (HQ)", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "621", "date": "2020-10-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "1147", "date": "2022-04-04", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "1148", "date": "2022-05-16", "location": "London - UK", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "1149", "date": "2022-06-27", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Partner Cloud Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "1150", "date": "2022-04-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Tara Jana", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "1060", "date": "2022-06-20", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "1151", "date": "2022-03-28", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "1152", "date": "2022-04-25", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "EMEA Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "1154", "date": "2022-04-11", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "1155", "date": "2022-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "1156", "date": "2022-04-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581541}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "1157", "date": "2022-06-20", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "319", "date": "2022-01-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "1158", "date": "2022-04-26", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "907", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "1159", "date": "2022-04-04", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Consultant", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "1160", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2423", "employeeId": "1161", "date": "2022-05-02", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2424", "employeeId": "1162", "date": "2022-05-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, SaaS Growth", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "1163", "date": "2022-03-28", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "1164", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "1165", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "1166", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "1167", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "1168", "date": "2022-08-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "1169", "date": "2022-04-19", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Executive Assistant", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "1170", "date": "2022-04-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "SEO Specialist Contractor", "reportsTo": "Paul Dessert", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "1171", "date": "2022-04-04", "location": "Remote - Mexico", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "1172", "date": "2022-04-18", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "1173", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "1174", "date": "2022-04-01", "location": "Remote - Australia", "department": "Legal", "division": "G&A", "jobTitle": "Outside Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581542}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "865", "date": "2022-04-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Associate Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "1175", "date": "2022-04-25", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "144", "date": "2022-04-01", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sales Compensation Director", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "1176", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "1178", "date": "2022-05-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "1179", "date": "2022-05-02", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2444", "employeeId": "1180", "date": "2022-04-25", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1181", "date": "2022-04-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1182", "date": "2022-05-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "405", "date": "2022-04-01", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1183", "date": "2022-04-25", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Developer Organic Marketing", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "1184", "date": "2022-04-25", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Query Language Designer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1185", "date": "2022-06-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "1186", "date": "2022-05-02", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1187", "date": "2022-04-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "908", "date": "2022-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1188", "date": "2022-05-02", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer - Security Practitioner", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1061", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581543}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "298", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2458", "employeeId": "347", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2459", "employeeId": "602", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "679", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "712", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "747", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "856", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "881", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1089", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1155", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Thesis Intern", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "330", "date": "2022-04-19", "location": "Remote - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "574", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "883", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "953", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1051", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2472", "employeeId": "687", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "297", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "839", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1129", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581544}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "281", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "268", "date": "2022-04-19", "location": "Remote - Finland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2478", "employeeId": "1190", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "546", "date": "2022-04-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "696", "date": "2022-04-11", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "380", "date": "2022-04-11", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "287", "date": "2022-04-11", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "726", "date": "2022-04-11", "location": "Remote - Italy", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "932", "date": "2022-04-11", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer PreSales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "320", "date": "2022-04-11", "location": "Remote - Belgium", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "413", "date": "2022-03-30", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "852", "date": "2022-03-30", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1191", "date": "2022-06-20", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer UK", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1193", "date": "2022-04-25", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Dave Dunbar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "664", "date": "2022-03-30", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "197", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "783", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "725", "date": "2022-03-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Rod Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1194", "date": "2022-05-30", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581545}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2496", "employeeId": "1195", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "334", "date": "2022-04-19", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "1196", "date": "2022-05-02", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1197", "date": "2022-05-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Enterprise Sales Executive", "reportsTo": "Daniel Dorchinsky", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "135", "date": "2022-04-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Operations Manager", "reportsTo": "Rik Van Bruggen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1198", "date": "2022-06-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1199", "date": "2022-04-25", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1200", "date": "2022-05-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1201", "date": "2022-05-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1203", "date": "2022-05-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1204", "date": "2022-04-25", "location": "Remote - China", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Robin Fong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "1205", "date": "2022-05-23", "location": "Remote - The Netherlands", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2509", "employeeId": "1206", "date": "2022-07-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1207", "date": "2022-05-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "197", "date": "2022-04-26", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1208", "date": "2022-05-23", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1209", "date": "2022-08-01", "location": "San Mateo - USA (HQ)", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1210", "date": "2022-05-09", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Intern", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1211", "date": "2022-06-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581546}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1212", "date": "2022-06-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Representative Germany", "reportsTo": "Heiko Sch\u00f6nfelder", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2517", "employeeId": "134", "date": "2022-03-30", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Analyst", "reportsTo": "Karl-Gustav Bergqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1213", "date": "2022-09-01", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1214", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Global Sales Enablement", "reportsTo": "Brian Enright", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1215", "date": "2022-06-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Intern", "reportsTo": "Taline Felix", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "1216", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "117", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Director, People - EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "1217", "date": "2022-05-23", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1053", "date": "2022-05-15", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Support Operations Lead", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "1219", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Corporate Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "1220", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1222", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2530", "employeeId": "1223", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1224", "date": "2022-09-01", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Marketing (Senior Manager) DACH", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1225", "date": "2022-06-13", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Strategic Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "1228", "date": "2022-06-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "1229", "date": "2022-07-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager - Enterprise Cloud", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1230", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1231", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accounts Payable Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581547}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1233", "date": "2022-07-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "G.R.E.T.A. Sales and Marketing Enabler", "reportsTo": "Brian Enright", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1227", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "677", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "706", "date": "2022-05-24", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "753", "date": "2022-06-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Global Cloud Sales", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1232", "date": "2022-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2545", "employeeId": "1234", "date": "2022-06-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP Strategic Accounts UK, Country Lead for France, Middle East, Africa and Israel", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "1235", "date": "2022-05-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "686", "date": "2022-03-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Enterprise Cloud Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "846", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "199", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "715", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "804", "date": "2022-05-23", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "806", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1019", "date": "2022-05-23", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "1043", "date": "2022-05-23", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Angela Zimmerman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "705", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Analyst Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "163", "date": "2022-05-24", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "682", "date": "2022-05-24", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581548}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "903", "date": "2022-05-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Social Media Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "1237", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Marketing Systems and Campaign Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "1238", "date": "2022-07-25", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager for APIs", "reportsTo": "Ian Pollard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "1239", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Director of Talent Acquisition Operations", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "318", "date": "2022-06-01", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Director Finance, EMEA and APAC", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "1240", "date": "2022-06-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Data Science Intern", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1241", "date": "2022-06-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2566", "employeeId": "1242", "date": "2022-06-06", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1243", "date": "2022-06-13", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1244", "date": "2022-07-18", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2569", "employeeId": "245", "date": "2022-05-02", "location": "San Mateo - USA (HQ)", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "852", "date": "2022-06-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Cloud Deal Desk Analyst", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1245", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1246", "date": "2022-07-04", "location": "Remote - Italy", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1247", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Data Science Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1248", "date": "2022-06-13", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "1250", "date": "2022-08-01", "location": "Remote - Italy", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "1251", "date": "2022-07-11", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative, DACH", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "1252", "date": "2022-08-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581549}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "290", "date": "2022-06-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Area Sales Manager", "reportsTo": "Heiko Sch\u00f6nfelder", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1254", "date": "2022-07-05", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2582", "employeeId": "1255", "date": "2022-07-18", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Strategic Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "1256", "date": "2022-06-27", "location": "San Mateo - USA (HQ)", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Customer Advocate", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1258", "date": "2022-07-18", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Partner Sales Engineer - GSI", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "897", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "989", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "808", "date": "2022-06-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1036", "date": "2022-06-01", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2590", "employeeId": "219", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Nathan Zamecnik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "638", "date": "2022-06-06", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Trainer/Curriculum Developer", "reportsTo": "Nathan Zamecnik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1260", "date": "2022-07-25", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2593", "employeeId": "1261", "date": "2022-06-27", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive - LATAM", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1259", "date": "2022-06-15", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Opportunity Discovery Agent", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2595", "employeeId": "1262", "date": "2023-01-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2598", "employeeId": "1264", "date": "2022-07-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2599", "employeeId": "546", "date": "2022-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1265", "date": "2022-07-11", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1266", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581550}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "1267", "date": "2022-07-11", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1268", "date": "2022-08-29", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "832", "date": "2022-06-27", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Richard Koscher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "187", "date": "2022-08-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Program Manager", "reportsTo": "Sumeet Toprani", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "1269", "date": "2022-07-18", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2607", "employeeId": "1270", "date": "2022-08-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1272", "date": "2022-06-28", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Engagement Manager", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "937", "date": "2022-07-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1274", "date": "2022-09-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Manager Channels and Alliances", "reportsTo": "Morten Schlosser", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1275", "date": "2022-07-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Stephen Depaoli", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2612", "employeeId": "952", "date": "2022-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1150", "date": "2022-07-01", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Ramanan Balakrishnan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "1276", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - UK", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1277", "date": "2022-06-30", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1278", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "207", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "888", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "727", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "187", "date": "2022-06-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581551}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "1062", "date": "2022-07-01", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Dirk M\u00f6ller", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "924", "date": "2022-07-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "GDS Sales Specialist", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "382", "date": "2022-07-01", "location": "Remote - Israel", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative, Israel", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "588", "date": "2022-07-01", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Representative France", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "265", "date": "2022-07-01", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "408", "date": "2022-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2628", "employeeId": "1280", "date": "2022-07-05", "location": "Boston - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Dir. of Recruiting, Field Ops & Mkting", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1281", "date": "2022-10-10", "location": "Remote - France", "department": "Legal", "division": "G&A", "jobTitle": "Senior Commercial Counsel EMEA", "reportsTo": "Markus Bollmann", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2630", "employeeId": "1100", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Renewals", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1283", "date": "2022-08-31", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Manager - EMEA", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1284", "date": "2022-10-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - DACH", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "813", "date": "2022-07-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1285", "date": "2022-10-10", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2635", "employeeId": "1266", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "600", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Specialist", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "630", "date": "2022-07-05", "location": "Remote - Canada", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "996", "date": "2022-07-05", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "165", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Global Events and Experiences", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2640", "employeeId": "682", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Creative Director", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581552}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "163", "date": "2022-07-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web User Experience", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "199", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Content", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2643", "employeeId": "846", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "801", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Blake Boris-Schacter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2645", "employeeId": "1004", "date": "2022-07-05", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Global Digital Marketing and Engagement", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "197", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Operations", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "725", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "783", "date": "2022-07-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Lead", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2649", "employeeId": "1286", "date": "2022-07-11", "location": "London - UK", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2650", "employeeId": "1287", "date": "2022-07-11", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "953", "date": "2022-07-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "912", "date": "2022-07-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "1288", "date": "2022-09-06", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1289", "date": "2022-10-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "CRM Data Steward", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1291", "date": "2022-07-18", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior Manager, IT Operations", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1292", "date": "2022-08-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "384", "date": "2022-07-09", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "222", "date": "2022-07-09", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "863", "date": "2022-07-09", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1099", "date": "2022-06-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1293", "date": "2022-08-08", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1294", "date": "2022-08-22", "location": "Remote - Singapore", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1295", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer Federal", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "798", "date": "2021-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, Central", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1296", "date": "2022-08-08", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1297", "date": "2022-08-22", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief of Staff to CEO", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1301", "date": "2022-08-28", "location": "Remote - Israel", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "384", "date": "2022-07-18", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "863", "date": "2022-07-18", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "IT Cloud System Administrator", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1303", "date": "2022-12-01", "location": "Remote - Germany", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Data Science", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1304", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "629", "date": "2022-07-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect Manager, Americas", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "978", "date": "2022-07-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "APAC Head of Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1305", "date": "2022-08-08", "location": "Remote - India", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Tech Community Manager", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "1306", "date": "2022-08-16", "location": "Remote - Spain", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1290", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1298", "date": "2022-09-26", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Alistair Jones", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "1155", "date": "2022-10-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1300", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "1307", "date": "2022-11-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager - Neo4j Database", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "792", "date": "2022-07-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1126", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "736", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director GDS Technology", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "348", "date": "2022-08-01", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Solutions Architect", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1254", "date": "2022-08-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "1308", "date": "2022-09-12", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1309", "date": "2022-05-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jon Bettinger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1310", "date": "2022-08-08", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Belgium", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1271", "date": "2022-08-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1311", "date": "2022-08-22", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1312", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2692", "employeeId": "1313", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2693", "employeeId": "664", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2694", "employeeId": "135", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Operations Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2695", "employeeId": "413", "date": "2022-08-08", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2696", "employeeId": "1176", "date": "2022-08-08", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2697", "employeeId": "1154", "date": "2022-08-08", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2698", "employeeId": "144", "date": "2022-08-08", "location": "San Mateo - USA (HQ)", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sales Compensation Director", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2699", "employeeId": "1314", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2700", "employeeId": "1315", "date": "2022-08-22", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Sefton Owens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2701", "employeeId": "1316", "date": "2022-10-03", "location": "Stockholm - Sweden", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2702", "employeeId": "1317", "date": "2022-09-12", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2703", "employeeId": "1320", "date": "2022-09-19", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Customer Support Engineer - Aura", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2704", "employeeId": "805", "date": "2022-07-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2705", "employeeId": "573", "date": "2022-07-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2706", "employeeId": "845", "date": "2022-07-01", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2707", "employeeId": "399", "date": "2022-07-01", "location": "Remote - Germany", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Team Leader", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2708", "employeeId": "975", "date": "2022-07-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Indirect Sales Director, Greater China, SE Asia and Japan", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2709", "employeeId": "1037", "date": "2022-07-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Channel and Alliances Director", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2710", "employeeId": "984", "date": "2022-07-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Partner Manager", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2711", "employeeId": "1323", "date": "2022-08-29", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Operations Analyst", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2712", "employeeId": "1318", "date": "2022-08-30", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Governance Risk & Compliance Practitioner", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2713", "employeeId": "1324", "date": "2022-08-15", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Specialist", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2714", "employeeId": "1325", "date": "2022-09-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr Product Marketing Manager", "reportsTo": "Megan Tomlin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2715", "employeeId": "1326", "date": "2022-09-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2716", "employeeId": "1327", "date": "2022-08-29", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Lars Nordwall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2717", "employeeId": "1328", "date": "2022-09-19", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Gregory Martinez", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2718", "employeeId": "1329", "date": "2022-09-06", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2719", "employeeId": "1330", "date": "2022-09-07", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2720", "employeeId": "1321", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Operations Analyst", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2721", "employeeId": "1302", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2722", "employeeId": "1299", "date": "2022-09-05", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2723", "employeeId": "1273", "date": "2022-09-26", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2724", "employeeId": "1322", "date": "2022-10-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2725", "employeeId": "1319", "date": "2022-10-25", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2726", "employeeId": "1331", "date": "2022-09-12", "location": "Remote - Brazil", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2727", "employeeId": "1332", "date": "2022-09-01", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2728", "employeeId": "1140", "date": "2022-09-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2729", "employeeId": "1333", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2730", "employeeId": "403", "date": "2022-09-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2731", "employeeId": "1334", "date": "2022-09-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2732", "employeeId": "663", "date": "2022-09-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2733", "employeeId": "1335", "date": "2022-09-12", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Support Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2734", "employeeId": "158", "date": "2022-09-01", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2735", "employeeId": "651", "date": "2022-09-01", "location": "Boston - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2736", "employeeId": "1083", "date": "2022-09-01", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2737", "employeeId": "1275", "date": "2022-09-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Keoni Gaspar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2738", "employeeId": "1336", "date": "2022-09-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2739", "employeeId": "1120", "date": "2022-08-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2740", "employeeId": "946", "date": "2022-08-30", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2741", "employeeId": "702", "date": "2022-08-30", "location": "Remote - Germany", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Dirk Aschoff)", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2742", "employeeId": "832", "date": "2022-08-30", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2743", "employeeId": "1093", "date": "2022-09-08", "location": "Remote - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2744", "employeeId": "412", "date": "2022-11-14", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2745", "employeeId": "1338", "date": "2022-09-19", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2746", "employeeId": "970", "date": "2022-08-30", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2747", "employeeId": "1098", "date": "2022-08-30", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2748", "employeeId": "1134", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2749", "employeeId": "1026", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2750", "employeeId": "1163", "date": "2022-08-30", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Narin\u00e9 Tchintian", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2751", "employeeId": "292", "date": "2022-09-02", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Aura", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2752", "employeeId": "1339", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2753", "employeeId": "1340", "date": "2022-10-03", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2754", "employeeId": "1342", "date": "2022-09-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Administrator", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2755", "employeeId": "1341", "date": "2022-11-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2756", "employeeId": "1343", "date": "2022-10-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Communications", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2757", "employeeId": "767", "date": "2022-10-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Deal Desk Specialist", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2758", "employeeId": "1344", "date": "2022-10-10", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Brandon Richards", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2759", "employeeId": "1345", "date": "2022-09-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christos Gioran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2760", "employeeId": "1346", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Jeremy Bell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2761", "employeeId": "1348", "date": "2022-10-03", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Manager Channel & Alliances LATAM", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2762", "employeeId": "1349", "date": "2022-12-19", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accounts Payable Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2763", "employeeId": "202", "date": "2022-10-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2764", "employeeId": "1244", "date": "2022-10-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2765", "employeeId": "730", "date": "2022-09-26", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2766", "employeeId": "1350", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2767", "employeeId": "1351", "date": "2021-09-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2768", "employeeId": "1352", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2769", "employeeId": "1353", "date": "2022-10-10", "location": "Remote - USA", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2770", "employeeId": "1347", "date": "2022-10-17", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2771", "employeeId": "1080", "date": "2022-10-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2772", "employeeId": "278", "date": "2022-10-01", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2773", "employeeId": "353", "date": "2022-10-01", "location": "Malm\u00f6 - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Relations Community Representative", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2774", "employeeId": "1356", "date": "2022-09-05", "location": "", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2775", "employeeId": "1357", "date": "2022-10-17", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2776", "employeeId": "401", "date": "2022-10-01", "location": "Stockholm - Sweden", "department": "Human Resources", "division": "G&A", "jobTitle": "Senior Manager, Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2777", "employeeId": "1358", "date": "2022-11-07", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Compensation Analyst", "reportsTo": "Daniel Tacchi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2779", "employeeId": "1360", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2781", "employeeId": "606", "date": "2023-01-01", "location": "Remote - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive Nordics", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2782", "employeeId": "157", "date": "2022-10-17", "location": "Boston - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2784", "employeeId": "633", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2785", "employeeId": "616", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2786", "employeeId": "615", "date": "2022-10-07", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2787", "employeeId": "633", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2788", "employeeId": "616", "date": "2022-10-17", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2789", "employeeId": "615", "date": "2022-10-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2790", "employeeId": "1362", "date": "2022-10-31", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2791", "employeeId": "706", "date": "2022-10-17", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2792", "employeeId": "1098", "date": "2022-10-17", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Social Media Manager", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2793", "employeeId": "1360", "date": "2022-10-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2794", "employeeId": "155", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2795", "employeeId": "968", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2796", "employeeId": "1090", "date": "2022-10-07", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2797", "employeeId": "173", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2798", "employeeId": "652", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2799", "employeeId": "791", "date": "2022-10-07", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2800", "employeeId": "1223", "date": "2022-10-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2801", "employeeId": "1073", "date": "2022-10-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2802", "employeeId": "1363", "date": "2022-10-31", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2803", "employeeId": "1243", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2804", "employeeId": "1067", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "Facilities", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2805", "employeeId": "149", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "Facilities", "division": "G&A", "jobTitle": "Equitable Employee Experience & Inclusive Workplace Lead", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2806", "employeeId": "1209", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2807", "employeeId": "778", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2808", "employeeId": "981", "date": "2022-11-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2809", "employeeId": "1353", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2810", "employeeId": "1330", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2811", "employeeId": "1329", "date": "2022-11-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior People Strategy Manager", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2812", "employeeId": "820", "date": "2022-11-01", "location": "Boston - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2813", "employeeId": "1105", "date": "2022-10-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Competitive Intelligence Analyst", "reportsTo": "David Packer", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2814", "employeeId": "930", "date": "2022-11-01", "location": "London - UK", "department": "Facilities", "division": "G&A", "jobTitle": "Office Manager", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2815", "employeeId": "319", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Renee Hall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2816", "employeeId": "116", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People and Business Operations, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2817", "employeeId": "786", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Specialist, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2818", "employeeId": "866", "date": "2022-11-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "Administrator, People, EMEA", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2819", "employeeId": "117", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Director, People - EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2820", "employeeId": "401", "date": "2022-11-01", "location": "Stockholm - Sweden", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2821", "employeeId": "1093", "date": "2022-11-01", "location": "Remote - Sweden", "department": "People", "division": "G&A", "jobTitle": "Senior Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2822", "employeeId": "1364", "date": "2022-11-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2823", "employeeId": "1366", "date": "2022-11-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2824", "employeeId": "1008", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2825", "employeeId": "1005", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2826", "employeeId": "801", "date": "2022-10-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Global Marketing Programs", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2827", "employeeId": "1367", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2828", "employeeId": "1368", "date": "2022-11-28", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2830", "employeeId": "1369", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2831", "employeeId": "1035", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2832", "employeeId": "299", "date": "2022-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2833", "employeeId": "972", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2834", "employeeId": "671", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2835", "employeeId": "366", "date": "2022-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2836", "employeeId": "1370", "date": "2022-01-31", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2837", "employeeId": "1370", "date": "2022-11-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2838", "employeeId": "1371", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2839", "employeeId": "803", "date": "2022-10-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2840", "employeeId": "1355", "date": "2022-11-14", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2841", "employeeId": "979", "date": "2022-11-14", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2842", "employeeId": "1372", "date": "2022-12-12", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Daniel Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2843", "employeeId": "1365", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2844", "employeeId": "1373", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Brand Strategy and Creative", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2845", "employeeId": "1065", "date": "2022-11-07", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2846", "employeeId": "289", "date": "2022-11-07", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2847", "employeeId": "653", "date": "2022-11-07", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2848", "employeeId": "267", "date": "2022-11-07", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2849", "employeeId": "343", "date": "2022-11-07", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2850", "employeeId": "1375", "date": "2022-11-21", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Philip Wardell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2851", "employeeId": "795", "date": "2022-11-07", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2852", "employeeId": "580", "date": "2022-11-07", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2853", "employeeId": "595", "date": "2022-11-07", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2854", "employeeId": "119", "date": "2022-11-07", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2855", "employeeId": "1327", "date": "2022-11-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2856", "employeeId": "1278", "date": "2022-11-07", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2857", "employeeId": "171", "date": "2022-11-07", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2858", "employeeId": "172", "date": "2022-11-07", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2859", "employeeId": "1376", "date": "2023-01-02", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Self Serve DBaaS", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2861", "employeeId": "1361", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2862", "employeeId": "1354", "date": "2023-01-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2863", "employeeId": "1374", "date": "2023-02-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2864", "employeeId": "827", "date": "2022-04-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineering Lead, ASEAN & India", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2865", "employeeId": "1378", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Operations Manager", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2866", "employeeId": "1379", "date": "2023-01-05", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive - Benelux", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2867", "employeeId": "264", "date": "2022-11-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2868", "employeeId": "1381", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Federal Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2869", "employeeId": "587", "date": "2022-12-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2870", "employeeId": "1382", "date": "2023-01-05", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, Graph Data Science", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2871", "employeeId": "369", "date": "2022-11-28", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition, EMEA", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2872", "employeeId": "353", "date": "2022-12-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Platforms & Analytics Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2873", "employeeId": "1383", "date": "2022-12-12", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Dave Dunbar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2874", "employeeId": "812", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2875", "employeeId": "662", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2876", "employeeId": "837", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2877", "employeeId": "1232", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2878", "employeeId": "328", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2879", "employeeId": "392", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2880", "employeeId": "1298", "date": "2022-12-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2881", "employeeId": "1200", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2882", "employeeId": "604", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2883", "employeeId": "1006", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2884", "employeeId": "646", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2885", "employeeId": "909", "date": "2022-12-01", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2886", "employeeId": "1168", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2887", "employeeId": "796", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2888", "employeeId": "368", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2889", "employeeId": "569", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2890", "employeeId": "1341", "date": "2022-12-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2891", "employeeId": "957", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2892", "employeeId": "831", "date": "2022-12-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2893", "employeeId": "1384", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chris Kelley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2894", "employeeId": "1385", "date": "2023-02-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Philip Wardell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2895", "employeeId": "1386", "date": "2023-03-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2896", "employeeId": "1387", "date": "2022-12-19", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "AP Manager", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2897", "employeeId": "1389", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Chief Revenue Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2898", "employeeId": "1388", "date": "2022-12-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineering Consultant", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2899", "employeeId": "1390", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Content & Storytelling", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2900", "employeeId": "1304", "date": "2022-12-10", "location": "Malm\u00f6 - Sweden", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2901", "employeeId": "605", "date": "2022-12-10", "location": "Remote - Germany", "department": "Recruiting", "division": "G&A", "jobTitle": "Technical Recruiter, EMEA", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2902", "employeeId": "1315", "date": "2022-12-10", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Talent Acquisition Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2903", "employeeId": "1391", "date": "2023-02-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2904", "employeeId": "381", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2905", "employeeId": "1392", "date": "2022-12-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Executive Business Partner", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2906", "employeeId": "1393", "date": "2023-01-03", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Deal Desk Analyst", "reportsTo": "Jim Hedin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2907", "employeeId": "1394", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP of Corporate FP&A", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2908", "employeeId": "343", "date": "2022-12-05", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2909", "employeeId": "1065", "date": "2022-12-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP Sales, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2910", "employeeId": "653", "date": "2022-12-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud and Strategic Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2911", "employeeId": "289", "date": "2022-12-05", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2912", "employeeId": "316", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2913", "employeeId": "869", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2914", "employeeId": "373", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2915", "employeeId": "358", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2916", "employeeId": "1128", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2917", "employeeId": "267", "date": "2022-12-05", "location": "Remote - Belgium", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP of Sales, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2918", "employeeId": "795", "date": "2022-12-05", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Sales APAC", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2919", "employeeId": "580", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2920", "employeeId": "595", "date": "2022-12-05", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2921", "employeeId": "119", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Enterprise Sales, Americas", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2922", "employeeId": "1278", "date": "2022-12-05", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, Sales Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2923", "employeeId": "171", "date": "2022-12-05", "location": "Boston - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "VP, WW Services - Customer Success & Support", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2924", "employeeId": "172", "date": "2022-12-05", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering, America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2925", "employeeId": "1395", "date": "2023-01-11", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2927", "employeeId": "1397", "date": "2023-02-09", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2928", "employeeId": "593", "date": "2022-12-10", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Director of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2929", "employeeId": "941", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2930", "employeeId": "691", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2931", "employeeId": "1264", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2932", "employeeId": "1025", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2933", "employeeId": "1327", "date": "2022-12-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, Sales Development", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2934", "employeeId": "1111", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2935", "employeeId": "711", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Web Developer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2936", "employeeId": "708", "date": "2022-12-10", "location": "Remote - Poland", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor (Rafal Janicki)", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2937", "employeeId": "1145", "date": "2022-12-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2938", "employeeId": "1344", "date": "2022-12-07", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2939", "employeeId": "1139", "date": "2022-12-07", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2940", "employeeId": "867", "date": "2022-12-07", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2941", "employeeId": "832", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2942", "employeeId": "946", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2943", "employeeId": "1120", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2944", "employeeId": "1008", "date": "2022-12-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Event Video Producer", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2945", "employeeId": "1080", "date": "2022-12-10", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2946", "employeeId": "353", "date": "2022-12-10", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Platforms & Analytics Manager, Developer Community", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2947", "employeeId": "278", "date": "2022-12-10", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Matthew Allen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2948", "employeeId": "911", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "USA Federal Channel & Alliances Director", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2949", "employeeId": "1068", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Partner Manager", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2950", "employeeId": "1066", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2951", "employeeId": "639", "date": "2023-01-01", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2952", "employeeId": "1033", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2953", "employeeId": "862", "date": "2023-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2954", "employeeId": "336", "date": "2023-01-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Corporate Account Executive - EMEA", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2955", "employeeId": "206", "date": "2022-09-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director of PM, GDS and User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2956", "employeeId": "912", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2957", "employeeId": "1353", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Manager, People Operations", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2958", "employeeId": "1330", "date": "2023-01-03", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2959", "employeeId": "880", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2960", "employeeId": "898", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2961", "employeeId": "877", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2962", "employeeId": "1031", "date": "2022-12-24", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2963", "employeeId": "406", "date": "2023-01-01", "location": "Remote - Italy", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Manager, Italy", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2964", "employeeId": "1062", "date": "2023-01-01", "location": "Remote - Spain", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2965", "employeeId": "879", "date": "2023-01-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager Germany", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2966", "employeeId": "300", "date": "2023-01-01", "location": "Stockholm - Sweden", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales, Nordics", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2968", "employeeId": "1398", "date": "2023-01-09", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2970", "employeeId": "135", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Director, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2971", "employeeId": "1239", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People & Talent Operations", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2972", "employeeId": "1400", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2973", "employeeId": "1068", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Alliances and Channels", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2974", "employeeId": "1401", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2975", "employeeId": "1402", "date": "2023-01-17", "location": "Remote - USA", "department": "Legal", "division": "G&A", "jobTitle": "Legal Operations Manager", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2976", "employeeId": "1403", "date": "2023-01-23", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2977", "employeeId": "865", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2978", "employeeId": "353", "date": "2023-01-14", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2979", "employeeId": "329", "date": "2023-01-14", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2980", "employeeId": "319", "date": "2023-01-09", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2981", "employeeId": "1399", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP Revenue Operations & Strategy", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2982", "employeeId": "587", "date": "2023-01-14", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2983", "employeeId": "1363", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2984", "employeeId": "854", "date": "2023-01-14", "location": "Remote - Belgium", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2985", "employeeId": "887", "date": "2023-01-14", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2986", "employeeId": "694", "date": "2023-01-14", "location": "Remote - Slovenia", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor (Tomaz Bratanic S.P)", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2987", "employeeId": "864", "date": "2023-01-14", "location": "Remote - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Freelancer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2988", "employeeId": "278", "date": "2023-01-14", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2989", "employeeId": "757", "date": "2023-01-14", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2990", "employeeId": "1115", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2991", "employeeId": "143", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2992", "employeeId": "1080", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2993", "employeeId": "192", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2994", "employeeId": "205", "date": "2023-01-14", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Curriculum Developer", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2995", "employeeId": "1022", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2996", "employeeId": "947", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2997", "employeeId": "421", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2998", "employeeId": "335", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2999", "employeeId": "645", "date": "2023-01-16", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3000", "employeeId": "802", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3001", "employeeId": "1367", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3002", "employeeId": "1369", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3003", "employeeId": "839", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3004", "employeeId": "1213", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3005", "employeeId": "943", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3006", "employeeId": "668", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3007", "employeeId": "310", "date": "2023-01-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3008", "employeeId": "362", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3009", "employeeId": "729", "date": "2023-01-16", "location": "Remote - Poland", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3010", "employeeId": "942", "date": "2023-01-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3011", "employeeId": "1243", "date": "2023-01-23", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Catherine Galeza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3012", "employeeId": "936", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Marketing", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3013", "employeeId": "846", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor, Blog", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3014", "employeeId": "806", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Copywriter", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3015", "employeeId": "1019", "date": "2023-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Coordinator", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3016", "employeeId": "804", "date": "2023-01-03", "location": "Remote - Myanmar", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3017", "employeeId": "405", "date": "2023-01-20", "location": "Remote - Spain", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer/ Pre-Sales", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3018", "employeeId": "380", "date": "2023-01-20", "location": "Remote - Israel", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jesus Barrasa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3019", "employeeId": "185", "date": "2023-01-02", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3020", "employeeId": "1241", "date": "2023-01-26", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3021", "employeeId": "1230", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3022", "employeeId": "599", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3023", "employeeId": "1404", "date": "2023-02-13", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Regional Manager", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3024", "employeeId": "1405", "date": "2023-01-30", "location": "Remote - Spain", "department": "", "division": "", "jobTitle": "Test Manager", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3025", "employeeId": "1127", "date": "2023-02-06", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3026", "employeeId": "1150", "date": "2023-02-14", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3027", "employeeId": "952", "date": "2023-02-14", "location": "San Mateo - USA (HQ)", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3028", "employeeId": "190", "date": "2023-02-06", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3029", "employeeId": "1049", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3030", "employeeId": "871", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3031", "employeeId": "150", "date": "2023-02-06", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3032", "employeeId": "177", "date": "2023-02-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3033", "employeeId": "1328", "date": "2023-02-13", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3034", "employeeId": "1176", "date": "2023-02-13", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3035", "employeeId": "413", "date": "2023-02-13", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3036", "employeeId": "1406", "date": "2023-02-22", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sales Development - Strategy and Operations Manager", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3037", "employeeId": "664", "date": "2023-02-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3038", "employeeId": "1154", "date": "2023-02-13", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3039", "employeeId": "774", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3040", "employeeId": "773", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3041", "employeeId": "859", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3042", "employeeId": "1346", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3043", "employeeId": "1181", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3044", "employeeId": "974", "date": "2022-12-07", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3045", "employeeId": "968", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3046", "employeeId": "791", "date": "2022-12-05", "location": "San Mateo - USA (HQ)", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3047", "employeeId": "1223", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3048", "employeeId": "1360", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3049", "employeeId": "1073", "date": "2022-12-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3051", "employeeId": "1090", "date": "2022-12-05", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3052", "employeeId": "1407", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, North America", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3053", "employeeId": "741", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3054", "employeeId": "744", "date": "2023-02-01", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3055", "employeeId": "1102", "date": "2023-02-01", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3056", "employeeId": "1053", "date": "2023-02-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3057", "employeeId": "955", "date": "2023-02-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3058", "employeeId": "983", "date": "2023-02-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3059", "employeeId": "1228", "date": "2023-02-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3060", "employeeId": "343", "date": "2023-02-21", "location": "Stockholm - Sweden", "department": "Analytics", "division": "G&A", "jobTitle": "VP, Global Business Analytics & Sales Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3061", "employeeId": "1176", "date": "2023-02-21", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Deal Desk Manager", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3062", "employeeId": "1328", "date": "2023-02-21", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Manager for Sales Operations, EMEA", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3063", "employeeId": "413", "date": "2023-02-21", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Customer Success Platform Ops Mgr", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3064", "employeeId": "1409", "date": "2023-02-06", "location": "Remote - Brazil", "department": "", "division": "", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3065", "employeeId": "1410", "date": "2023-02-06", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3066", "employeeId": "1411", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3067", "employeeId": "1269", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3068", "employeeId": "191", "date": "2023-01-23", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3069", "employeeId": "1412", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3070", "employeeId": "1413", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3071", "employeeId": "1414", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3072", "employeeId": "1415", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3073", "employeeId": "1416", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3074", "employeeId": "1408", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3075", "employeeId": "1417", "date": "2023-05-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3076", "employeeId": "1418", "date": "2023-03-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director for Public Relations", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3077", "employeeId": "1419", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3078", "employeeId": "1420", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3079", "employeeId": "1421", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3080", "employeeId": "1422", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3081", "employeeId": "1207", "date": "2023-02-21", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3083", "employeeId": "871", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Latin America", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3084", "employeeId": "190", "date": "2023-02-13", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3085", "employeeId": "150", "date": "2023-02-13", "location": "Boston - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3086", "employeeId": "1049", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Federal Enterprise Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3087", "employeeId": "177", "date": "2023-02-13", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, US Central", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3088", "employeeId": "716", "date": "2023-02-20", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3089", "employeeId": "1000", "date": "2023-02-20", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Architect", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3090", "employeeId": "664", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, CRM", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3091", "employeeId": "1154", "date": "2023-02-21", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Global Sr. Sales Compensation Manager", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3092", "employeeId": "1424", "date": "2023-03-06", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3093", "employeeId": "1425", "date": "2023-04-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Chief Product Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3094", "employeeId": "688", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3095", "employeeId": "1254", "date": "2023-02-24", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3096", "employeeId": "985", "date": "2023-02-24", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3097", "employeeId": "907", "date": "2023-06-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3098", "employeeId": "1165", "date": "2023-06-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3099", "employeeId": "1426", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3100", "employeeId": "1427", "date": "2023-06-16", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3101", "employeeId": "1428", "date": "2023-01-30", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3102", "employeeId": "1429", "date": "2023-02-13", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3103", "employeeId": "1430", "date": "2023-03-20", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3104", "employeeId": "706", "date": "2023-03-07", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Communications Associate", "reportsTo": "Caroline De Souza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3105", "employeeId": "1431", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3106", "employeeId": "1432", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3107", "employeeId": "1433", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3108", "employeeId": "1434", "date": "2023-02-13", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3109", "employeeId": "1435", "date": "2022-04-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3110", "employeeId": "1436", "date": "2022-09-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3111", "employeeId": "1437", "date": "2022-08-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3112", "employeeId": "1438", "date": "2023-02-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Engineer", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3113", "employeeId": "1439", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3114", "employeeId": "1440", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3115", "employeeId": "1441", "date": "2022-06-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3116", "employeeId": "1442", "date": "2022-10-01", "location": "", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3117", "employeeId": "1175", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Talent Operations Specialist", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3119", "employeeId": "1005", "date": "2023-03-13", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Corporate Events Manager", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3120", "employeeId": "1098", "date": "2023-01-01", "location": "Remote - Argentina", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Social Media Manager", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3121", "employeeId": "771", "date": "2023-03-16", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Partner Sales Engineer", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3122", "employeeId": "1295", "date": "2023-04-03", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales-Engineer Federal", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3123", "employeeId": "1443", "date": "2023-03-27", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Automation Associate", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3124", "employeeId": "803", "date": "2023-03-27", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3125", "employeeId": "1444", "date": "2023-04-11", "location": "Remote - France", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3126", "employeeId": "1445", "date": "2023-03-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Analyst Relations", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3127", "employeeId": "1446", "date": "2023-03-27", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Yolande Poirier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3128", "employeeId": "1149", "date": "2023-01-01", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3129", "employeeId": "1002", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3130", "employeeId": "1178", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3131", "employeeId": "1397", "date": "2023-03-20", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3132", "employeeId": "771", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Partner Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3133", "employeeId": "1258", "date": "2023-03-20", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3134", "employeeId": "1007", "date": "2023-03-20", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3135", "employeeId": "1308", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3136", "employeeId": "1160", "date": "2023-03-20", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3139", "employeeId": "117", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3140", "employeeId": "786", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "People Operations Specialist", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3141", "employeeId": "384", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "Manager, IT Operations", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3142", "employeeId": "1335", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3143", "employeeId": "981", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3144", "employeeId": "1329", "date": "2023-01-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3145", "employeeId": "958", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Regional Director, Customer Success", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3146", "employeeId": "1205", "date": "2023-01-01", "location": "Remote - The Netherlands", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Partner Architect", "reportsTo": "Ben Lackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3147", "employeeId": "695", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3148", "employeeId": "1048", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3149", "employeeId": "1092", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3150", "employeeId": "1350", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3151", "employeeId": "126", "date": "2023-01-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3152", "employeeId": "195", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3153", "employeeId": "685", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Regional Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3154", "employeeId": "636", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3155", "employeeId": "227", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3156", "employeeId": "1053", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3157", "employeeId": "1255", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3158", "employeeId": "1340", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3159", "employeeId": "727", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3160", "employeeId": "980", "date": "2023-01-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, EMEA South", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3161", "employeeId": "147", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3162", "employeeId": "164", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3163", "employeeId": "983", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3164", "employeeId": "1228", "date": "2023-01-01", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3165", "employeeId": "714", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3166", "employeeId": "794", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3167", "employeeId": "938", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3168", "employeeId": "955", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3169", "employeeId": "1156", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3170", "employeeId": "252", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3171", "employeeId": "723", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Information Technology", "division": "G&A", "jobTitle": "IT Engineer", "reportsTo": "David Bergquist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3172", "employeeId": "1063", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3173", "employeeId": "659", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Security Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3174", "employeeId": "816", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3175", "employeeId": "141", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3176", "employeeId": "1247", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3177", "employeeId": "755", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Voutila", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3178", "employeeId": "393", "date": "2023-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3179", "employeeId": "977", "date": "2023-01-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3180", "employeeId": "827", "date": "2023-01-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3181", "employeeId": "611", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3182", "employeeId": "728", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3183", "employeeId": "317", "date": "2023-01-01", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3184", "employeeId": "648", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3185", "employeeId": "575", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3186", "employeeId": "533", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3187", "employeeId": "735", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3188", "employeeId": "1201", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Fredrik Clementson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3189", "employeeId": "1074", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP Customer Success, EMEA/APAC", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3190", "employeeId": "619", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services - Americas", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3191", "employeeId": "716", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Gopal Nagarajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3192", "employeeId": "872", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3193", "employeeId": "1095", "date": "2023-01-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3194", "employeeId": "828", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Principal Research Engineer", "reportsTo": "James Webber", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3195", "employeeId": "707", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3196", "employeeId": "916", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3197", "employeeId": "1270", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3198", "employeeId": "603", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3199", "employeeId": "625", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Team Lead", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3200", "employeeId": "363", "date": "2023-01-01", "location": "Leipzig - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3201", "employeeId": "830", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3202", "employeeId": "973", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3203", "employeeId": "1185", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3204", "employeeId": "116", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People Strategy and Business Operations", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3205", "employeeId": "866", "date": "2023-01-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Generalist", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3206", "employeeId": "297", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3207", "employeeId": "748", "date": "2023-01-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3208", "employeeId": "847", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3209", "employeeId": "836", "date": "2023-01-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3210", "employeeId": "192", "date": "2023-01-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3211", "employeeId": "353", "date": "2023-01-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3212", "employeeId": "329", "date": "2023-01-01", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3213", "employeeId": "698", "date": "2023-01-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Development Rep - France", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3214", "employeeId": "401", "date": "2023-01-01", "location": "Stockholm - Sweden", "department": "People", "division": "G&A", "jobTitle": "Principal Global Compensation", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3215", "employeeId": "878", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3216", "employeeId": "798", "date": "2023-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Nitin Sharma", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3217", "employeeId": "939", "date": "2023-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3218", "employeeId": "1041", "date": "2023-01-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3219", "employeeId": "926", "date": "2023-01-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for DX", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3220", "employeeId": "206", "date": "2023-01-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, GDS & User Tools", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3221", "employeeId": "352", "date": "2023-01-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, Neo4j Database", "reportsTo": "Philip Rathle", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3222", "employeeId": "884", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3223", "employeeId": "340", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3224", "employeeId": "870", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3225", "employeeId": "1122", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3226", "employeeId": "1320", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3227", "employeeId": "744", "date": "2023-01-01", "location": "Remote - Canada", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3228", "employeeId": "929", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3229", "employeeId": "1102", "date": "2023-01-01", "location": "Boston - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3230", "employeeId": "1076", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3231", "employeeId": "1124", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3232", "employeeId": "739", "date": "2023-01-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3233", "employeeId": "622", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Data Science Director", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3234", "employeeId": "940", "date": "2023-01-01", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3235", "employeeId": "357", "date": "2023-01-01", "location": "Remote - Belgium", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services EMEA", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3236", "employeeId": "295", "date": "2023-01-01", "location": "London - UK", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "RVP, Sales Engineering", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3237", "employeeId": "184", "date": "2023-01-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3238", "employeeId": "792", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3239", "employeeId": "1222", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3240", "employeeId": "629", "date": "2023-01-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success Architects", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3241", "employeeId": "985", "date": "2023-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Wen Yao", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3242", "employeeId": "637", "date": "2023-01-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Manager, Corporate Renewals", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3243", "employeeId": "322", "date": "2023-01-01", "location": "London - UK", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Senior Manager, EMEA Renewals", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3244", "employeeId": "1448", "date": "2023-04-17", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3245", "employeeId": "1449", "date": "2023-04-10", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Nikunj Vora", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3247", "employeeId": "302", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3248", "employeeId": "361", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3249", "employeeId": "408", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3250", "employeeId": "648", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3251", "employeeId": "875", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3252", "employeeId": "1012", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3253", "employeeId": "337", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3254", "employeeId": "728", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3255", "employeeId": "1133", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3256", "employeeId": "914", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3257", "employeeId": "280", "date": "2023-04-03", "location": "Remote - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3258", "employeeId": "293", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3259", "employeeId": "365", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3260", "employeeId": "347", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3261", "employeeId": "366", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3262", "employeeId": "383", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3263", "employeeId": "395", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3264", "employeeId": "412", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3265", "employeeId": "575", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3266", "employeeId": "961", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3267", "employeeId": "1201", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3268", "employeeId": "1203", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3269", "employeeId": "927", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3270", "employeeId": "316", "date": "2023-04-03", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3271", "employeeId": "358", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3272", "employeeId": "869", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3273", "employeeId": "1333", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3274", "employeeId": "1352", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3275", "employeeId": "1128", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3276", "employeeId": "373", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3277", "employeeId": "972", "date": "2023-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3278", "employeeId": "1035", "date": "2023-04-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3279", "employeeId": "299", "date": "2023-04-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3280", "employeeId": "1079", "date": "2023-04-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3281", "employeeId": "1054", "date": "2023-04-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Technical Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3282", "employeeId": "311", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3283", "employeeId": "385", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3284", "employeeId": "398", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3285", "employeeId": "533", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3286", "employeeId": "570", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3287", "employeeId": "710", "date": "2023-04-03", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3288", "employeeId": "735", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3289", "employeeId": "893", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3290", "employeeId": "944", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3291", "employeeId": "1355", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3292", "employeeId": "410", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3293", "employeeId": "848", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3294", "employeeId": "891", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3295", "employeeId": "298", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3296", "employeeId": "602", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3297", "employeeId": "677", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3298", "employeeId": "679", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3299", "employeeId": "712", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3300", "employeeId": "747", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3301", "employeeId": "856", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3302", "employeeId": "881", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3303", "employeeId": "912", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3304", "employeeId": "1155", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3305", "employeeId": "1089", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3306", "employeeId": "1451", "date": "2023-04-17", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Philip Stott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3307", "employeeId": "669", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3308", "employeeId": "926", "date": "2023-04-03", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead PM for DX", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3309", "employeeId": "371", "date": "2023-04-03", "location": "Remote - The Netherlands", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Contractor and Language Standards Advisor", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3310", "employeeId": "1086", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3311", "employeeId": "206", "date": "2023-04-03", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, GDS & User Tools", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3312", "employeeId": "352", "date": "2023-04-03", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP of PM, Neo4j Database", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3313", "employeeId": "121", "date": "2023-04-03", "location": "San Mateo - USA (HQ)", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3314", "employeeId": "786", "date": "2023-05-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "Manager, People Operations", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3315", "employeeId": "866", "date": "2023-05-01", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Strategy Partner", "reportsTo": "Lotta Almryd", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3316", "employeeId": "872", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3317", "employeeId": "1299", "date": "2023-04-03", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3318", "employeeId": "396", "date": "2023-04-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3319", "employeeId": "1243", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3320", "employeeId": "1132", "date": "2023-05-30", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3321", "employeeId": "755", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3322", "employeeId": "1338", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3323", "employeeId": "889", "date": "2023-04-20", "location": "Boston - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3324", "employeeId": "599", "date": "2023-04-20", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3325", "employeeId": "1452", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Designer Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3326", "employeeId": "1453", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Independent Contractor, Corporate Storytelling & Content", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3327", "employeeId": "1454", "date": "2023-04-04", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3328", "employeeId": "1455", "date": "2023-04-04", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3329", "employeeId": "700", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3330", "employeeId": "152", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "David Mohr", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3331", "employeeId": "372", "date": "2023-04-11", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3332", "employeeId": "1456", "date": "2023-04-24", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3333", "employeeId": "725", "date": "2023-05-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3334", "employeeId": "1457", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer Intern", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3335", "employeeId": "986", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "Arvind Ramachandran", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3336", "employeeId": "312", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "CSA Director - EMEA", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3337", "employeeId": "1306", "date": "2023-05-01", "location": "Remote - Spain", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3338", "employeeId": "1277", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager", "reportsTo": "David Stevens", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3339", "employeeId": "1328", "date": "2023-05-01", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Sales Operations EMEA & APAC", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3340", "employeeId": "992", "date": "2023-05-01", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3341", "employeeId": "1358", "date": "2023-04-24", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Compensation Analyst", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3342", "employeeId": "1458", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Managing Editor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3343", "employeeId": "1074", "date": "2023-05-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP Customer Success, EMEA/APAC", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3344", "employeeId": "1303", "date": "2023-05-01", "location": "Remote - Germany", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect - Data Science", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3345", "employeeId": "580", "date": "2023-05-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals, Customer Success, & Education", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3346", "employeeId": "172", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3347", "employeeId": "1408", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3348", "employeeId": "1040", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "VP, Global Customer Support", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3349", "employeeId": "1230", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Director, Education Services", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3350", "employeeId": "1045", "date": "2023-05-01", "location": "San Mateo - USA (HQ)", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success, Americas", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3351", "employeeId": "889", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3352", "employeeId": "599", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3353", "employeeId": "619", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "RVP, Professional Services - Americas", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3354", "employeeId": "963", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Data Scientist", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3355", "employeeId": "146", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Principal Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3356", "employeeId": "819", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3357", "employeeId": "1114", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3358", "employeeId": "629", "date": "2023-05-01", "location": "Remote - Canada", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success Architects", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3359", "employeeId": "1448", "date": "2023-05-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3360", "employeeId": "1211", "date": "2023-05-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Fanghua Yu", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3361", "employeeId": "1459", "date": "2023-05-03", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3362", "employeeId": "1460", "date": "2023-06-05", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Samuel Chaplin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3363", "employeeId": "1461", "date": "2023-06-05", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Intern", "reportsTo": "Thao Duong", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3364", "employeeId": "1358", "date": "2023-05-01", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Compensation", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3365", "employeeId": "1462", "date": "2023-07-17", "location": "London - UK", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "EMEA Region Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3366", "employeeId": "1000", "date": "2023-05-01", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3367", "employeeId": "663", "date": "2023-05-10", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3368", "employeeId": "1463", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "VP, Developer Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3369", "employeeId": "1366", "date": "2023-05-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3370", "employeeId": "1384", "date": "2023-05-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3371", "employeeId": "1083", "date": "2023-05-10", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3372", "employeeId": "1464", "date": "2023-08-21", "location": "Malm\u00f6 - Sweden", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Accountant", "reportsTo": "Sara Nilsson Sch\u00f6nfeldt", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3373", "employeeId": "1465", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Events Program Coordinator", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3374", "employeeId": "1222", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3375", "employeeId": "792", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3376", "employeeId": "1210", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Intern", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3377", "employeeId": "1288", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3378", "employeeId": "1220", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Principal Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3379", "employeeId": "1147", "date": "2023-05-15", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3380", "employeeId": "1466", "date": "2023-05-29", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Designer", "reportsTo": "Vallyn Murphy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3381", "employeeId": "1467", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "VP, SDR", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3382", "employeeId": "1468", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3383", "employeeId": "1469", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3384", "employeeId": "1470", "date": "2023-05-22", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3386", "employeeId": "718", "date": "2023-06-01", "location": "Malm\u00f6 - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Global Client Services Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3387", "employeeId": "359", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director of Analytics", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3388", "employeeId": "1472", "date": "2023-06-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3389", "employeeId": "1248", "date": "2023-06-27", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Office Coordinator", "reportsTo": "Caroline Tinz", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3390", "employeeId": "1473", "date": "2023-06-05", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3391", "employeeId": "1474", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3392", "employeeId": "814", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Senior Analyst", "reportsTo": "Arvid \u00c5sbrink", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3393", "employeeId": "806", "date": "2023-06-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Content Strategist", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3394", "employeeId": "1475", "date": "2023-06-05", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Revenue Enablement", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3395", "employeeId": "663", "date": "2023-06-05", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager EMEA", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3396", "employeeId": "1476", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3397", "employeeId": "1477", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3398", "employeeId": "1478", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3399", "employeeId": "757", "date": "2023-05-29", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3402", "employeeId": "329", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3403", "employeeId": "887", "date": "2023-05-29", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3404", "employeeId": "278", "date": "2023-05-29", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3405", "employeeId": "353", "date": "2023-05-29", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3407", "employeeId": "293", "date": "2023-08-15", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3408", "employeeId": "1479", "date": "2023-09-04", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "People Operations Administrator", "reportsTo": "Nicole Fridvall", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3409", "employeeId": "1471", "date": "2023-06-26", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager, Neo4j Workspace", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3410", "employeeId": "1480", "date": "2023-07-03", "location": "London - UK", "department": "Legal", "division": "G&A", "jobTitle": "Senior Manager, License Compliance Services", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3411", "employeeId": "1481", "date": "2023-05-19", "location": "London - UK", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3412", "employeeId": "1482", "date": "2021-08-02", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3413", "employeeId": "1483", "date": "2023-04-06", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3414", "employeeId": "1484", "date": "2023-03-13", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3415", "employeeId": "1485", "date": "2021-08-02", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3416", "employeeId": "1486", "date": "2023-05-26", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3417", "employeeId": "266", "date": "2022-03-01", "location": "Munich - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3418", "employeeId": "1487", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3419", "employeeId": "1488", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3420", "employeeId": "1489", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3421", "employeeId": "1490", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3422", "employeeId": "1491", "date": "2020-06-22", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3423", "employeeId": "1492", "date": "2022-05-31", "location": "", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3424", "employeeId": "1493", "date": "2022-03-21", "location": "Remote - France", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3425", "employeeId": "1494", "date": "2022-02-01", "location": "Remote - France", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3426", "employeeId": "1495", "date": "2022-09-28", "location": "London - UK", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3427", "employeeId": "413", "date": "2023-06-01", "location": "London - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Resource Manager, Professional Services", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3428", "employeeId": "1496", "date": "2023-05-26", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3429", "employeeId": "1363", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "G&A", "jobTitle": "Data Science Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3430", "employeeId": "1115", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Python Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3431", "employeeId": "1080", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3432", "employeeId": "192", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3433", "employeeId": "143", "date": "2023-05-29", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3435", "employeeId": "1497", "date": "2023-06-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Director, Sales Operations", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3436", "employeeId": "1093", "date": "2023-06-01", "location": "Remote - Sweden", "department": "People", "division": "G&A", "jobTitle": "Principal Legal Counsel, Employment Law, EMEA", "reportsTo": "Michaela Johansson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3437", "employeeId": "1210", "date": "2023-06-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Program Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3438", "employeeId": "1498", "date": "2023-06-14", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3439", "employeeId": "1499", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3440", "employeeId": "1500", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3441", "employeeId": "1501", "date": "2023-05-17", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3442", "employeeId": "1502", "date": "2023-05-08", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Paula Pimentel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3443", "employeeId": "1503", "date": "2023-06-19", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Technical Curriculum Developer", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3444", "employeeId": "587", "date": "2023-05-29", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3445", "employeeId": "645", "date": "2023-06-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3446", "employeeId": "740", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3447", "employeeId": "1504", "date": "2023-07-10", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Commissions Analyst", "reportsTo": "Sofiya Zaleeva", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3448", "employeeId": "1366", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director, Sales Development", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3449", "employeeId": "1384", "date": "2023-06-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3450", "employeeId": "1083", "date": "2023-06-05", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3451", "employeeId": "1505", "date": "2023-04-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Shay Egan-Malagisi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3452", "employeeId": "1004", "date": "2023-07-01", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Principal, Digital Marketing", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3453", "employeeId": "1506", "date": "2023-06-26", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Production Support Admin", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3454", "employeeId": "1507", "date": "2023-07-05", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Alex Filomeno", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3455", "employeeId": "1508", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3457", "employeeId": "1510", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3458", "employeeId": "1511", "date": "2023-06-20", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3459", "employeeId": "1512", "date": "2023-06-21", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Nadia Gainsbourg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3460", "employeeId": "1513", "date": "2023-06-07", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3461", "employeeId": "1514", "date": "2023-10-02", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Country Manager - France", "reportsTo": "Sam Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3462", "employeeId": "796", "date": "2023-06-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3463", "employeeId": "893", "date": "2023-06-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3464", "employeeId": "1515", "date": "2023-07-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Benefits Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3465", "employeeId": "1516", "date": "2023-06-27", "location": "", "department": "", "division": "", "jobTitle": "", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3467", "employeeId": "1258", "date": "2023-01-01", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3468", "employeeId": "580", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "VP, Global Renewals", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3469", "employeeId": "150", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3470", "employeeId": "1102", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3471", "employeeId": "639", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3472", "employeeId": "595", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Indirect Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3473", "employeeId": "820", "date": "2023-05-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3474", "employeeId": "157", "date": "2023-05-01", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Renewals Team Manager - NA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3475", "employeeId": "1280", "date": "2023-10-01", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Director, Talent Acquisition - Global GTM & G&A", "reportsTo": "Samantha Byrnes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3476", "employeeId": "1107", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3477", "employeeId": "235", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3478", "employeeId": "1116", "date": "2023-05-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Accounting Manager", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3479", "employeeId": "1044", "date": "2023-05-01", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "VP, Global Talent", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3480", "employeeId": "1016", "date": "2023-05-01", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Sr. Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3481", "employeeId": "212", "date": "2023-05-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Director, Cloud Programs", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3482", "employeeId": "669", "date": "2023-04-17", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3483", "employeeId": "1086", "date": "2023-04-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP of Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3484", "employeeId": "121", "date": "2023-04-17", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3485", "employeeId": "1150", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3486", "employeeId": "952", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3487", "employeeId": "190", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3488", "employeeId": "981", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3489", "employeeId": "164", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3490", "employeeId": "1350", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3491", "employeeId": "1335", "date": "2023-04-17", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Sr. IT Engineer", "reportsTo": "Adam Flagg", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3492", "employeeId": "688", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3493", "employeeId": "184", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3494", "employeeId": "195", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3495", "employeeId": "816", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3496", "employeeId": "968", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3497", "employeeId": "791", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3498", "employeeId": "946", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Digital Graphic Design Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3499", "employeeId": "832", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Associate Art Director", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3500", "employeeId": "1209", "date": "2023-04-17", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Executive Business Partner", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3501", "employeeId": "616", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3502", "employeeId": "633", "date": "2023-04-17", "location": "Remote - USA", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Enterprise Renewals Manager", "reportsTo": "Candace Shin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3503", "employeeId": "1291", "date": "2023-04-17", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior Manager, IT Operations", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3504", "employeeId": "1099", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Cloud Sales Specialist - Americas", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3505", "employeeId": "1158", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP of Marketing Operations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3506", "employeeId": "1119", "date": "2023-04-17", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3507", "employeeId": "1117", "date": "2023-04-17", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3508", "employeeId": "738", "date": "2023-04-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager, Analytics", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3509", "employeeId": "843", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Accounts Receivable Specialist", "reportsTo": "Jacqueline Goff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3510", "employeeId": "1085", "date": "2023-04-17", "location": "Remote - USA", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "North America Cloud Channel Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3511", "employeeId": "818", "date": "2023-04-17", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Will Kuffel", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3512", "employeeId": "499", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Viksit Puri", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3513", "employeeId": "159", "date": "2023-04-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3514", "employeeId": "127", "date": "2023-04-17", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Sales Engineering", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3515", "employeeId": "969", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3516", "employeeId": "590", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3517", "employeeId": "136", "date": "2023-04-17", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Architect", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3518", "employeeId": "124", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Corporate Controller", "reportsTo": "Kelly Zawalski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3519", "employeeId": "114", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "VP, Finance & Administration", "reportsTo": "Michael Asher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3520", "employeeId": "208", "date": "2023-04-17", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3521", "employeeId": "1518", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3522", "employeeId": "939", "date": "2023-07-01", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3523", "employeeId": "590", "date": "2023-07-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Senior Revenue Accountant", "reportsTo": "Patricia Calalang", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3524", "employeeId": "669", "date": "2023-07-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Consultant", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3526", "employeeId": "1520", "date": "2023-07-06", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3527", "employeeId": "116", "date": "2023-07-01", "location": "Malm\u00f6 - Sweden", "department": "People", "division": "G&A", "jobTitle": "VP, People Strategy & Business Operations - Product and Engineering Worldwide", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3528", "employeeId": "1521", "date": "2023-08-01", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Sr. Financial Analyst", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3529", "employeeId": "820", "date": "2023-07-01", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Director, People Strategy - GTM and G&A Worldwide", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3530", "employeeId": "914", "date": "2023-07-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3531", "employeeId": "1522", "date": "2023-08-07", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Sr. Director, Global Total Rewards", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3532", "employeeId": "1523", "date": "2023-07-13", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3533", "employeeId": "1150", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager of Product Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3534", "employeeId": "952", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Product Marketing Manager, Neo4j UserTools", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3535", "employeeId": "1025", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Graph Data Science Product Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3536", "employeeId": "1264", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Graph Database Product Specialist", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3537", "employeeId": "941", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Data Science Product Specialist", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3538", "employeeId": "691", "date": "2023-07-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technology Partner Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3539", "employeeId": "1036", "date": "2023-06-30", "location": "Remote - Australia", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3540", "employeeId": "1317", "date": "2023-06-30", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3541", "employeeId": "1293", "date": "2023-06-30", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3542", "employeeId": "801", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Corporate Events", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3543", "employeeId": "1245", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Marketing Strategy and Operations", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3544", "employeeId": "711", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Web Operations and Development", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3545", "employeeId": "1460", "date": "2023-07-15", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3546", "employeeId": "1524", "date": "2023-07-31", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3547", "employeeId": "1525", "date": "2023-07-31", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3548", "employeeId": "1216", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3549", "employeeId": "1406", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sales Development - Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3550", "employeeId": "1005", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Corporate Events Manager", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3551", "employeeId": "1385", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3552", "employeeId": "1375", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3553", "employeeId": "1111", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3554", "employeeId": "1145", "date": "2023-07-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3555", "employeeId": "1389", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "Sales & Marketing", "jobTitle": "Chief Revenue Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3556", "employeeId": "261", "date": "2023-07-18", "location": "London - UK", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Scientist", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3557", "employeeId": "273", "date": "2023-07-18", "location": "Malm\u00f6 - Sweden", "department": "E-Staff", "division": "R&D", "jobTitle": "SVP Engineering", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3558", "employeeId": "778", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief People Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3559", "employeeId": "121", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Technology Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3560", "employeeId": "1117", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "Sales & Marketing", "jobTitle": "Chief Marketing Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3561", "employeeId": "1425", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "R&D", "jobTitle": "Chief Product Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3562", "employeeId": "208", "date": "2023-07-18", "location": "Remote - USA", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief Financial Officer", "reportsTo": "Emil Eifr\u00e9m", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3563", "employeeId": "1526", "date": "2023-07-24", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3564", "employeeId": "263", "date": "2023-07-18", "location": "Malm\u00f6 - Sweden", "department": "E-Staff", "division": "G&A", "jobTitle": "Chief Executive Officer", "reportsTo": "", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3565", "employeeId": "202", "date": "2023-08-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Field Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3566", "employeeId": "1527", "date": "2023-07-31", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3567", "employeeId": "1528", "date": "2023-08-28", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3568", "employeeId": "1529", "date": "2023-08-01", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3569", "employeeId": "1530", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3570", "employeeId": "1531", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3571", "employeeId": "1532", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3572", "employeeId": "1533", "date": "2023-07-31", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Michael Moore", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3573", "employeeId": "1534", "date": "2023-08-28", "location": "Remote - Indonesia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3574", "employeeId": "1535", "date": "2023-08-28", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3575", "employeeId": "1536", "date": "2023-08-21", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Federal Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3577", "employeeId": "1315", "date": "2023-08-07", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "People Systems + Analytics Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3578", "employeeId": "1538", "date": "2023-08-07", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3579", "employeeId": "1484", "date": "2023-08-02", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3580", "employeeId": "1486", "date": "2023-08-02", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3581", "employeeId": "1382", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3582", "employeeId": "760", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3583", "employeeId": "1014", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3584", "employeeId": "876", "date": "2023-08-01", "location": "Remote - Canada", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3585", "employeeId": "1471", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3586", "employeeId": "658", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3587", "employeeId": "1307", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3588", "employeeId": "650", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3589", "employeeId": "834", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3590", "employeeId": "409", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3591", "employeeId": "1079", "date": "2023-08-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3592", "employeeId": "738", "date": "2023-08-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3593", "employeeId": "1376", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3594", "employeeId": "1229", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3595", "employeeId": "926", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3596", "employeeId": "1238", "date": "2023-08-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ian Pollard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3597", "employeeId": "1539", "date": "2023-08-14", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Business Intelligence Data Engineer", "reportsTo": "Arvid \u00c5sbrink", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3598", "employeeId": "583", "date": "2023-08-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Data Engineer", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3599", "employeeId": "1540", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3600", "employeeId": "1541", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3601", "employeeId": "1542", "date": "2023-08-14", "location": "Remote - Singapore", "department": "Business Development", "division": "Sales & Marketing", "jobTitle": "Channels and Alliances Lead", "reportsTo": "Yeow Hong Ng", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3602", "employeeId": "1543", "date": "2023-08-14", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Program Manager, Global Enablement", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3603", "employeeId": "1544", "date": "2023-08-10", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Amanda Scigaj", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3604", "employeeId": "959", "date": "2023-08-14", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3605", "employeeId": "1545", "date": "2023-09-04", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3606", "employeeId": "1546", "date": "2023-08-28", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Enterprise Sales Executive", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3607", "employeeId": "1457", "date": "2023-08-21", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3608", "employeeId": "1515", "date": "2023-08-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Benefits Coordinator", "reportsTo": "Casey Bananzadeh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3609", "employeeId": "347", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3610", "employeeId": "974", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3611", "employeeId": "773", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3612", "employeeId": "774", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3613", "employeeId": "1346", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3614", "employeeId": "859", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3615", "employeeId": "1507", "date": "2023-08-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3616", "employeeId": "1115", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocacy Manager", "reportsTo": "Isabel Huerga Ayza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3617", "employeeId": "192", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3618", "employeeId": "1363", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Data Science Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3619", "employeeId": "353", "date": "2023-08-21", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3620", "employeeId": "143", "date": "2023-08-21", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3621", "employeeId": "587", "date": "2023-08-21", "location": "Remote - Canada", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Full Stack Developer Relations Engineer", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3622", "employeeId": "757", "date": "2023-08-21", "location": "Stockholm - Sweden", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocate", "reportsTo": "Jason Koo", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3623", "employeeId": "1054", "date": "2023-08-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "David Pond", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3624", "employeeId": "1547", "date": "2023-08-29", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3625", "employeeId": "1548", "date": "2023-08-28", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sales Operations Manager", "reportsTo": "Derek Fletcher", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3626", "employeeId": "990", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Director, Strategy and Innovation", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3627", "employeeId": "1549", "date": "2023-08-24", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Merrilee Parsons", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3628", "employeeId": "1287", "date": "2023-08-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3629", "employeeId": "1550", "date": "2023-08-28", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3630", "employeeId": "400", "date": "2023-08-22", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3631", "employeeId": "706", "date": "2023-08-26", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Communications Associate", "reportsTo": "Caroline De Souza", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3632", "employeeId": "1551", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Web Strategy & Digital Marketing", "reportsTo": "Arjun Kurpad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3633", "employeeId": "1552", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Director of Sales Development", "reportsTo": "Wendy Hankemeier", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3634", "employeeId": "328", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3635", "employeeId": "355", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3636", "employeeId": "403", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3637", "employeeId": "847", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3638", "employeeId": "1285", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3639", "employeeId": "331", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Staff Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3640", "employeeId": "752", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3641", "employeeId": "1061", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3642", "employeeId": "1287", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3643", "employeeId": "674", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3644", "employeeId": "1374", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3645", "employeeId": "836", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3646", "employeeId": "392", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3647", "employeeId": "662", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3648", "employeeId": "1298", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3649", "employeeId": "604", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3650", "employeeId": "1232", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3651", "employeeId": "1006", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3653", "employeeId": "837", "date": "2023-09-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3654", "employeeId": "1200", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3655", "employeeId": "1553", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3656", "employeeId": "926", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Lead Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3657", "employeeId": "834", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3658", "employeeId": "1054", "date": "2023-09-01", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3659", "employeeId": "1229", "date": "2023-09-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3660", "employeeId": "1554", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3661", "employeeId": "262", "date": "2023-09-01", "location": "Remote - Germany", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Head of Product Innovation & Developer Strategy", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3662", "employeeId": "1139", "date": "2023-10-01", "location": "Remote - Indonesia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3663", "employeeId": "867", "date": "2023-10-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3664", "employeeId": "1449", "date": "2023-10-01", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3665", "employeeId": "812", "date": "2023-09-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3666", "employeeId": "159", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3667", "employeeId": "1555", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Senior Technical Support Regional Manager APAC", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3668", "employeeId": "1556", "date": "2023-09-18", "location": "Remote - Brazil", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3669", "employeeId": "364", "date": "2023-09-01", "location": "Remote - USA", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Contractor", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3670", "employeeId": "1385", "date": "2023-10-01", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3671", "employeeId": "1557", "date": "2023-11-13", "location": "London - UK", "department": "People", "division": "G&A", "jobTitle": "Sr. People Strategy Partner", "reportsTo": "Alyssa Stoddard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3672", "employeeId": "1558", "date": "2023-10-16", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3674", "employeeId": "1559", "date": "2023-11-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3675", "employeeId": "830", "date": "2023-09-11", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3677", "employeeId": "1560", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Sales East", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3678", "employeeId": "1561", "date": "2023-11-01", "location": "Remote - The Netherlands", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3679", "employeeId": "942", "date": "2023-10-02", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3680", "employeeId": "1562", "date": "2023-10-09", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3681", "employeeId": "152", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3682", "employeeId": "153", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3683", "employeeId": "160", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3684", "employeeId": "169", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3685", "employeeId": "179", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3686", "employeeId": "214", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3687", "employeeId": "618", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3688", "employeeId": "700", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3689", "employeeId": "860", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Director", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3690", "employeeId": "904", "date": "2023-10-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3691", "employeeId": "774", "date": "2023-09-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Associate Cloud & Alliances Sales Manager", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3692", "employeeId": "711", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Web Operations and Development", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3693", "employeeId": "1111", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Front-End Developer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3694", "employeeId": "1145", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior UX/Visual Designer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3695", "employeeId": "1385", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing AMER", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3696", "employeeId": "1375", "date": "2023-09-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Digital Marketing, Americas", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3697", "employeeId": "1004", "date": "2023-09-11", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Principal, Digital Marketing", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3698", "employeeId": "343", "date": "2023-09-01", "location": "Stockholm - Sweden", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "VP, GTM Strategy & Execution", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3699", "employeeId": "1408", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Cloud Operations", "reportsTo": "Kesavan Nair", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3700", "employeeId": "1457", "date": "2023-09-15", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Associate Consulting Engineer", "reportsTo": "Joseph Abrams", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3701", "employeeId": "1563", "date": "2024-01-02", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3702", "employeeId": "1080", "date": "2023-09-22", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Developer Community", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3703", "employeeId": "1115", "date": "2023-09-22", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Developer Advocacy Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3704", "employeeId": "147", "date": "2023-10-01", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Principal Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3705", "employeeId": "872", "date": "2023-09-27", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3706", "employeeId": "1564", "date": "2023-10-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Visual Designer", "reportsTo": "Vallyn Murphy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3707", "employeeId": "818", "date": "2023-10-01", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Sr. Self-Serve Growth Analyst", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3708", "employeeId": "265", "date": "2023-10-02", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Outside Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3709", "employeeId": "653", "date": "2023-09-01", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, Global Cloud Field Operations", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3710", "employeeId": "1565", "date": "2023-11-01", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3711", "employeeId": "1566", "date": "2023-10-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Brock Alston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3712", "employeeId": "1567", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3713", "employeeId": "1568", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Daniel Terlizzi", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3714", "employeeId": "1569", "date": "2023-10-16", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer - Federal", "reportsTo": "William Ciano, Jr.", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3715", "employeeId": "1570", "date": "2023-10-01", "location": "Remote - Israel", "department": "", "division": "", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3716", "employeeId": "1571", "date": "2023-10-02", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3717", "employeeId": "329", "date": "2023-09-22", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Staff Developer Advocate", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3718", "employeeId": "887", "date": "2023-09-22", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3719", "employeeId": "278", "date": "2023-09-22", "location": "Munich - Germany", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Senior Developer Marketing Manager", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3720", "employeeId": "1503", "date": "2023-09-22", "location": "London - UK", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Technical Curriculum Developer", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3721", "employeeId": "983", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3722", "employeeId": "1076", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3723", "employeeId": "955", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3724", "employeeId": "1124", "date": "2023-10-09", "location": "Remote - India", "department": "Field Engineering - Aura Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3725", "employeeId": "1228", "date": "2023-10-09", "location": "Remote - China", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3726", "employeeId": "656", "date": "2023-10-02", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Pre Sales Engineer, OEM", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3727", "employeeId": "687", "date": "2023-10-09", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3728", "employeeId": "1572", "date": "2021-07-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3729", "employeeId": "1573", "date": "2021-07-14", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Contractor", "reportsTo": "Kristin Cabot", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3730", "employeeId": "1574", "date": "2023-06-08", "location": "", "department": "Legal", "division": "G&A", "jobTitle": "", "reportsTo": "Marc Roualet", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3731", "employeeId": "1575", "date": "2023-10-16", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise/DN Sales Account Executive", "reportsTo": "Laxman Bisht", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3732", "employeeId": "773", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3733", "employeeId": "859", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3734", "employeeId": "1346", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3735", "employeeId": "1507", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3736", "employeeId": "974", "date": "2023-09-25", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Federal Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3737", "employeeId": "1576", "date": "2023-10-30", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3738", "employeeId": "1577", "date": "2023-10-23", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Eric Salinas", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3740", "employeeId": "667", "date": "2023-10-02", "location": "Remote - China", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3741", "employeeId": "1397", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3742", "employeeId": "1011", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3743", "employeeId": "977", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3744", "employeeId": "393", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3745", "employeeId": "1308", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3746", "employeeId": "1211", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3747", "employeeId": "827", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3748", "employeeId": "1448", "date": "2023-10-02", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3749", "employeeId": "627", "date": "2023-10-02", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Architect Engineer", "reportsTo": "Stefan Kolmar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3750", "employeeId": "1578", "date": "2023-11-06", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3751", "employeeId": "1579", "date": "2024-01-02", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consulting Engineer", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3752", "employeeId": "1580", "date": "2023-10-30", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3753", "employeeId": "1581", "date": "2023-10-23", "location": "Remote - Romania", "department": "Renewals", "division": "Sales & Marketing", "jobTitle": "Corporate Renewals Manager", "reportsTo": "Stephen Durrant", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3754", "employeeId": "1582", "date": "2024-02-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3755", "employeeId": "1583", "date": "2023-10-30", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3756", "employeeId": "369", "date": "2023-10-25", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3757", "employeeId": "1584", "date": "2023-11-27", "location": "Remote - India", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3758", "employeeId": "1585", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "VP, Americas Marketing", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3759", "employeeId": "728", "date": "2023-11-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3760", "employeeId": "1586", "date": "2023-10-30", "location": "Remote - APAC", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3761", "employeeId": "1587", "date": "2023-12-04", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3762", "employeeId": "1588", "date": "2023-11-06", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3763", "employeeId": "1372", "date": "2023-10-09", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3764", "employeeId": "954", "date": "2023-10-09", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3765", "employeeId": "1525", "date": "2023-11-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "David Rosenblum", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3766", "employeeId": "889", "date": "2023-11-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Edward Crowther", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3767", "employeeId": "1589", "date": "2023-12-04", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales - France", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3768", "employeeId": "1590", "date": "2023-11-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Jeppe Christensen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3769", "employeeId": "1591", "date": "2023-11-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3770", "employeeId": "1592", "date": "2023-11-13", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3771", "employeeId": "126", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3772", "employeeId": "195", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3773", "employeeId": "688", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3774", "employeeId": "1033", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3775", "employeeId": "1048", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3776", "employeeId": "1092", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3777", "employeeId": "1350", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3778", "employeeId": "1566", "date": "2023-11-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3779", "employeeId": "1593", "date": "2023-10-30", "location": "Remote - Malaysia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3780", "employeeId": "1406", "date": "2023-11-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3781", "employeeId": "177", "date": "2023-11-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional Vice President, Central Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3783", "employeeId": "1356", "date": "2023-10-23", "location": "", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3784", "employeeId": "1352", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3785", "employeeId": "1333", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3786", "employeeId": "373", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3787", "employeeId": "316", "date": "2023-11-06", "location": "Remote - Germany", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3788", "employeeId": "869", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3789", "employeeId": "358", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3790", "employeeId": "1128", "date": "2023-11-06", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "UX Specialist", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3791", "employeeId": "1595", "date": "2023-11-20", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3793", "employeeId": "1109", "date": "2024-01-01", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Head of Field Marketing (Senior Manager) LATAM", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3794", "employeeId": "1008", "date": "2024-01-01", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Video Production Manager", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3795", "employeeId": "1295", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3796", "employeeId": "1421", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3797", "employeeId": "716", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3798", "employeeId": "1422", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3799", "employeeId": "1000", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3800", "employeeId": "1419", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3801", "employeeId": "1414", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3802", "employeeId": "1420", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3803", "employeeId": "1416", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3804", "employeeId": "1413", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3805", "employeeId": "1411", "date": "2023-09-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3806", "employeeId": "1412", "date": "2023-09-01", "location": "Remote - India", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Operations Engineer", "reportsTo": "Sanjay Tikku", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3808", "employeeId": "1597", "date": "2024-01-15", "location": "Remote - The Netherlands", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Pre-Sales Engineer - Benelux and DACH", "reportsTo": "Ralph Pawlik", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3809", "employeeId": "1598", "date": "2023-11-20", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3810", "employeeId": "1599", "date": "2023-11-24", "location": "Remote - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3811", "employeeId": "1600", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Partner Marketing", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3814", "employeeId": "791", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3815", "employeeId": "1223", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3816", "employeeId": "1073", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3817", "employeeId": "1577", "date": "2023-11-10", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3818", "employeeId": "1601", "date": "2024-01-15", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3819", "employeeId": "1602", "date": "2023-11-20", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3820", "employeeId": "1604", "date": "2023-11-13", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3821", "employeeId": "1603", "date": "2023-11-13", "location": "Remote - UK", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3822", "employeeId": "1605", "date": "2024-01-15", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3823", "employeeId": "1606", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Regional VP, Sales, West", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3824", "employeeId": "1607", "date": "2024-01-08", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Director Product Operations", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3825", "employeeId": "1608", "date": "2024-01-08", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Strategic Account Executive, West", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3826", "employeeId": "1609", "date": "2024-01-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3827", "employeeId": "1610", "date": "2023-11-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Associate Customer Success Manager", "reportsTo": "Christopher Sisti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3828", "employeeId": "1611", "date": "2023-11-16", "location": "Remote - USA", "department": "Information Technology", "division": "G&A", "jobTitle": "Senior SaaS Procurement Manager", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3829", "employeeId": "1612", "date": "2023-12-04", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3830", "employeeId": "636", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3831", "employeeId": "1076", "date": "2023-11-16", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3832", "employeeId": "1124", "date": "2023-11-16", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Anand Kumar", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3833", "employeeId": "741", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3834", "employeeId": "1102", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3835", "employeeId": "744", "date": "2023-11-16", "location": "Remote - Canada", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3836", "employeeId": "1053", "date": "2023-11-16", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Operations Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3837", "employeeId": "929", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3838", "employeeId": "1122", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Associate Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3839", "employeeId": "1320", "date": "2023-11-16", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Support Engineer", "reportsTo": "Pierre Martignon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3841", "employeeId": "685", "date": "2023-11-15", "location": "London - UK", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3842", "employeeId": "1613", "date": "2024-01-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3843", "employeeId": "1565", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management, GDS and GenAI", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3844", "employeeId": "352", "date": "2023-11-17", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management, Neo4j Database", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3845", "employeeId": "206", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management, User Tools and Developer Experience", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3846", "employeeId": "1086", "date": "2023-11-17", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "VP, Product Management, Cloud", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3847", "employeeId": "1614", "date": "2023-12-13", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3849", "employeeId": "1615", "date": "2023-12-04", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3850", "employeeId": "1100", "date": "2023-11-13", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Jos\u00e9 Lourador da Rocha", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3851", "employeeId": "1555", "date": "2023-11-15", "location": "Remote - India", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Technical Support", "reportsTo": "Christopher Pettibon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3852", "employeeId": "1578", "date": "2023-11-16", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Jan Aertsen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3853", "employeeId": "1616", "date": "2023-12-04", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Coordinator", "reportsTo": "Alexandra Holmes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3854", "employeeId": "1617", "date": "2023-12-11", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Senior Manager, Customer Success - APAC", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3855", "employeeId": "1618", "date": "2023-12-04", "location": "London - UK", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Technical Recruiter", "reportsTo": "Pietro Mattei", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3856", "employeeId": "1382", "date": "2023-11-22", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Christopher Crosbie", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3857", "employeeId": "1619", "date": "2023-11-29", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3858", "employeeId": "1620", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3859", "employeeId": "1621", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3860", "employeeId": "1622", "date": "2024-03-07", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3862", "employeeId": "669", "date": "2023-11-22", "location": "Remote - Canada", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Adam Cowley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3863", "employeeId": "968", "date": "2023-10-01", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3864", "employeeId": "1090", "date": "2023-10-01", "location": "Remote - Brazil", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Strategic Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3865", "employeeId": "1163", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Artist and Video Editor", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3866", "employeeId": "1026", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3867", "employeeId": "970", "date": "2023-11-16", "location": "Remote - Thailand", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Neo4j Corporate Marketing Graphic Artist", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3868", "employeeId": "1134", "date": "2023-11-16", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Graphic Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3869", "employeeId": "1623", "date": "2023-12-18", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3870", "employeeId": "1624", "date": "2023-12-06", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Customer Advocacy", "reportsTo": "Robin Kim", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3871", "employeeId": "620", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager, West/Central Region", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3872", "employeeId": "878", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3873", "employeeId": "242", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director, Field Marketing", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3874", "employeeId": "798", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3875", "employeeId": "1109", "date": "2023-11-27", "location": "Remote - Brazil", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3876", "employeeId": "1625", "date": "2023-12-18", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Manager, Integrated Marketing Campaigns", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3877", "employeeId": "1626", "date": "2024-01-02", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Enablement Program Manager", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3878", "employeeId": "1627", "date": "2024-01-08", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3879", "employeeId": "1628", "date": "2024-01-02", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Steven Turek", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3880", "employeeId": "1629", "date": "2023-12-18", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3881", "employeeId": "126", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3882", "employeeId": "1350", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3883", "employeeId": "1566", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3884", "employeeId": "195", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3885", "employeeId": "688", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior ISV Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3886", "employeeId": "1033", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3887", "employeeId": "1048", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3888", "employeeId": "1092", "date": "2023-11-27", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Enterprise Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3889", "employeeId": "1630", "date": "2024-01-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3890", "employeeId": "1385", "date": "2023-11-24", "location": "Remote - Singapore", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Director of Marketing, APAC", "reportsTo": "John Coulston", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3891", "employeeId": "1372", "date": "2023-11-24", "location": "Remote - Australia", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3892", "employeeId": "954", "date": "2023-11-24", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Field Marketing Manager", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3893", "employeeId": "1631", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3894", "employeeId": "1632", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3895", "employeeId": "1633", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3896", "employeeId": "1634", "date": "2024-01-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3897", "employeeId": "1635", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Master Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3898", "employeeId": "1636", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Master Thesis Intern", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3899", "employeeId": "1637", "date": "2023-12-18", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3900", "employeeId": "1638", "date": "2024-01-15", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "VP, APAC Sales", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3901", "employeeId": "1639", "date": "2024-01-15", "location": "Remote - Brazil", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Account Executive", "reportsTo": "Andre Serpa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3902", "employeeId": "1640", "date": "2024-01-02", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Manager - Singapore", "reportsTo": "Sarah Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3903", "employeeId": "1641", "date": "2024-01-02", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Brand Designer", "reportsTo": "Virginia Barasch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3904", "employeeId": "1050", "date": "2023-11-27", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3905", "employeeId": "1642", "date": "2023-12-14", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3906", "employeeId": "1643", "date": "2024-01-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Global Vice President, Technology Solutions", "reportsTo": "Alyson Welch", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3907", "employeeId": "1325", "date": "2024-01-03", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3908", "employeeId": "1234", "date": "2023-12-14", "location": "London - UK", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, EMEA North", "reportsTo": "Daniel Broom", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3909", "employeeId": "1644", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Technical Writer", "reportsTo": "David Oliver", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3910", "employeeId": "1645", "date": "2024-01-22", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Sr. Recruiter", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3911", "employeeId": "1646", "date": "2024-01-29", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Rajib Rashid", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3912", "employeeId": "1647", "date": "2024-02-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3913", "employeeId": "1648", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Manager", "reportsTo": "Dalila Dzelil", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3914", "employeeId": "1649", "date": "2024-01-22", "location": "Remote - USA", "department": "Recruiting", "division": "G&A", "jobTitle": "Recruiting Coordinator", "reportsTo": "Alexandra Holmes", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3915", "employeeId": "1650", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "RVP, Federal Sales", "reportsTo": "Cliff Bockard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3916", "employeeId": "1247", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Daniel Flavin", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3917", "employeeId": "1651", "date": "2024-06-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3918", "employeeId": "1652", "date": "2024-06-03", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3919", "employeeId": "1426", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3920", "employeeId": "152", "date": "2024-01-17", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3921", "employeeId": "1564", "date": "2024-01-15", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "UX Visual Designer", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3922", "employeeId": "1033", "date": "2024-01-03", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Corporate Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3923", "employeeId": "319", "date": "2024-01-01", "location": "Malm\u00f6 - Sweden", "department": "Facilities", "division": "G&A", "jobTitle": "Regional Office Manager", "reportsTo": "Alan Foley", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3924", "employeeId": "1477", "date": "2024-03-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Marie Gaillard", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3925", "employeeId": "1653", "date": "2024-03-11", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3926", "employeeId": "739", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director of Product", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3927", "employeeId": "821", "date": "2024-01-11", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Salesforce Developer", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3928", "employeeId": "1046", "date": "2024-01-11", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Sr. Salesforce Administrator", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3929", "employeeId": "1289", "date": "2024-01-11", "location": "London - UK", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "CRM Data Steward", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3930", "employeeId": "1332", "date": "2024-01-11", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3931", "employeeId": "1512", "date": "2024-01-11", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3932", "employeeId": "1074", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "RVP, Customer Success - EMEA", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3933", "employeeId": "748", "date": "2024-02-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3934", "employeeId": "289", "date": "2024-01-08", "location": "Remote - Germany", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP Field Engineering, EMEA & APAC", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3935", "employeeId": "1540", "date": "2024-02-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3936", "employeeId": "792", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Director, Global Core Customer Success", "reportsTo": "Michael Brophy", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3938", "employeeId": "1528", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3939", "employeeId": "1527", "date": "2024-01-01", "location": "London - UK", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Core On-Boarding Manager", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3940", "employeeId": "172", "date": "2024-01-08", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "VP, Sales Engineering & Professional Services - Americas", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3941", "employeeId": "977", "date": "2024-01-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3942", "employeeId": "827", "date": "2024-01-08", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3943", "employeeId": "1293", "date": "2024-01-02", "location": "Remote - India", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3944", "employeeId": "1654", "date": "2024-01-29", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Global Cloud Partnership Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3945", "employeeId": "1655", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Director, Professional Services and Solutions Engineering", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3946", "employeeId": "1656", "date": "2024-02-26", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "Senior Compensation & Benefits Manager", "reportsTo": "Casey Bananzadeh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3947", "employeeId": "159", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Director, Global Solutions", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3948", "employeeId": "1069", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Solutions Architect", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3949", "employeeId": "194", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3950", "employeeId": "772", "date": "2024-01-01", "location": "Remote - USA", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Solutions Engineer", "reportsTo": "Navneet Mathur", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3951", "employeeId": "818", "date": "2024-01-16", "location": "Remote - USA", "department": "Self Serve Growth", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3952", "employeeId": "773", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Outbound Team Lead", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3953", "employeeId": "1507", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3954", "employeeId": "1223", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3955", "employeeId": "1615", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3956", "employeeId": "1591", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3957", "employeeId": "1592", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3958", "employeeId": "1577", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3959", "employeeId": "791", "date": "2024-01-16", "location": "Remote - USA", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Isabella Ott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3960", "employeeId": "1344", "date": "2024-01-15", "location": "Remote - Singapore", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Director, ASEAN & India", "reportsTo": "Kristen Pimpini", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3961", "employeeId": "626", "date": "2024-01-15", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sales Director, ANZ", "reportsTo": "Kristen Pimpini", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3962", "employeeId": "389", "date": "2024-01-23", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3963", "employeeId": "1051", "date": "2024-01-15", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3964", "employeeId": "1657", "date": "2024-02-05", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3965", "employeeId": "1658", "date": "2024-02-19", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3966", "employeeId": "1079", "date": "2024-02-01", "location": "Remote - Italy", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3967", "employeeId": "1659", "date": "2024-02-12", "location": "Remote - USA", "department": "People", "division": "G&A", "jobTitle": "People Operations Administrator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3969", "employeeId": "1660", "date": "2024-02-19", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "SEO/Digital Strategy Marketing Manager", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3970", "employeeId": "1661", "date": "2024-04-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3971", "employeeId": "1662", "date": "2024-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3972", "employeeId": "1508", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3973", "employeeId": "1511", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3974", "employeeId": "1523", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3975", "employeeId": "1510", "date": "2024-01-01", "location": "Remote - Philippines", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3976", "employeeId": "627", "date": "2024-01-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Principal Architect Engineer", "reportsTo": "Henry Sowell", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3977", "employeeId": "1193", "date": "2024-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3978", "employeeId": "1383", "date": "2024-02-10", "location": "Remote - USA", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Project Director", "reportsTo": "Kenneth Kane", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3979", "employeeId": "1663", "date": "2024-01-22", "location": "Remote - Ukraine", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3980", "employeeId": "1664", "date": "2024-02-19", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Google Cloud Global Partnership Director", "reportsTo": "Paul Lassiter", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3981", "employeeId": "1211", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3982", "employeeId": "1448", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Customer Success Architect", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3983", "employeeId": "1308", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3984", "employeeId": "1397", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3985", "employeeId": "1579", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Professional Services Consulting Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3986", "employeeId": "1578", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Technical Account Manager", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3987", "employeeId": "1011", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Senior Pre-Sales Consultant", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3988", "employeeId": "667", "date": "2024-02-01", "location": "Remote - China", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Field Engineer", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3989", "employeeId": "977", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ANZ", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3990", "employeeId": "827", "date": "2024-02-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Manager, Sales Engineering - ASEAN & India", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3991", "employeeId": "393", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Manager, Professional Services", "reportsTo": "Kristian Payne", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3993", "employeeId": "1459", "date": "2024-02-01", "location": "Remote - India", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3994", "employeeId": "1454", "date": "2024-02-01", "location": "Remote - Malaysia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3997", "employeeId": "1496", "date": "2024-02-01", "location": "Remote - Australia", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3998", "employeeId": "1586", "date": "2024-02-01", "location": "Remote - APAC", "department": "Field Engineering - Professional Services Consulting", "division": "Sales & Marketing", "jobTitle": "Graph Developer", "reportsTo": "Angelo Bueti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4000", "employeeId": "1665", "date": "2024-03-18", "location": "Remote - France", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Adrien Boulad", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4001", "employeeId": "1666", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4002", "employeeId": "1667", "date": "2024-03-04", "location": "Remote - Singapore", "department": "Recruiting", "division": "G&A", "jobTitle": "Senior Recruiter - APAC", "reportsTo": "Christopher Holton", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4003", "employeeId": "1668", "date": "2024-03-18", "location": "Remote - Singapore", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Yamini Sriperumbuduru", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4004", "employeeId": "1274", "date": "2024-02-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Manager Channels and Alliances", "reportsTo": "Matthew Connon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4005", "employeeId": "1669", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Account Executive", "reportsTo": "James Mackey", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4006", "employeeId": "1670", "date": "2024-02-26", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Senior Cloud Sales Specialist", "reportsTo": "Chandler Kaaa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4007", "employeeId": "1671", "date": "2024-03-04", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Technical Product Marketing Manager", "reportsTo": "Neha Bajwa", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4008", "employeeId": "583", "date": "2024-02-05", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Data Engineer", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4009", "employeeId": "738", "date": "2024-02-05", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4010", "employeeId": "1054", "date": "2024-02-15", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Yoav Derazon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4012", "employeeId": "1376", "date": "2024-02-15", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4013", "employeeId": "1629", "date": "2024-02-19", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4015", "employeeId": "1672", "date": "2024-03-05", "location": "Remote - Australia", "department": "People", "division": "G&A", "jobTitle": "People Operations Coordinator", "reportsTo": "Stacey Ciborowski", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4016", "employeeId": "1673", "date": "2024-03-11", "location": "Remote - USA", "department": "Finance & Administration", "division": "G&A", "jobTitle": "Director of FP&A, Cloud Finance", "reportsTo": "Dave Mareiro", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4017", "employeeId": "1674", "date": "2024-03-04", "location": "Remote - Brazil", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sales Engineer", "reportsTo": "Ravi Ramanathan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4018", "employeeId": "1675", "date": "2024-03-18", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "VP, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4019", "employeeId": "1614", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4020", "employeeId": "1302", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4021", "employeeId": "1630", "date": "2024-02-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4022", "employeeId": "1252", "date": "2024-02-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4023", "employeeId": "574", "date": "2024-02-08", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4024", "employeeId": "1676", "date": "2024-05-06", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4025", "employeeId": "1677", "date": "2024-04-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Mark Peace", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4026", "employeeId": "818", "date": "2024-02-09", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Marketing Strategy and Operations Manager", "reportsTo": "Kevin Bischoff", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4027", "employeeId": "1646", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4028", "employeeId": "1229", "date": "2024-02-12", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Paul Blewett", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4029", "employeeId": "1168", "date": "2024-02-12", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4031", "employeeId": "575", "date": "2024-04-01", "location": "Remote - Germany", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Stefan Hagman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4032", "employeeId": "1680", "date": "2024-04-12", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "David Fox", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4033", "employeeId": "1681", "date": "2024-04-08", "location": "London - UK", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Senior Product Manager", "reportsTo": "Ivan Zoratti", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4034", "employeeId": "1682", "date": "2024-02-26", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Technical Support Engineer", "reportsTo": "David Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4036", "employeeId": "1683", "date": "2024-04-01", "location": "Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4037", "employeeId": "1684", "date": "2024-02-26", "location": "Remote - France", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4038", "employeeId": "1685", "date": "2024-03-04", "location": "Remote - Australia", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales", "reportsTo": "Peter Philipp", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4039", "employeeId": "1686", "date": "2024-04-08", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4040", "employeeId": "1687", "date": "2024-06-03", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4042", "employeeId": "1689", "date": "2024-04-08", "location": "Remote - Australia", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Emil Pastor", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4043", "employeeId": "1690", "date": "2024-02-22", "location": "Remote - India", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Austin Hansen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4044", "employeeId": "1691", "date": "2024-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4045", "employeeId": "1692", "date": "2024-03-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Federal Field Marketing Manager", "reportsTo": "Pagely Tucker", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4046", "employeeId": "671", "date": "2024-05-05", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Director of Engineering", "reportsTo": "Magnus Vejlstrup", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4047", "employeeId": "1693", "date": "2024-02-29", "location": "Remote - Italy", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Michael Hunger", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4048", "employeeId": "1694", "date": "2024-05-28", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4049", "employeeId": "1695", "date": "2024-02-27", "location": "Remote - USA", "department": "Field Engineering - Customer Success", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Claes Nordahl", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4050", "employeeId": "1619", "date": "2024-02-12", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4051", "employeeId": "1641", "date": "2024-02-12", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Senior Brand Designer", "reportsTo": "Aaron Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4053", "employeeId": "1696", "date": "2024-04-08", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4054", "employeeId": "1102", "date": "2024-03-18", "location": "Remote - USA", "department": "Field Engineering - Customer Support", "division": "Sales & Marketing", "jobTitle": "Sr. Customer Success Architect", "reportsTo": "David Shiposh", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4055", "employeeId": "879", "date": "2024-03-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Head of Sales DACH", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4056", "employeeId": "1212", "date": "2024-03-01", "location": "Remote - Germany", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Enterprise Sales Representative Germany", "reportsTo": "Johannes Putters", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4057", "employeeId": "1697", "date": "2024-03-01", "location": "Remote - India", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Subcontractor", "reportsTo": "Kent Corson", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4058", "employeeId": "398", "date": "2024-02-26", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4059", "employeeId": "1099", "date": "2024-03-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Sr. Account Executive", "reportsTo": "Ashwini Gillen", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4060", "employeeId": "972", "date": "2024-03-01", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Director of Engineering", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4061", "employeeId": "1698", "date": "2024-03-18", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Inside Sales Representative", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4062", "employeeId": "739", "date": "2024-03-01", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4063", "employeeId": "1699", "date": "2024-04-01", "location": "Remote - USA", "department": "Developer Relations", "division": "Sales & Marketing", "jobTitle": "VP, Developer Relations", "reportsTo": "Chandra Rangan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4064", "employeeId": "1700", "date": "2024-03-11", "location": "Remote - USA", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Contractor", "reportsTo": "Adam Smith", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4065", "employeeId": "1701", "date": "2024-04-22", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Ivan Ful\u00f6p", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4066", "employeeId": "1702", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Kristian Hasselqvist", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4067", "employeeId": "1474", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4068", "employeeId": "1703", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4069", "employeeId": "1704", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer Intern", "reportsTo": "Christoffer Bergman", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4070", "employeeId": "1705", "date": "2024-05-20", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4071", "employeeId": "1706", "date": "2024-05-13", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Highton Gordon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4072", "employeeId": "1707", "date": "2024-03-25", "location": "Remote - USA", "department": "Revenue Operations", "division": "Sales & Marketing", "jobTitle": "Enablement Specialist", "reportsTo": "Anshu Kanuga", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4073", "employeeId": "1708", "date": "2024-04-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Federal Defense Account Executive", "reportsTo": "John Bender", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4074", "employeeId": "1709", "date": "2024-04-01", "location": "Remote - USA", "department": "Sales", "division": "Sales & Marketing", "jobTitle": "Strategic Account Executive", "reportsTo": "Bryan Evans", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4075", "employeeId": "771", "date": "2024-01-01", "location": "Remote - Singapore", "department": "Field Engineering - Pre-Sales Engineering", "division": "Sales & Marketing", "jobTitle": "Sr. Sales Engineer", "reportsTo": "Maruthi Prithivirajan", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4076", "employeeId": "1710", "date": "2024-04-01", "location": "Remote - USA", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Executive Business Partner", "reportsTo": "Sudhir Hasbe", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4077", "employeeId": "1711", "date": "2024-04-02", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4078", "employeeId": "1361", "date": "2024-04-01", "location": "London - UK", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4080", "employeeId": "1712", "date": "2024-06-24", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4081", "employeeId": "1713", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4082", "employeeId": "1714", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4083", "employeeId": "1715", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4084", "employeeId": "1716", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4085", "employeeId": "1717", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4086", "employeeId": "1718", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4087", "employeeId": "1719", "date": "2024-03-18", "location": "Remote - India", "department": "Product - Neo4j", "division": "R&D", "jobTitle": "Subcontractor", "reportsTo": "Anurag Tandon", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4088", "employeeId": "1720", "date": "2024-06-17", "location": "London - UK", "department": "Engineering - Aura", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Irfan Nuri Karaca", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4089", "employeeId": "1721", "date": "2024-04-02", "location": "London - UK", "department": "Sales Development", "division": "Sales & Marketing", "jobTitle": "Sales Development Representative", "reportsTo": "Michael McDermott", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4090", "employeeId": "296", "date": "2024-03-15", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Sr. Marketing Manager", "reportsTo": "Susann Brunner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4091", "employeeId": "1722", "date": "2024-05-07", "location": "London - UK", "department": "Marketing", "division": "Sales & Marketing", "jobTitle": "Marketing Manager", "reportsTo": "Susann Brunner", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4092", "employeeId": "1376", "date": "2024-03-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Product Manager", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4093", "employeeId": "1629", "date": "2024-03-18", "location": "Remote - USA", "department": "Product - Aura", "division": "R&D", "jobTitle": "Senior Director of Product Management", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4094", "employeeId": "739", "date": "2024-03-18", "location": "London - UK", "department": "Product - Aura", "division": "R&D", "jobTitle": "Director, Product Management", "reportsTo": "Daniel McGrath", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4095", "employeeId": "570", "date": "2024-03-18", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Senior Software Engineer", "reportsTo": "Florin Manole", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4096", "employeeId": "1723", "date": "2024-06-10", "location": "Malm\u00f6 - Sweden", "department": "Engineering - Neo4j", "division": "R&D", "jobTitle": "Intern", "reportsTo": "Jens Wollert Ehlers", "knoetic_table_name": "jobInfo"}, "emitted_at": 1710872581627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1", "employeeId": "118", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "187", "date": "2018-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "154", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "4", "employeeId": "181", "date": "2017-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "140", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "174", "date": "2017-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "7", "employeeId": "226", "date": "2019-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "8", "employeeId": "244", "date": "2019-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "9", "employeeId": "246", "date": "2019-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "162", "date": "2017-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "164", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "12", "employeeId": "1", "date": "2019-09-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "206", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "165", "date": "2017-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "15", "employeeId": "142", "date": "2015-08-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "219", "date": "2019-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "190", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "139", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "157", "date": "2017-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "193", "date": "2018-02-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "119", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "22", "employeeId": "156", "date": "2017-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "146", "date": "2015-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "249", "date": "2019-07-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "234", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "26", "employeeId": "147", "date": "2015-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "163", "date": "2017-04-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "189", "date": "2018-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "29", "employeeId": "213", "date": "2018-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "194", "date": "2018-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "31", "employeeId": "227", "date": "2019-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "153", "date": "2016-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "130", "date": "2014-08-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "135", "date": "2015-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "35", "employeeId": "150", "date": "2016-05-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "36", "employeeId": "179", "date": "2017-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "180", "date": "2017-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "215", "date": "2018-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "257", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "254", "date": "2019-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "191", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "170", "date": "2017-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "43", "employeeId": "205", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "166", "date": "2017-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "198", "date": "2018-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "46", "employeeId": "243", "date": "2019-06-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "148", "date": "2015-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "171", "date": "2017-07-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "129", "date": "2014-06-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "241", "date": "2019-05-30", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "235", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "203", "date": "2018-07-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "133", "date": "2014-12-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "54", "employeeId": "152", "date": "2016-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "232", "date": "2019-04-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "192", "date": "2018-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "251", "date": "2019-08-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "151", "date": "2016-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "242", "date": "2019-06-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "60", "employeeId": "199", "date": "2018-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "61", "employeeId": "131", "date": "2014-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "145", "date": "2015-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "160", "date": "2017-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "255", "date": "2019-09-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "209", "date": "2018-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "195", "date": "2018-04-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "225", "date": "2019-02-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "68", "employeeId": "196", "date": "2019-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "69", "employeeId": "155", "date": "2016-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "216", "date": "2018-12-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "71", "employeeId": "258", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "72", "employeeId": "183", "date": "2017-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "73", "employeeId": "114", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "144", "date": "2015-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "158", "date": "2017-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "175", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "211", "date": "2018-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "125", "date": "2013-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "188", "date": "2018-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "120", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "256", "date": "2019-09-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "200", "date": "2018-05-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "83", "employeeId": "173", "date": "2017-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "237", "date": "2019-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "85", "employeeId": "236", "date": "2019-04-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "217", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "185", "date": "2017-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "253", "date": "2019-08-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "126", "date": "2013-11-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "182", "date": "2017-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "247", "date": "2019-07-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "92", "employeeId": "204", "date": "2018-07-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "93", "employeeId": "132", "date": "2014-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "138", "date": "2015-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "123", "date": "2012-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "240", "date": "2019-05-20", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "208", "date": "2018-07-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "98", "employeeId": "214", "date": "2018-11-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "99", "employeeId": "223", "date": "2019-01-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "100", "employeeId": "210", "date": "2018-09-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "239", "date": "2019-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "167", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "233", "date": "2019-04-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "104", "employeeId": "159", "date": "2017-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "220", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "168", "date": "2017-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "176", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "178", "date": "2017-10-02", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "124", "date": "2013-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "248", "date": "2019-07-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "121", "date": "2012-05-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "224", "date": "2019-01-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "218", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "114", "employeeId": "172", "date": "2017-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "202", "date": "2018-06-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "149", "date": "2016-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "122", "date": "2012-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "228", "date": "2019-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "119", "employeeId": "169", "date": "2017-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "230", "date": "2019-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "121", "employeeId": "128", "date": "2014-03-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "197", "date": "2018-04-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "186", "date": "2018-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "141", "date": "2015-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "161", "date": "2017-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "222", "date": "2019-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "137", "date": "2015-04-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "136", "date": "2015-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "245", "date": "2019-06-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "130", "employeeId": "177", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "131", "employeeId": "184", "date": "2017-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "212", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "250", "date": "2019-08-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "207", "date": "2018-07-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "238", "date": "2019-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "201", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "137", "employeeId": "115", "date": "2019-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "231", "date": "2019-04-08", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "127", "date": "2014-02-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "252", "date": "2019-08-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "221", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "134", "date": "2014-12-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "143", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "229", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "350", "date": "2018-05-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "364", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "357", "date": "2018-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "148", "employeeId": "316", "date": "2017-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "117", "date": "2015-09-10", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "392", "date": "2019-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "338", "date": "2017-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "374", "date": "2019-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "266", "date": "2012-07-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "359", "date": "2018-09-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "268", "date": "2013-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "295", "date": "2015-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "380", "date": "2019-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "403", "date": "2019-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "384", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "343", "date": "2017-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "395", "date": "2019-06-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "412", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "397", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "304", "date": "2016-02-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "288", "date": "2015-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "393", "date": "2019-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "271", "date": "2013-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "371", "date": "2019-01-14", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "323", "date": "2017-05-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "348", "date": "2018-04-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "276", "date": "2014-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "406", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "329", "date": "2017-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "391", "date": "2019-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "404", "date": "2019-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "407", "date": "2019-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "296", "date": "2015-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "293", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "341", "date": "2017-09-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "381", "date": "2019-03-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "385", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "263", "date": "2011-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "278", "date": "2014-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "265", "date": "2012-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "415", "date": "2019-11-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "396", "date": "2019-06-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "260", "date": "2010-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "347", "date": "2018-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "189", "employeeId": "277", "date": "2014-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "387", "date": "2019-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "284", "date": "2014-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "325", "date": "2017-05-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "418", "date": "2020-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "292", "date": "2015-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "320", "date": "2017-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "342", "date": "2012-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "306", "date": "2016-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "330", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "280", "date": "2014-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "200", "employeeId": "408", "date": "2019-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "335", "date": "2017-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "411", "date": "2019-10-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "383", "date": "2019-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "262", "date": "2011-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "205", "employeeId": "370", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "398", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "301", "date": "2015-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "208", "employeeId": "305", "date": "2016-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "372", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "344", "date": "2017-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "116", "date": "2010-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "300", "date": "2015-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "365", "date": "2018-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "214", "employeeId": "264", "date": "2011-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "324", "date": "2017-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "216", "employeeId": "355", "date": "2018-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "414", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "334", "date": "2017-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "327", "date": "2017-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "313", "date": "2017-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "321", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "353", "date": "2018-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "289", "date": "2015-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "389", "date": "2019-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "382", "date": "2019-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "377", "date": "2019-02-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "386", "date": "2019-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "333", "date": "2017-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "229", "employeeId": "285", "date": "2014-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "259", "date": "2009-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "294", "date": "2015-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "279", "date": "2014-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "349", "date": "2018-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "368", "date": "2019-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "361", "date": "2018-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "409", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "331", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "238", "employeeId": "360", "date": "2018-09-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "339", "date": "2017-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "281", "date": "2014-08-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "311", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "243", "employeeId": "309", "date": "2016-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "340", "date": "2017-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "270", "date": "2013-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "394", "date": "2019-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "275", "date": "2014-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "390", "date": "2019-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "297", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "410", "date": "2019-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "314", "date": "2017-02-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "328", "date": "2017-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "318", "date": "2017-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "332", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "362", "date": "2018-10-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "299", "date": "2015-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "312", "date": "2016-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "401", "date": "2019-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "366", "date": "2018-11-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "260", "employeeId": "307", "date": "2016-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "326", "date": "2017-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "379", "date": "2019-02-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "317", "date": "2017-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "399", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "363", "date": "2018-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "274", "date": "2014-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "376", "date": "2019-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "402", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "388", "date": "2019-04-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "291", "date": "2015-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "405", "date": "2019-09-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "322", "date": "2017-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "378", "date": "2019-02-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "303", "date": "2016-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "375", "date": "2019-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "276", "employeeId": "367", "date": "2018-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "286", "date": "2014-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "336", "date": "2017-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "373", "date": "2019-01-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "354", "date": "2018-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "315", "date": "2017-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "282", "date": "2014-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "337", "date": "2017-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "369", "date": "2019-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "400", "date": "2019-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "310", "date": "2016-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "416", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "283", "date": "2014-08-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "308", "date": "2016-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "319", "date": "2019-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "413", "date": "2019-10-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "290", "date": "2015-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "346", "date": "2018-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "267", "date": "2012-08-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "287", "date": "2014-11-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "273", "date": "2013-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "272", "date": "2013-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "345", "date": "2017-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "351", "date": "2018-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "261", "date": "2010-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "356", "date": "2018-08-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "298", "date": "2015-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "269", "date": "2012-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "358", "date": "2018-09-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "302", "date": "2016-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "352", "date": "2018-06-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "307", "employeeId": "419", "date": "2019-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "309", "employeeId": "421", "date": "2019-11-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "312", "employeeId": "377", "date": "2019-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "279", "date": "2019-11-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "360", "date": "2019-11-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "417", "date": "2019-11-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "533", "date": "2016-10-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "561", "date": "2018-07-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "539", "date": "2017-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "527", "date": "2017-11-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "506", "date": "2012-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "549", "date": "2018-02-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "523", "date": "2017-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "553", "date": "2018-07-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "535", "date": "2018-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "544", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "531", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "510", "date": "2013-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "516", "date": "2018-01-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "330", "employeeId": "536", "date": "2017-09-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "331", "employeeId": "554", "date": "2018-11-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "560", "date": "2018-07-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "333", "employeeId": "515", "date": "2013-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "334", "employeeId": "515", "date": "2014-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "545", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "565", "date": "2018-08-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "541", "date": "2018-12-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "568", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "528", "date": "2018-03-23", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "547", "date": "2018-12-18", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "534", "date": "2016-06-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "555", "date": "2019-07-05", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "520", "date": "2015-02-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "530", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "562", "date": "2018-06-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "557", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "550", "date": "2018-02-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "512", "date": "2014-12-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "524", "date": "2017-01-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "566", "date": "2019-06-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "564", "date": "2018-08-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "504", "date": "2018-01-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "537", "date": "2018-07-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "502", "date": "2016-03-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "503", "date": "2014-03-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "559", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "509", "date": "2015-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "558", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "556", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "552", "date": "2019-09-24", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "363", "employeeId": "507", "date": "2016-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "364", "employeeId": "514", "date": "2015-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "538", "date": "2019-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "511", "date": "2012-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "511", "date": "2018-08-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "372", "employeeId": "551", "date": "2017-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "548", "date": "2019-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "522", "date": "2015-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "522", "date": "2017-02-24", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "501", "date": "2019-10-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "505", "date": "2018-07-23", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "519", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "525", "date": "2017-07-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "563", "date": "2019-07-08", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "567", "date": "2019-07-06", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "513", "date": "2013-11-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "521", "date": "2016-11-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "542", "date": "2017-04-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "540", "date": "2017-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "517", "date": "2015-03-18", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "532", "date": "2016-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "526", "date": "2015-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "569", "date": "2019-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "570", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "571", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "572", "date": "2019-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "142", "date": "2016-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "142", "date": "2019-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "241", "date": "2019-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "193", "date": "2019-02-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "573", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "574", "date": "2020-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "400", "employeeId": "575", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "576", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "577", "date": "2019-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "578", "date": "2019-12-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "579", "date": "2019-12-10", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "118", "date": "2019-12-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "580", "date": "2019-11-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "407", "employeeId": "148", "date": "2020-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "581", "date": "2019-10-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "582", "date": "2019-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "140", "date": "2020-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "412", "employeeId": "268", "date": "2012-10-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "413", "employeeId": "384", "date": "2017-09-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "325", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract Cancelled", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "417", "employeeId": "277", "date": "2017-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "583", "date": "2019-11-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "584", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "422", "employeeId": "342", "date": "2015-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "423", "employeeId": "342", "date": "2017-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "572", "date": "2018-04-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "572", "date": "2018-07-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "431", "employeeId": "572", "date": "2018-09-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "572", "date": "2019-03-01", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "277", "date": "2017-10-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "168", "date": "2020-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "325", "date": "2018-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "325", "date": "2019-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "587", "date": "2020-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "588", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "589", "date": "2019-11-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "590", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "591", "date": "2020-01-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "592", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "593", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "594", "date": "2020-01-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "595", "date": "2020-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "457", "employeeId": "599", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "600", "date": "2019-12-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "459", "employeeId": "601", "date": "2019-12-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "245", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "245", "date": "2020-01-15", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "137", "date": "2019-10-16", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "602", "date": "2020-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "603", "date": "2019-12-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "604", "date": "2020-01-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "605", "date": "2020-01-06", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "606", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "607", "date": "2020-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "470", "employeeId": "608", "date": "2020-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "471", "employeeId": "609", "date": "2020-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "610", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "611", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "613", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "614", "date": "2020-01-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "313", "date": "2016-03-21", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "355", "date": "2017-03-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "355", "date": "2017-12-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "355", "date": "2018-06-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "615", "date": "2020-01-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "483", "employeeId": "250", "date": "2020-01-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "484", "employeeId": "589", "date": "2020-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "485", "employeeId": "616", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "486", "employeeId": "617", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "487", "employeeId": "618", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "488", "employeeId": "591", "date": "2020-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "489", "employeeId": "619", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "490", "employeeId": "361", "date": "2018-02-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "361", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "311", "date": "2016-05-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "311", "date": "2016-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "620", "date": "2020-02-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "621", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "496", "employeeId": "499", "date": "2020-02-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "622", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "387", "date": "2020-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "467", "date": "2018-08-27", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "471", "date": "2016-12-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "468", "date": "2016-12-19", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "505", "employeeId": "451", "date": "2018-04-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "506", "employeeId": "437", "date": "2014-11-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "507", "employeeId": "476", "date": "2017-09-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "508", "employeeId": "440", "date": "2019-06-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "442", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "458", "date": "2017-11-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "433", "date": "2014-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "452", "date": "2019-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "482", "date": "2017-11-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "463", "date": "2018-04-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "461", "date": "2017-09-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "516", "employeeId": "428", "date": "2013-11-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "517", "employeeId": "456", "date": "2016-09-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "472", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "483", "date": "2017-08-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "448", "date": "2014-10-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "521", "employeeId": "499", "date": "2019-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "499", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "352", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "623", "date": "2019-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "624", "date": "2020-01-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "625", "date": "2020-01-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "527", "employeeId": "626", "date": "2020-01-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "627", "date": "2017-12-01", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "629", "date": "2017-01-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "630", "date": "2020-02-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "631", "date": "2017-08-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "303", "date": "2020-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "408", "date": "2020-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "535", "employeeId": "407", "date": "2020-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "263", "date": "2018-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "306", "date": "2019-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "633", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "369", "date": "2018-04-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "634", "date": "2020-04-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "635", "date": "2020-04-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "636", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "637", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "327", "date": "2016-10-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "327", "date": "2017-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "377", "date": "2018-08-20", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "377", "date": "2018-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "319", "date": "2017-04-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "358", "date": "2017-07-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "358", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "358", "date": "2017-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "358", "date": "2018-01-07", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "358", "date": "2018-01-08", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "358", "date": "2018-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "358", "date": "2019-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "563", "employeeId": "638", "date": "2020-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "639", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "246", "date": "2020-02-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "566", "employeeId": "151", "date": "2017-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "363", "date": "2018-01-15", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "363", "date": "2018-09-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "572", "employeeId": "317", "date": "2013-01-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "311", "date": "2015-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "311", "date": "2015-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "131", "date": "2016-04-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "432", "date": "2015-08-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "496", "date": "2019-06-07", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "430", "date": "2013-07-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "488", "date": "2017-10-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "455", "date": "2015-10-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "447", "date": "2015-10-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "583", "employeeId": "423", "date": "2014-08-25", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "495", "date": "2019-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "585", "employeeId": "487", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "449", "date": "2016-02-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "429", "date": "2015-04-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "469", "date": "2017-04-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "484", "date": "2017-08-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "454", "date": "2016-03-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "591", "employeeId": "485", "date": "2017-08-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "592", "employeeId": "424", "date": "2016-04-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "593", "employeeId": "493", "date": "2018-12-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "431", "date": "2014-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "425", "date": "2014-11-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "477", "date": "2017-10-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "489", "date": "2019-09-11", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "598", "employeeId": "475", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "459", "date": "2016-12-09", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "600", "employeeId": "446", "date": "2016-07-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "601", "employeeId": "307", "date": "2015-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "307", "date": "2016-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "285", "date": "2020-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "166", "date": "2020-02-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "640", "date": "2020-03-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "131", "date": "2011-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "611", "employeeId": "154", "date": "2015-09-14", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "154", "date": "2015-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "154", "date": "2016-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "151", "date": "2020-03-06", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "628", "date": "2020-01-13", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "480", "date": "2017-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "486", "date": "2017-09-26", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "434", "date": "2014-01-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "619", "employeeId": "492", "date": "2018-12-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "620", "employeeId": "435", "date": "2014-02-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "621", "employeeId": "426", "date": "2013-12-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "479", "date": "2019-06-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "623", "employeeId": "494", "date": "2018-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "457", "date": "2015-09-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "497", "date": "2019-01-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "450", "date": "2015-12-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "481", "date": "2018-09-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "464", "date": "2016-11-17", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "629", "employeeId": "490", "date": "2018-09-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "462", "date": "2018-06-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "443", "date": "2014-09-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "441", "date": "2018-10-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "473", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "491", "date": "2018-09-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "460", "date": "2019-06-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "427", "date": "2014-01-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "438", "date": "2017-05-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "498", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "439", "date": "2015-11-02", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "474", "date": "2016-08-12", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "465", "date": "2017-09-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "444", "date": "2018-05-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "453", "date": "2016-04-22", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "445", "date": "2014-09-14", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "498", "date": "2019-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "478", "date": "2018-06-30", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "470", "date": "2017-03-06", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "436", "date": "2014-10-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "471", "date": "2016-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "468", "date": "2016-02-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "451", "date": "2014-12-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "476", "date": "2016-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "440", "date": "2014-03-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "442", "date": "2014-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "458", "date": "2015-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "433", "date": "2013-01-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "452", "date": "2015-01-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "463", "date": "2015-12-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "461", "date": "2015-12-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "428", "date": "2012-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "456", "date": "2015-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "472", "date": "2016-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "663", "employeeId": "483", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "419", "date": "2017-12-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "448", "date": "2014-09-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "432", "date": "2012-12-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "496", "date": "2018-09-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "430", "date": "2012-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "641", "date": "2020-03-06", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "488", "date": "2017-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "455", "date": "2015-05-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "447", "date": "2014-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "423", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "674", "employeeId": "495", "date": "2018-07-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "487", "date": "2017-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "429", "date": "2012-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "677", "employeeId": "469", "date": "2016-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "678", "employeeId": "541", "date": "2016-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "484", "date": "2017-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "680", "employeeId": "424", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "681", "employeeId": "642", "date": "2020-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "131", "date": "2017-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "643", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "644", "date": "2020-04-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "685", "employeeId": "533", "date": "2016-05-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "533", "date": "2020-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "645", "date": "2020-06-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "646", "date": "2020-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "647", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "648", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "649", "date": "2020-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "692", "employeeId": "650", "date": "2020-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "581", "date": "2020-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "254", "date": "2020-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "651", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "652", "date": "2020-03-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "223", "date": "2020-03-20", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "653", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "231", "date": "2020-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "275", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "654", "date": "2019-03-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "117", "date": "2017-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "655", "date": "2020-04-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "631", "date": "2020-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "705", "employeeId": "245", "date": "2020-03-27", "employmentStatus": "Terminated", "terminationReasonId": "Other - work authorization", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "161", "date": "2020-04-03", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "656", "date": "2020-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "245", "date": "2020-04-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "203", "date": "2020-04-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "493", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "431", "date": "2012-10-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "425", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "467", "date": "2016-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "477", "date": "2017-01-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "480", "date": "2017-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "486", "date": "2017-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "434", "date": "2013-06-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "492", "date": "2018-06-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "435", "date": "2013-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "426", "date": "2012-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "479", "date": "2017-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "494", "date": "2018-06-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "457", "date": "2015-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "497", "date": "2019-01-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "658", "date": "2020-05-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "659", "date": "2020-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "662", "date": "2020-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "663", "date": "2020-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "664", "date": "2020-05-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "665", "date": "2020-04-20", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "654", "date": "2020-04-28", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "667", "date": "2020-04-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "183", "date": "2017-04-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "245", "date": "2020-06-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "668", "date": "2020-05-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "224", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "238", "date": "2020-06-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "745", "employeeId": "520", "date": "2014-10-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "485", "date": "2017-07-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "454", "date": "2015-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "460", "date": "2015-11-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "196", "date": "2018-04-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "444", "date": "2014-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "124", "date": "2019-09-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "669", "date": "2020-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "754", "employeeId": "670", "date": "2020-06-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "350", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "308", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "240", "date": "2020-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "240", "date": "2019-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "671", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "272", "date": "2020-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "293", "date": "2020-08-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "672", "date": "2020-06-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "763", "employeeId": "349", "date": "2020-06-09", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "674", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "767", "employeeId": "676", "date": "2020-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "768", "employeeId": "677", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "769", "employeeId": "678", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "770", "employeeId": "679", "date": "2020-06-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "771", "employeeId": "546", "date": "2020-06-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "546", "date": "2017-07-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "773", "employeeId": "546", "date": "2018-06-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "774", "employeeId": "546", "date": "2019-06-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "775", "employeeId": "640", "date": "2020-06-22", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "777", "employeeId": "546", "date": "2017-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "778", "employeeId": "546", "date": "2018-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "779", "employeeId": "546", "date": "2019-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "780", "employeeId": "546", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "782", "employeeId": "681", "date": "2020-06-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "682", "date": "2020-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "785", "employeeId": "120", "date": "2020-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "345", "date": "2020-08-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "684", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "685", "date": "2020-08-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "122", "date": "2020-07-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "390", "date": "2020-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "230", "date": "2020-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "617", "date": "2020-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "624", "date": "2020-07-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "686", "date": "2020-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "795", "employeeId": "687", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "412", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "688", "date": "2020-07-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "689", "date": "2020-07-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "690", "date": "2020-06-10", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "691", "date": "2020-07-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "192", "date": "2020-07-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "693", "date": "2020-09-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "394", "date": "2020-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "694", "date": "2020-07-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "695", "date": "2020-08-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "137", "date": "2020-08-07", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "696", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "122", "date": "2020-08-14", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "811", "employeeId": "697", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "698", "date": "2020-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "814", "employeeId": "700", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "701", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "699", "date": "2020-08-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "817", "employeeId": "702", "date": "2020-08-14", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "818", "employeeId": "703", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "704", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "546", "date": "2020-08-31", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "546", "date": "2020-09-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "705", "date": "2020-08-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "706", "date": "2020-08-24", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "824", "employeeId": "707", "date": "2020-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "708", "date": "2020-09-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "709", "date": "2020-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "710", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "711", "date": "2020-09-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "712", "date": "2020-10-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "713", "date": "2020-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "714", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "715", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "225", "date": "2020-09-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "716", "date": "2020-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "717", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "718", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "719", "date": "2020-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "838", "employeeId": "123", "date": "2020-09-18", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "720", "date": "2020-09-07", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "721", "date": "2020-09-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "722", "date": "2020-10-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "723", "date": "2020-10-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "843", "employeeId": "724", "date": "2020-09-09", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "844", "employeeId": "725", "date": "2019-12-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "726", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "727", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "728", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "729", "date": "2020-11-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "730", "date": "2020-05-01", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "730", "date": "2020-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "731", "date": "2020-10-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "732", "date": "2020-09-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "734", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "735", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "323", "date": "2020-10-09", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "736", "date": "2020-10-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "737", "date": "2020-10-12", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "738", "date": "2020-11-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "739", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "861", "employeeId": "740", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "741", "date": "2020-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "742", "date": "2020-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "192", "date": "2020-09-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "689", "date": "2020-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "743", "date": "2020-11-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "744", "date": "2020-11-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "745", "date": "2020-11-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "870", "employeeId": "746", "date": "2021-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "747", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "183", "date": "2020-10-30", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "748", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "749", "date": "2020-11-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "752", "date": "2020-12-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "753", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "751", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "248", "date": "2020-11-13", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "754", "date": "2020-11-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "755", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "338", "date": "2020-11-13", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "756", "date": "2020-01-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "757", "date": "2020-11-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "758", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "759", "date": "2020-11-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582420}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "204", "date": "2020-11-20", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "760", "date": "2021-02-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "761", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "763", "date": "2021-01-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "764", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "765", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "579", "date": "2020-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "766", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "767", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "768", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "769", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "770", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "901", "employeeId": "771", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "772", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "773", "date": "2021-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "774", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "775", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "717", "date": "2020-12-10", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "907", "employeeId": "776", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582421}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "725", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "777", "date": "2021-01-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "778", "date": "2020-12-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "605", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "912", "employeeId": "381", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "381", "date": "2021-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "780", "date": "2020-12-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "262", "date": "2021-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "918", "employeeId": "749", "date": "2020-12-18", "employmentStatus": "Terminated", "terminationReasonId": "Attendance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "762", "date": "2020-12-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "743", "date": "2020-12-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "782", "date": "2021-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "922", "employeeId": "783", "date": "2021-01-19", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "785", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "786", "date": "2021-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "787", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "788", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "690", "date": "2020-07-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582422}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "790", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "791", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "792", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "284", "date": "2021-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "379", "date": "2021-03-07", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "793", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "937", "employeeId": "794", "date": "2021-01-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "795", "date": "2021-01-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "796", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "797", "date": "2021-01-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "941", "employeeId": "571", "date": "2021-03-12", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "798", "date": "2019-10-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "799", "date": "2021-04-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "800", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "801", "date": "2019-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "802", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "270", "date": "2021-03-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "803", "date": "2021-03-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582423}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "804", "date": "2020-03-23", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "239", "date": "2021-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "805", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "806", "date": "2021-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "807", "date": "2021-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "225", "date": "2021-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "211", "date": "2021-02-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "139", "date": "2021-01-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "808", "date": "2021-02-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "809", "date": "2021-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "810", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "293", "date": "2021-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "801", "date": "2021-02-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "798", "date": "2021-02-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "965", "employeeId": "812", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "966", "employeeId": "720", "date": "2021-02-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "813", "date": "2021-02-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "133", "date": "2021-02-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582424}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "115", "date": "2021-02-12", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "971", "employeeId": "814", "date": "2021-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "815", "date": "2021-04-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "397", "date": "2021-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "816", "date": "2021-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "817", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "818", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "819", "date": "2021-03-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "820", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "821", "date": "2021-02-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "822", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "823", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "824", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "825", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "744", "date": "2021-02-26", "employmentStatus": "Terminated", "terminationReasonId": "Relocation", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "826", "date": "2021-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "131", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "276", "date": "2021-03-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582425}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "827", "date": "2021-03-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "828", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "829", "date": "2021-03-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "830", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "831", "date": "2021-05-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "832", "date": "2021-03-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "833", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "834", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "835", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "836", "date": "2021-06-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "686", "date": "2020-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "271", "date": "2021-05-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "764", "date": "2021-03-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "263", "date": "2009-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "837", "date": "2021-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "838", "date": "2021-03-22", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "249", "date": "2021-04-02", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "720", "date": "2021-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582426}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "839", "date": "2021-04-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "732", "date": "2021-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "842", "date": "2021-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "843", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1014", "employeeId": "844", "date": "2021-04-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "845", "date": "2021-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "846", "date": "2021-04-26", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "847", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "848", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1019", "employeeId": "849", "date": "2021-04-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "744", "date": "2021-04-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "215", "date": "2021-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "850", "date": "2021-04-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "850", "date": "2019-10-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "220", "date": "2021-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "851", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1026", "employeeId": "850", "date": "2017-06-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "852", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1028", "employeeId": "853", "date": "2021-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582427}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "854", "date": "2021-04-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "855", "date": "2021-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "266", "date": "2021-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "856", "date": "2021-05-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1033", "employeeId": "857", "date": "2021-04-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "655", "date": "2021-04-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "858", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "859", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "860", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "218", "date": "2021-04-16", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "307", "date": "2021-06-14", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "861", "date": "2021-06-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "862", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "724", "date": "2021-03-09", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "863", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "864", "date": "2020-06-26", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "404", "date": "2021-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1047", "employeeId": "125", "date": "2021-04-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582428}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1048", "employeeId": "865", "date": "2021-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "866", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "705", "date": "2021-05-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "867", "date": "2021-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "869", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1054", "employeeId": "870", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "871", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "129", "date": "2021-05-14", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1057", "employeeId": "872", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "873", "date": "2021-05-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "772", "date": "2021-05-06", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1060", "employeeId": "256", "date": "2021-05-21", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "874", "date": "2021-05-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "875", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "876", "date": "2021-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1064", "employeeId": "767", "date": "2021-08-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "877", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "756", "date": "2021-05-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "878", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582429}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "879", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "277", "date": "2021-07-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "880", "date": "2021-06-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "258", "date": "2021-05-21", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "881", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "882", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1074", "employeeId": "883", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "884", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "736", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "885", "date": "2021-06-14", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "886", "date": "2021-06-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "887", "date": "2021-05-24", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "888", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "889", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "890", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "891", "date": "2021-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "892", "date": "2021-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "669", "date": "2021-05-28", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "854", "date": "2021-05-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582430}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "893", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "894", "date": "2021-08-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "895", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "895", "date": "2015-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "895", "date": "2014-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "896", "date": "2021-06-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "772", "date": "2021-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "897", "date": "2021-07-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "898", "date": "2021-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "899", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "900", "date": "2021-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "901", "date": "2021-06-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "669", "date": "2021-06-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1100", "employeeId": "623", "date": "2021-06-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "722", "date": "2021-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "902", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "777", "date": "2021-06-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "903", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582431}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1105", "employeeId": "904", "date": "2021-07-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1106", "employeeId": "905", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "854", "date": "2021-06-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "274", "date": "2021-07-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "782", "date": "2021-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1111", "employeeId": "907", "date": "2021-06-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "908", "date": "2021-06-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "899", "date": "2021-06-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "909", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "910", "date": "2021-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "378", "date": "2021-07-02", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "701", "date": "2021-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "911", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "776", "date": "2021-07-16", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "912", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "772", "date": "2021-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1123", "employeeId": "913", "date": "2021-08-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "610", "date": "2021-08-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582432}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1125", "employeeId": "914", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "763", "date": "2021-07-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "915", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "128", "date": "2021-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "244", "date": "2021-07-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "916", "date": "2021-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "677", "date": "2021-08-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1135", "employeeId": "918", "date": "2021-07-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "919", "date": "2021-08-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "920", "date": "2021-07-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1138", "employeeId": "921", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "922", "date": "2021-07-15", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "923", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "896", "date": "2021-07-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "924", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "925", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "927", "date": "2021-09-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "926", "date": "2021-09-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "929", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582433}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "930", "date": "2021-08-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "629", "date": "2021-07-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "928", "date": "2021-07-26", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "709", "date": "2021-07-26", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "931", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "932", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "933", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "759", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1156", "employeeId": "808", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "775", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "827", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "897", "date": "2021-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "934", "date": "2021-08-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "935", "date": "2021-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1162", "employeeId": "936", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1163", "employeeId": "937", "date": "2021-09-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "907", "date": "2021-08-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "908", "date": "2021-08-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582434}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "938", "date": "2021-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "939", "date": "2021-08-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "940", "date": "2021-08-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "364", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "941", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "942", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "943", "date": "2021-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "944", "date": "2021-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "945", "date": "2021-08-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "282", "date": "2021-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "946", "date": "2021-09-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "162", "date": "2021-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "742", "date": "2021-08-21", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "947", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "948", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "315", "date": "2021-08-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "873", "date": "2021-09-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1184", "employeeId": "201", "date": "2021-08-27", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "951", "date": "2021-08-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582435}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "952", "date": "2021-09-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "953", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "954", "date": "2021-10-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "886", "date": "2021-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "216", "date": "2021-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "304", "date": "2021-08-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "955", "date": "2021-09-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "956", "date": "2021-08-30", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "957", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "958", "date": "2021-10-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "950", "date": "2021-08-31", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "959", "date": "2021-05-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "241", "date": "2021-09-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "960", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "961", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "962", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "344", "date": "2021-09-17", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "546", "date": "2021-09-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582436}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "963", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1205", "employeeId": "964", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "965", "date": "2021-09-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "966", "date": "2021-09-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "259", "date": "2021-09-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "967", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "968", "date": "2021-09-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "969", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1212", "employeeId": "970", "date": "2021-09-08", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "823", "date": "2021-09-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "823", "date": "2021-09-09", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1215", "employeeId": "971", "date": "2021-09-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "972", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "333", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "973", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "974", "date": "2021-09-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "975", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "976", "date": "2021-09-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "665", "date": "2021-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582437}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "977", "date": "2021-10-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "978", "date": "2021-09-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1225", "employeeId": "885", "date": "2021-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1226", "employeeId": "979", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "980", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "902", "date": "2021-09-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "981", "date": "2021-10-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "982", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "983", "date": "2021-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "984", "date": "2021-10-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "985", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "763", "date": "2021-09-20", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "795", "date": "2021-09-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "986", "date": "2021-11-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "987", "date": "2021-11-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "988", "date": "2021-09-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "989", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "205", "date": "2021-10-04", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582438}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1241", "employeeId": "990", "date": "2021-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "288", "date": "2021-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "991", "date": "2021-10-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "992", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "993", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "994", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "793", "date": "2021-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1249", "employeeId": "815", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "996", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "193", "date": "2021-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1252", "employeeId": "997", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "765", "date": "2021-10-08", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "998", "date": "2021-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "999", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "466", "date": "2016-01-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "995", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "1000", "date": "2022-01-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "1001", "date": "2021-10-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "1002", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582439}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "1003", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1262", "employeeId": "1004", "date": "2021-10-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "466", "date": "2016-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "511", "date": "2019-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "918", "date": "2021-10-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "746", "date": "2021-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "1005", "date": "2021-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1268", "employeeId": "1006", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1269", "employeeId": "291", "date": "2021-09-23", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1270", "employeeId": "244", "date": "2021-10-12", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "1007", "date": "2021-10-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "1008", "date": "2021-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "1009", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "1010", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "1011", "date": "2021-10-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "964", "date": "2021-10-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "1012", "date": "2021-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "1013", "date": "2021-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582440}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "1014", "date": "2021-11-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "251", "date": "2021-10-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "1015", "date": "2021-11-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "1016", "date": "2021-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "1017", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "1018", "date": "2021-11-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "1019", "date": "2021-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "966", "date": "2021-10-27", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "1020", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "714", "date": "2021-10-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "1", "date": "2021-10-14", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "210", "date": "2021-10-22", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "1021", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1292", "employeeId": "1022", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1293", "employeeId": "1023", "date": "2021-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "1024", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "861", "date": "2021-11-08", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "1025", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1297", "employeeId": "1026", "date": "2021-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582441}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1298", "employeeId": "1027", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "1028", "date": "2022-01-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "1029", "date": "2022-01-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "1030", "date": "2021-11-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1302", "employeeId": "1031", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "577", "date": "2021-12-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1304", "employeeId": "305", "date": "2021-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "1032", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "1033", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "1034", "date": "2022-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "1035", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "1036", "date": "2021-12-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "1037", "date": "2021-12-13", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "1038", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "1039", "date": "2022-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "1040", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "1041", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1315", "employeeId": "1042", "date": "2021-12-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582442}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "763", "date": "2021-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "1043", "date": "2021-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "1044", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "1045", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1320", "employeeId": "1046", "date": "2021-12-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "1047", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "1048", "date": "2022-01-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "677", "date": "2021-12-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "1049", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "1050", "date": "2021-12-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "783", "date": "2021-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "1051", "date": "2021-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "1052", "date": "2022-01-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "821", "date": "2021-11-23", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "1053", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "1054", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "374", "date": "2021-12-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1333", "employeeId": "1055", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "1056", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582443}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "1057", "date": "2022-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1336", "employeeId": "1058", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "587", "date": "2021-12-16", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "763", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "786", "date": "2022-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "721", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "1059", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "1060", "date": "2022-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "1061", "date": "2022-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "1062", "date": "2022-01-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "1063", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "1064", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "1065", "date": "2022-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "1001", "date": "2021-12-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "1066", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "1067", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "1068", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "1069", "date": "2022-02-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582444}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "846", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "806", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1357", "employeeId": "976", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1358", "employeeId": "965", "date": "2022-01-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "1072", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "1073", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "1074", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "1075", "date": "2022-02-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "1076", "date": "2022-01-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "1077", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "1078", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "956", "date": "2022-01-14", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "1079", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1368", "employeeId": "1", "date": "2022-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "1080", "date": "2022-01-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "1081", "date": "2022-01-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "237", "date": "2022-01-07", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "1083", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "1084", "date": "2022-01-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582445}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "1052", "date": "2022-01-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "1085", "date": "2022-01-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "415", "date": "2022-01-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "1086", "date": "2022-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "995", "date": "2022-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "1003", "date": "2022-01-17", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1382", "employeeId": "1088", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "1089", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "1090", "date": "2022-01-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "1092", "date": "2022-02-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "1093", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "1091", "date": "2022-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "714", "date": "2021-12-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "1095", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "210", "date": "2021-11-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "1096", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "1097", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "621", "date": "2022-01-21", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582446}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "1098", "date": "2022-01-24", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "913", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "1099", "date": "2022-01-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "854", "date": "2022-02-01", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "854", "date": "2022-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "1100", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "1101", "date": "2022-02-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1402", "employeeId": "1102", "date": "2022-02-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "1103", "date": "2022-05-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "857", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "919", "date": "2022-02-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "642", "date": "2022-02-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "175", "date": "2022-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "731", "date": "2022-01-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "283", "date": "2022-02-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "1104", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "1105", "date": "2022-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "1107", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "1108", "date": "2022-02-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582447}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "915", "date": "2022-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "1109", "date": "2022-02-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "1110", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "178", "date": "2022-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "601", "date": "2022-02-17", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "1111", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1421", "employeeId": "154", "date": "2022-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "1112", "date": "2022-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "131", "date": "2022-03-04", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "1113", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "1114", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "1115", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "1116", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "1117", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "1118", "date": "2022-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "1119", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "1120", "date": "2022-02-28", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "1121", "date": "2022-04-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "1122", "date": "2022-03-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582448}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "1124", "date": "2022-02-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "621", "date": "2022-02-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "1126", "date": "2022-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "1127", "date": "2022-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "393", "date": "2022-03-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "1128", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1442", "employeeId": "1129", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "167", "date": "2022-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "1130", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "1131", "date": "2022-05-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "1132", "date": "2022-05-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "186", "date": "2022-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "1133", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "1134", "date": "2022-02-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1451", "employeeId": "1136", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "1023", "date": "2022-03-03", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "946", "date": "2022-03-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "1138", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582449}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "1139", "date": "2022-03-05", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "1140", "date": "2022-03-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "1141", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "1142", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "1143", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "181", "date": "2022-03-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "1144", "date": "2022-04-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "1145", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "1146", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "1147", "date": "2022-04-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "945", "date": "2022-02-23", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "1148", "date": "2022-05-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "832", "date": "2022-03-16", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "945", "date": "2022-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1470", "employeeId": "1149", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "1150", "date": "2022-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1472", "employeeId": "788", "date": "2022-03-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "1060", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "1151", "date": "2022-03-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582450}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "1152", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "1154", "date": "2022-04-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "1155", "date": "2022-04-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "1156", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "1157", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "1158", "date": "2022-04-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "988", "date": "2022-03-29", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "138", "date": "2022-04-01", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "907", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "737", "date": "2022-03-25", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "1159", "date": "2022-04-04", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "900", "date": "2022-03-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "1160", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "1161", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "1162", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "1163", "date": "2022-03-28", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "1164", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "1165", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582451}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "1166", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "1167", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "1168", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "1169", "date": "2022-04-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "188", "date": "2022-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "1170", "date": "2022-04-04", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1500", "employeeId": "1171", "date": "2022-04-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "1172", "date": "2022-04-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "1173", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "1174", "date": "2022-04-01", "employmentStatus": "Vendor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "681", "date": "2022-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "1175", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "1176", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "1178", "date": "2022-05-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "1179", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "1180", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "1181", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1512", "employeeId": "1182", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "697", "date": "2022-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582452}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "1183", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "931", "date": "2022-07-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "1184", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1518", "employeeId": "1185", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "1186", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "1187", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "908", "date": "2022-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "1188", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "1061", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "1190", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "346", "date": "2022-04-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "1191", "date": "2022-06-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "1193", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "761", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1532", "employeeId": "892", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "1194", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "1195", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "920", "date": "2022-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582453}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "1196", "date": "2022-05-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "993", "date": "2022-04-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "1197", "date": "2022-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "1198", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "1199", "date": "2022-04-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "1200", "date": "2022-05-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "1201", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "1203", "date": "2022-05-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1545", "employeeId": "594", "date": "2022-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "1204", "date": "2022-04-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "1205", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1548", "employeeId": "1206", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "1207", "date": "2022-05-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "311", "date": "2014-06-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "311", "date": "2014-08-08", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "1208", "date": "2022-05-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "1209", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "1210", "date": "2022-05-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "1211", "date": "2022-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582454}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "818", "date": "2022-04-27", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "1212", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "621", "date": "2022-05-02", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "1213", "date": "2022-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1560", "employeeId": "835", "date": "2022-05-02", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "1214", "date": "2022-05-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "419", "date": "2022-05-06", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1563", "employeeId": "1215", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "1187", "date": "2022-05-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "609", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "1216", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "1217", "date": "2022-05-23", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "756", "date": "2022-05-12", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "824", "date": "2022-05-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "1219", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "1220", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1575", "employeeId": "1222", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "1223", "date": "2022-05-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1577", "employeeId": "1224", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582455}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "1225", "date": "2022-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1579", "employeeId": "1228", "date": "2022-06-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1580", "employeeId": "1229", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "1081", "date": "2022-05-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "199", "date": "2022-05-23", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "1230", "date": "2022-06-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "1231", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "1233", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "1227", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1587", "employeeId": "677", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "838", "date": "2022-05-20", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1589", "employeeId": "200", "date": "2022-05-23", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "1232", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "546", "date": "2022-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1592", "employeeId": "1061", "date": "2022-06-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "1060", "date": "2022-06-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "702", "date": "2022-05-23", "employmentStatus": "Part-Time Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "1234", "date": "2022-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582456}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "810", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "1235", "date": "2022-05-31", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1600", "employeeId": "1197", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "621", "date": "2022-05-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "823", "date": "2022-05-25", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "1237", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1604", "employeeId": "897", "date": "2022-06-24", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "1238", "date": "2022-07-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1606", "employeeId": "1239", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "1240", "date": "2022-06-13", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1608", "employeeId": "1241", "date": "2022-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1609", "employeeId": "1242", "date": "2022-06-06", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1610", "employeeId": "1243", "date": "2022-06-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "1244", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "335", "date": "2022-06-06", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1613", "employeeId": "156", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "1081", "date": "2022-06-02", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1615", "employeeId": "1245", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "1246", "date": "2022-07-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582457}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1617", "employeeId": "1247", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "1248", "date": "2022-06-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "311", "date": "2022-08-22", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "1250", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "1251", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "1252", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "1108", "date": "2022-07-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "1254", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "1255", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "1256", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1630", "employeeId": "1258", "date": "2022-07-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "1259", "date": "2022-06-15", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1632", "employeeId": "1260", "date": "2022-07-25", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "1261", "date": "2022-06-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "1262", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "1264", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "546", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "842", "date": "2022-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582458}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1639", "employeeId": "1265", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "236", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "1170", "date": "2022-06-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1642", "employeeId": "780", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "1266", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1644", "employeeId": "1267", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "1268", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "832", "date": "2022-06-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "1269", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "1270", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "1272", "date": "2022-06-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "610", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "767", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "1274", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "1275", "date": "2022-07-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "247", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "1276", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "1277", "date": "2022-06-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "1278", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582459}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "1097", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "725", "date": "2022-05-30", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "985", "date": "2022-06-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "1062", "date": "2022-07-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "334", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "408", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "934", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "1280", "date": "2022-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1666", "employeeId": "1281", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "1283", "date": "2022-08-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "1284", "date": "2022-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "629", "date": "2022-07-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "1285", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "965", "date": "2022-07-05", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "582", "date": "2022-07-05", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "1286", "date": "2022-07-11", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "1287", "date": "2022-07-11", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "1151", "date": "2022-07-11", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1676", "employeeId": "1288", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582460}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "1072", "date": "2022-07-11", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "1289", "date": "2022-10-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "1291", "date": "2022-07-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "134", "date": "2022-07-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "584", "date": "2022-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1682", "employeeId": "209", "date": "2022-07-08", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "1292", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "367", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "725", "date": "2022-07-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "783", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "1290", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "1293", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "1294", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1690", "employeeId": "808", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "222", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "1295", "date": "2022-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "1296", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "1146", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582461}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "1297", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "1248", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "225", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "1301", "date": "2022-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "686", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "1047", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "988", "date": "2022-07-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "1111", "date": "2022-07-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "197", "date": "2022-07-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "908", "date": "2022-07-22", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "1303", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "1304", "date": "2022-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "1300", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "1305", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "245", "date": "2022-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "1196", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1712", "employeeId": "132", "date": "2022-07-29", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "1306", "date": "2022-08-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1714", "employeeId": "1298", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582462}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "1155", "date": "2022-10-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "1307", "date": "2022-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1717", "employeeId": "985", "date": "2022-07-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "1286", "date": "2022-08-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "1308", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "1309", "date": "2022-05-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "1310", "date": "2022-08-08", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "1166", "date": "2022-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "818", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "134", "date": "2022-08-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "1271", "date": "2022-08-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "1311", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "226", "date": "2022-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1729", "employeeId": "1141", "date": "2022-08-08", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "1312", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1731", "employeeId": "1313", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "1314", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "907", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582463}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1734", "employeeId": "1165", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "1167", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1736", "employeeId": "1164", "date": "2022-08-26", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1737", "employeeId": "1030", "date": "2022-09-16", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1738", "employeeId": "1315", "date": "2022-08-22", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "817", "date": "2022-08-26", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "1316", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1741", "employeeId": "1317", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "1320", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "1132", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "1131", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "1207", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "1081", "date": "2022-08-19", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "199", "date": "2022-08-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "903", "date": "2022-08-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "682", "date": "2022-08-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "705", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "1204", "date": "2022-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582464}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "227", "date": "2022-08-18", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "1188", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1754", "employeeId": "975", "date": "2022-10-17", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "1141", "date": "2022-08-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1756", "employeeId": "1323", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "1318", "date": "2022-08-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "1324", "date": "2022-08-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1759", "employeeId": "1024", "date": "2022-08-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "1325", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "1101", "date": "2022-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "989", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1763", "employeeId": "1326", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "1327", "date": "2022-08-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "1328", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "614", "date": "2022-09-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "1329", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "850", "date": "2022-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "1241", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "1217", "date": "2022-09-02", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582465}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "1242", "date": "2022-09-06", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "1330", "date": "2022-09-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "1321", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "1302", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "1299", "date": "2022-09-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "1273", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1777", "employeeId": "1322", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "1319", "date": "2022-10-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "1331", "date": "2022-09-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "1332", "date": "2022-09-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "1215", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1783", "employeeId": "1314", "date": "2022-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "1333", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "1334", "date": "2022-09-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "1335", "date": "2022-09-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "998", "date": "2022-05-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1788", "employeeId": "1111", "date": "2022-09-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "1120", "date": "2022-08-29", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582466}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1790", "employeeId": "1259", "date": "2022-09-06", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "1336", "date": "2022-09-09", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1792", "employeeId": "412", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "313", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "1338", "date": "2022-09-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1795", "employeeId": "1339", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "1340", "date": "2022-10-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "1342", "date": "2022-09-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "725", "date": "2022-12-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1799", "employeeId": "1341", "date": "2022-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1800", "employeeId": "1275", "date": "2022-09-09", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "1343", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1802", "employeeId": "227", "date": "2022-09-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "1344", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "641", "date": "2022-09-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1805", "employeeId": "1345", "date": "2022-09-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "1026", "date": "2022-05-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "1026", "date": "2022-11-15", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1808", "employeeId": "231", "date": "2022-09-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582467}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "1243", "date": "2022-09-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1810", "employeeId": "1346", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "621", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1812", "employeeId": "1348", "date": "2022-10-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "1349", "date": "2022-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1814", "employeeId": "730", "date": "2022-09-26", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "1108", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "1350", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "1351", "date": "2021-09-27", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1818", "employeeId": "971", "date": "2022-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "1352", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "1353", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "1347", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1822", "employeeId": "1356", "date": "2022-09-05", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "1357", "date": "2022-10-17", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1824", "employeeId": "158", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "807", "date": "2022-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1826", "employeeId": "144", "date": "2022-10-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582468}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "227", "date": "2022-10-10", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "1358", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "1360", "date": "2022-10-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1831", "employeeId": "863", "date": "2022-10-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "1024", "date": "2022-10-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1833", "employeeId": "797", "date": "2022-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "178", "date": "2022-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1835", "employeeId": "1362", "date": "2022-10-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "874", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1837", "employeeId": "353", "date": "2010-09-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "1363", "date": "2022-10-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "1155", "date": "2022-10-14", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "725", "date": "2022-11-21", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "364", "date": "2022-11-04", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1842", "employeeId": "742", "date": "2022-09-12", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "197", "date": "2022-10-17", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1844", "employeeId": "1364", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "165", "date": "2022-10-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582469}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "1366", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "1367", "date": "2022-11-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "1368", "date": "2022-11-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1849", "employeeId": "1005", "date": "2022-04-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "1005", "date": "2022-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "1013", "date": "2022-11-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1852", "employeeId": "1369", "date": "2022-11-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "1292", "date": "2022-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1854", "employeeId": "998", "date": "2022-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "1019", "date": "2022-05-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "1019", "date": "2022-11-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "1370", "date": "2022-01-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "1371", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "910", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "953", "date": "2022-11-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "1355", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "1372", "date": "2022-12-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "227", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "1365", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582470}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1865", "employeeId": "1373", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "1375", "date": "2022-11-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1867", "employeeId": "1376", "date": "2023-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "1021", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "120", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "1361", "date": "2023-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "1354", "date": "2023-01-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "1374", "date": "2023-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "1378", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1875", "employeeId": "1379", "date": "2023-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "1381", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1877", "employeeId": "587", "date": "2022-12-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "613", "date": "2022-12-26", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1879", "employeeId": "1382", "date": "2023-01-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "353", "date": "2022-12-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1881", "employeeId": "1182", "date": "2022-11-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "1383", "date": "2022-12-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "959", "date": "2022-12-05", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "197", "date": "2022-11-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582471}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "1384", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1887", "employeeId": "1385", "date": "2023-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1386", "date": "2023-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1387", "date": "2022-12-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1890", "employeeId": "1388", "date": "2022-12-09", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1891", "employeeId": "1389", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1152", "date": "2022-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1893", "employeeId": "1390", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1010", "date": "2022-12-09", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1895", "employeeId": "1335", "date": "2022-12-06", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1896", "employeeId": "1027", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "825", "date": "2022-12-23", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "634", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "895", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "356", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1902", "employeeId": "1233", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "348", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "267", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582472}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1905", "employeeId": "1088", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "1391", "date": "2023-02-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "363", "date": "2022-12-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "767", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1909", "employeeId": "1392", "date": "2022-12-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1393", "date": "2023-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1911", "employeeId": "134", "date": "2022-12-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "286", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1394", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "979", "date": "2022-11-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1915", "employeeId": "1395", "date": "2023-01-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "652", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1917", "employeeId": "967", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1140", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "142", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "826", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "1342", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "770", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582473}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "1265", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "829", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "651", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "145", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "155", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "790", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "173", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "1024", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "1267", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "1077", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "1214", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "134", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "704", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "250", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "643", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "851", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1940", "employeeId": "1295", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "669", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1105", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582474}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "163", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "676", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "715", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "996", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "1256", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "600", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "722", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "1043", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "149", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1183", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1162", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1067", "date": "2023-01-13", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "1141", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "1020", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "174", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "991", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "1225", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "1126", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582475}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "207", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "1397", "date": "2023-02-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "951", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "1018", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "946", "date": "2022-09-07", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "1008", "date": "2022-04-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "1008", "date": "2022-10-18", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "1351", "date": "2022-09-27", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "1235", "date": "2022-12-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "1240", "date": "2022-12-16", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "922", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "1110", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "730", "date": "2022-11-11", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "1121", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "928", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "849", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "984", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "670", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1398", "date": "2023-01-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582476}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "759", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "745", "date": "2023-01-06", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "1400", "date": "2023-01-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "1266", "date": "2022-12-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1984", "employeeId": "615", "date": "2022-12-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1985", "employeeId": "794", "date": "2022-12-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "192", "date": "2023-01-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "1401", "date": "2023-01-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "182", "date": "2023-01-13", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "1402", "date": "2023-01-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "1399", "date": "2023-02-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "1403", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "197", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "696", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "615", "date": "2023-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "794", "date": "2023-01-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "414", "date": "2023-01-18", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "330", "date": "2023-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582477}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "1335", "date": "2023-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1210", "date": "2023-01-17", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "818", "date": "2023-01-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "1334", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "1336", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2003", "employeeId": "1120", "date": "2023-01-20", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2004", "employeeId": "763", "date": "2023-01-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2005", "employeeId": "1243", "date": "2023-01-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2006", "employeeId": "1241", "date": "2023-01-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "1315", "date": "2023-01-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2008", "employeeId": "1405", "date": "2020-01-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "1330", "date": "2023-02-03", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "818", "date": "2023-01-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "593", "date": "2023-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "290", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2013", "employeeId": "1091", "date": "2023-03-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2014", "employeeId": "844", "date": "2022-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2015", "employeeId": "1278", "date": "2023-02-10", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2016", "employeeId": "119", "date": "2023-02-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582478}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2017", "employeeId": "998", "date": "2023-02-01", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2018", "employeeId": "1404", "date": "2023-02-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1407", "date": "2023-02-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "1408", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1409", "date": "2023-02-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "1410", "date": "2023-02-06", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "1411", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "1412", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2025", "employeeId": "1413", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2026", "employeeId": "1414", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "1415", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "1416", "date": "2023-02-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "309", "date": "2023-02-28", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "1419", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1420", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2032", "employeeId": "1421", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "1422", "date": "2023-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "1207", "date": "2023-02-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "1406", "date": "2023-02-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582479}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "1241", "date": "2023-02-17", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "935", "date": "2023-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "1345", "date": "2023-03-13", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "1301", "date": "2023-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2041", "employeeId": "907", "date": "2023-06-19", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1165", "date": "2023-06-19", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2043", "employeeId": "1426", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "1427", "date": "2023-06-16", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2045", "employeeId": "1424", "date": "2023-03-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "1418", "date": "2023-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2047", "employeeId": "1332", "date": "2023-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "588", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "1367", "date": "2023-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "1369", "date": "2023-03-23", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1428", "date": "2023-01-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "1429", "date": "2023-02-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "1431", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "1432", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582480}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "1433", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "1434", "date": "2023-02-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1435", "date": "2022-04-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "1435", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "1436", "date": "2022-09-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2061", "employeeId": "1437", "date": "2022-08-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2062", "employeeId": "1437", "date": "2023-03-03", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "1438", "date": "2023-02-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "1439", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2065", "employeeId": "1439", "date": "2023-02-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2066", "employeeId": "1440", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2067", "employeeId": "1440", "date": "2023-02-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2068", "employeeId": "1441", "date": "2022-06-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "1441", "date": "2022-12-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "1442", "date": "2022-10-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "1442", "date": "2022-11-01", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "605", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "1008", "date": "2023-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "1005", "date": "2023-03-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582481}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2075", "employeeId": "1430", "date": "2023-03-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "1430", "date": "2023-03-10", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "771", "date": "2023-03-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "987", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "1428", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "1438", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "1429", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "1431", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "1432", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "1433", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "1434", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "1436", "date": "2023-03-16", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "1309", "date": "2022-08-21", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "1295", "date": "2023-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2089", "employeeId": "1295", "date": "2023-03-17", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "1443", "date": "2023-03-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "1445", "date": "2023-03-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "1445", "date": "2023-03-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "1446", "date": "2023-03-27", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582482}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "1425", "date": "2023-03-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "1425", "date": "2023-04-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "846", "date": "2023-03-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "950", "date": "2023-03-29", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "1007", "date": "2023-04-25", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "376", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "264", "date": "2023-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "292", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "1444", "date": "2023-04-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "1417", "date": "2023-05-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "669", "date": "2023-04-03", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "1049", "date": "2023-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "1154", "date": "2023-04-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "1449", "date": "2023-04-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "1449", "date": "2023-04-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "1451", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "1291", "date": "2023-03-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "257", "date": "2023-04-19", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582483}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "748", "date": "2023-04-14", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "1448", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "1357", "date": "2023-04-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "1132", "date": "2023-05-30", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "1340", "date": "2023-04-21", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "205", "date": "2023-04-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "342", "date": "2023-05-01", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2120", "employeeId": "671", "date": "2023-06-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "1454", "date": "2023-04-04", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "1455", "date": "2023-04-04", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "1453", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "1456", "date": "2023-04-24", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2125", "employeeId": "725", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "1457", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "1457", "date": "2023-05-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2128", "employeeId": "1453", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "1452", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "1452", "date": "2023-05-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "725", "date": "2023-04-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582484}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "1291", "date": "2023-04-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "1266", "date": "2023-04-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "1210", "date": "2023-04-26", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "1409", "date": "2023-04-25", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "1181", "date": "2023-05-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "171", "date": "2023-05-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "1459", "date": "2023-05-03", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "1296", "date": "2023-05-26", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "1179", "date": "2023-05-12", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "1063", "date": "2023-05-19", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "1327", "date": "2023-05-09", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "1463", "date": "2023-05-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "1465", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "1461", "date": "2023-05-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "1461", "date": "2023-06-05", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "1464", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "1460", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "1466", "date": "2023-05-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582485}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "1045", "date": "2023-05-26", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "1467", "date": "2023-05-17", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "1467", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2153", "employeeId": "1468", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "1469", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "1470", "date": "2023-05-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "1472", "date": "2023-06-07", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "1248", "date": "2023-06-27", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "1473", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "307", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "924", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "1400", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2162", "employeeId": "1401", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "1474", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "1476", "date": "2023-06-12", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "1477", "date": "2023-09-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "1478", "date": "2023-09-04", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "1471", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2168", "employeeId": "1480", "date": "2023-07-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582486}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "1462", "date": "2023-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "1481", "date": "2023-05-19", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "1482", "date": "2021-08-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "1483", "date": "2023-04-06", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "1484", "date": "2023-03-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "1485", "date": "2021-08-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "266", "date": "2022-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "1486", "date": "2023-03-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "1487", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "1488", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "1489", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "1490", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "1491", "date": "2020-06-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "1492", "date": "2022-05-31", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2183", "employeeId": "1493", "date": "2022-03-21", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "1494", "date": "2022-02-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "1495", "date": "2022-09-28", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2186", "employeeId": "1496", "date": "2023-05-26", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582487}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "1475", "date": "2023-05-30", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "1475", "date": "2023-06-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "1479", "date": "2023-09-04", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "1210", "date": "2023-06-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "1353", "date": "2023-05-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "1499", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "1500", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "1501", "date": "2023-05-17", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "1502", "date": "2023-05-08", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2196", "employeeId": "1159", "date": "2023-05-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "192", "date": "2023-05-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "1098", "date": "2023-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "1498", "date": "2023-06-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "1498", "date": "2023-06-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "1504", "date": "2023-06-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "1504", "date": "2023-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "1505", "date": "2023-04-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "649", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "1508", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582488}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "1510", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "1511", "date": "2023-06-20", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "1258", "date": "2023-07-03", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "1512", "date": "2023-06-21", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "1503", "date": "2023-06-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "1513", "date": "2023-06-07", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "1184", "date": "2023-06-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "1284", "date": "2023-06-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "1286", "date": "2023-07-13", "employmentStatus": "Fixed Term", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "1507", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "1507", "date": "2023-07-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "1497", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "1497", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "1506", "date": "2023-06-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "1506", "date": "2023-06-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "1421", "date": "2023-06-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "1446", "date": "2023-06-13", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "210", "date": "2023-06-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582489}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "691", "date": "2023-06-19", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "707", "date": "2023-08-21", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "410", "date": "2023-08-28", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "1078", "date": "2023-07-28", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "1520", "date": "2023-07-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "1458", "date": "2023-07-10", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "1518", "date": "2023-07-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "1523", "date": "2023-07-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "1291", "date": "2023-07-31", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "1515", "date": "2023-07-12", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "1515", "date": "2023-07-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "1522", "date": "2023-07-13", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "1522", "date": "2023-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "691", "date": "2023-07-31", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "124", "date": "2019-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "1083", "date": "2023-07-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "1526", "date": "2023-07-19", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "1526", "date": "2023-07-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "925", "date": "2023-07-20", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582490}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "1328", "date": "2023-07-21", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "1527", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "1529", "date": "2023-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "1528", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "1530", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "1531", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "1532", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "1533", "date": "2023-07-31", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "1524", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "1524", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "1525", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "1525", "date": "2023-07-31", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "1521", "date": "2023-07-27", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "1521", "date": "2023-08-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "1248", "date": "2023-08-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "695", "date": "2023-08-04", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "1315", "date": "2023-08-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "210", "date": "2023-07-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "1538", "date": "2023-08-07", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582491}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "1539", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "923", "date": "2023-08-09", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "1286", "date": "2023-08-08", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "1540", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "1541", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "1426", "date": "2023-08-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "1472", "date": "2023-08-10", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "1474", "date": "2023-08-11", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "1165", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "907", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "1427", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "1476", "date": "2023-08-18", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "1544", "date": "2023-08-10", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "1543", "date": "2023-08-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "1543", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "1542", "date": "2023-08-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "1542", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "714", "date": "2023-09-29", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582492}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "959", "date": "2023-08-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "1421", "date": "2023-08-14", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "1457", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "1545", "date": "2023-09-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "1366", "date": "2023-08-15", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "1536", "date": "2023-08-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "1536", "date": "2023-08-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "1403", "date": "2023-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "1360", "date": "2023-08-16", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "401", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "1268", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "311", "date": "2023-08-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "1547", "date": "2023-08-29", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "1548", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "1548", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "1546", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "1546", "date": "2023-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "1535", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "1535", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582493}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "1534", "date": "2023-08-21", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "1534", "date": "2023-08-28", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "1516", "date": "2023-08-21", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "1549", "date": "2023-08-24", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "1492", "date": "2023-08-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "1287", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "1550", "date": "2023-08-28", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "1291", "date": "2023-08-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "1083", "date": "2023-06-12", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "1461", "date": "2023-08-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "1554", "date": "2023-09-01", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "1415", "date": "2023-08-07", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "143", "date": "2023-09-22", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "839", "date": "2023-09-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "1514", "date": "2023-10-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "1552", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "1552", "date": "2023-09-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "1551", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582494}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "1551", "date": "2023-09-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "1556", "date": "2023-09-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "1556", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "1553", "date": "2023-09-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "1553", "date": "2023-10-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "364", "date": "2023-09-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "1119", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "1083", "date": "2023-09-07", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "1388", "date": "2023-09-05", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "1415", "date": "2023-09-07", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "1558", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "1557", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "1559", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "1132", "date": "2023-08-25", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "963", "date": "2023-09-11", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "1560", "date": "2023-09-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "1560", "date": "2023-09-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "650", "date": "2023-09-11", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Death", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "1561", "date": "2023-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582495}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "1547", "date": "2023-09-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "1562", "date": "2023-10-09", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "150", "date": "2023-10-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "909", "date": "2023-10-01", "employmentStatus": "Part-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "403", "date": "2023-11-24", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "757", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "1463", "date": "2023-09-22", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "1563", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "1124", "date": "2023-09-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "1564", "date": "2023-10-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "1260", "date": "2023-09-28", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "700", "date": "2023-10-10", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "1220", "date": "2023-10-06", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "1565", "date": "2023-11-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "1566", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2356", "employeeId": "1569", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "1568", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "1568", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582496}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2359", "employeeId": "1567", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "1569", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "1566", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "1565", "date": "2023-09-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "1567", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "820", "date": "2023-09-28", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "1570", "date": "2023-10-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "1571", "date": "2023-10-02", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "1381", "date": "2023-10-09", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "719", "date": "2023-09-30", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "669", "date": "2023-09-10", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "1466", "date": "2023-08-23", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "1572", "date": "2021-07-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "1573", "date": "2021-07-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "1574", "date": "2023-06-08", "employmentStatus": "Vendor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "1555", "date": "2023-10-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "1555", "date": "2023-10-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "1575", "date": "2023-10-04", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "1575", "date": "2023-10-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582497}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "1576", "date": "2023-10-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "1124", "date": "2023-10-09", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "739", "date": "2023-10-28", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "1578", "date": "2023-10-10", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "1578", "date": "2023-11-06", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "1136", "date": "2023-11-03", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "1317", "date": "2023-10-30", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "1484", "date": "2023-10-13", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "587", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2387", "employeeId": "1180", "date": "2023-10-16", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "1580", "date": "2023-10-30", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "1481", "date": "2023-10-17", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2390", "employeeId": "1452", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "1518", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "1581", "date": "2023-10-23", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "1577", "date": "2023-10-18", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "1577", "date": "2023-10-23", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "1118", "date": "2023-10-18", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "1194", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582498}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "1335", "date": "2023-10-23", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "1582", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "1014", "date": "2023-10-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "410", "date": "2023-10-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "901", "date": "2023-11-17", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "1583", "date": "2023-10-30", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "1583", "date": "2023-10-24", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "1044", "date": "2023-10-25", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "1586", "date": "2023-10-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "1587", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "1588", "date": "2023-11-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "1589", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "1590", "date": "2023-11-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "190", "date": "2023-11-15", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "1593", "date": "2023-10-30", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "1073", "date": "2023-11-03", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "1356", "date": "2023-10-23", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "1362", "date": "2023-10-31", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582499}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "1592", "date": "2023-11-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "1592", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "1591", "date": "2023-11-06", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "1591", "date": "2023-11-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "1002", "date": "2023-11-24", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "1585", "date": "2023-11-07", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "1585", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "1584", "date": "2023-11-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "1584", "date": "2023-11-27", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "1579", "date": "2023-11-08", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "1579", "date": "2024-01-02", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "859", "date": "2023-11-22", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "1597", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "395", "date": "2024-02-01", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "1598", "date": "2023-11-20", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "1599", "date": "2023-11-24", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "707", "date": "2023-11-21", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "1384", "date": "2023-11-15", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "1600", "date": "2023-11-13", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582500}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "1600", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "1601", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "1603", "date": "2023-11-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "1604", "date": "2023-11-13", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2441", "employeeId": "820", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "1044", "date": "2023-11-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "1605", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2444", "employeeId": "1605", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1595", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1595", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "1602", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1602", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "1606", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1606", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "1607", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1607", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "1608", "date": "2023-11-15", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1608", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582501}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1609", "date": "2024-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2456", "employeeId": "1610", "date": "2023-11-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "1610", "date": "2023-11-27", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2458", "employeeId": "1611", "date": "2023-11-16", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2459", "employeeId": "1612", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "1612", "date": "2023-11-16", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "1613", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "1614", "date": "2023-12-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "1335", "date": "2023-11-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "1346", "date": "2023-11-17", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1507", "date": "2023-11-17", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1615", "date": "2023-11-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "1615", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "1616", "date": "2023-11-20", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "1616", "date": "2023-12-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "1618", "date": "2023-12-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1619", "date": "2023-11-29", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2472", "employeeId": "1620", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "1621", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582502}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "1073", "date": "2023-11-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1622", "date": "2024-03-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "669", "date": "2023-11-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "775", "date": "2024-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2478", "employeeId": "1073", "date": "2023-12-06", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "1617", "date": "2023-11-28", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "1617", "date": "2023-12-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "1624", "date": "2023-11-29", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "1624", "date": "2023-12-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "1598", "date": "2023-12-01", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "1103", "date": "2024-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "1568", "date": "2023-11-29", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "1628", "date": "2023-12-04", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "1628", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1626", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2489", "employeeId": "1626", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1625", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "1625", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582503}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "1627", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "1627", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "1623", "date": "2023-12-05", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1623", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2496", "employeeId": "1630", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "1313", "date": "2023-12-07", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "936", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1631", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "1632", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1180", "date": "2023-12-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1633", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1634", "date": "2024-01-22", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1635", "date": "2024-03-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2505", "employeeId": "1636", "date": "2024-03-18", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1629", "date": "2023-12-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1629", "date": "2023-12-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "1637", "date": "2023-12-11", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2509", "employeeId": "1637", "date": "2023-12-18", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1599", "date": "2023-12-15", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582504}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "1624", "date": "2023-12-13", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1638", "date": "2023-12-11", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1638", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1639", "date": "2023-12-12", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1639", "date": "2024-01-15", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1608", "date": "2023-12-04", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2517", "employeeId": "1640", "date": "2023-12-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1640", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1641", "date": "2023-12-14", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1641", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "1373", "date": "2023-12-18", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "1325", "date": "2023-12-13", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "1642", "date": "2023-12-14", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2524", "employeeId": "1028", "date": "2024-01-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1643", "date": "2023-12-14", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "1643", "date": "2024-01-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "1025", "date": "2024-01-02", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2528", "employeeId": "1644", "date": "2024-01-15", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582505}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1443", "date": "2023-12-27", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1646", "date": "2024-01-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1145", "date": "2024-01-12", "employmentStatus": "Terminated", "terminationReasonId": "Management Dissatisfaction", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "266", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "176", "date": "2024-01-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2535", "employeeId": "1083", "date": "2024-01-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2536", "employeeId": "1373", "date": "2024-01-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1036", "date": "2024-01-12", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1648", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1648", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1649", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "1649", "date": "2024-01-22", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "1650", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "1650", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1643", "date": "2024-01-03", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2545", "employeeId": "639", "date": "2024-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "179", "date": "2024-01-05", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2547", "employeeId": "1550", "date": "2024-01-26", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "1541", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582506}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "1651", "date": "2024-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "1652", "date": "2024-06-03", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "1426", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "1477", "date": "2024-03-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "1645", "date": "2024-01-09", "employmentStatus": "Pre-hire", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1645", "date": "2024-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "739", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "1647", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "1506", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "664", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "242", "date": "2024-01-10", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "1653", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "748", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "974", "date": "2024-01-15", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "1540", "date": "2024-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "645", "date": "2024-02-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1549", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2566", "employeeId": "963", "date": "2024-01-16", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582507}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1571", "date": "2024-01-18", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1624", "date": "2024-01-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "1654", "date": "2024-01-29", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1655", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1656", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1478", "date": "2024-03-04", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1455", "date": "2024-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2575", "employeeId": "1593", "date": "2024-01-19", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "374", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "393", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2578", "employeeId": "939", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "977", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "1011", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1037", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2582", "employeeId": "1041", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "1178", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2584", "employeeId": "1211", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1372", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "1395", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582508}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "1397", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "1546", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1617", "date": "2024-01-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "1325", "date": "2024-02-19", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1658", "date": "2024-02-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2593", "employeeId": "952", "date": "2024-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1150", "date": "2024-01-24", "employmentStatus": "Terminated", "terminationReasonId": "Redundancy", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2595", "employeeId": "1657", "date": "2024-02-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2596", "employeeId": "1659", "date": "2024-02-12", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2597", "employeeId": "1660", "date": "2024-02-19", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2598", "employeeId": "1661", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2599", "employeeId": "820", "date": "2024-02-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1016", "date": "2024-02-09", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1663", "date": "2024-01-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "265", "date": "2024-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Mutual Agreement", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1662", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "1405", "date": "2023-12-31", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "1405", "date": "2024-01-01", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582509}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "954", "date": "2024-02-01", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2607", "employeeId": "1666", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1667", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "1668", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1665", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1127", "date": "2024-04-22", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2612", "employeeId": "1669", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1670", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "1671", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1664", "date": "2024-02-19", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1086", "date": "2024-02-18", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "999", "date": "2024-01-26", "employmentStatus": "LOA", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "1513", "date": "2024-01-26", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "1540", "date": "2024-01-31", "employmentStatus": "Terminated", "terminationReasonId": "Contract ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "1529", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "1672", "date": "2024-03-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "1673", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "1674", "date": "2024-03-04", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "1675", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582510}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "1677", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "1373", "date": "2024-02-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2627", "employeeId": "813", "date": "2024-03-11", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Upon review", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2628", "employeeId": "1223", "date": "2024-02-12", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1678", "date": "2024-02-13", "employmentStatus": "HR Admin Use Only", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1676", "date": "2024-05-06", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1350", "date": "2024-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "1048", "date": "2024-02-13", "employmentStatus": "Terminated", "terminationReasonId": "Performance", "terminationTypeId": "Termination (Involuntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1680", "date": "2024-04-12", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2635", "employeeId": "1244", "date": "2024-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "1682", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "1362", "date": "2024-02-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "1683", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "1684", "date": "2024-02-26", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2640", "employeeId": "153", "date": "2024-02-16", "employmentStatus": "Terminated", "terminationReasonId": "Career Growth", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "1686", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "1681", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2643", "employeeId": "1687", "date": "2024-06-03", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "1685", "date": "2024-03-04", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582511}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "1689", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "1690", "date": "2024-02-22", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "1691", "date": "2024-03-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2649", "employeeId": "1692", "date": "2024-03-11", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2650", "employeeId": "1664", "date": "2024-02-23", "employmentStatus": "Terminated", "terminationReasonId": "Other", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "No", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "671", "date": "2024-05-05", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "1489", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "1693", "date": "2024-02-26", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1675", "date": "2024-03-11", "employmentStatus": "Consultant", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1694", "date": "2024-05-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1044", "date": "2024-02-28", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "1695", "date": "2024-02-27", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "1696", "date": "2024-04-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "1554", "date": "2024-02-29", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1456", "date": "2024-03-31", "employmentStatus": "Terminated", "terminationReasonId": "Internship ended", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1697", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1698", "date": "2024-03-18", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1699", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582512}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "1700", "date": "2024-03-11", "employmentStatus": "Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1701", "date": "2024-04-22", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1507", "date": "2024-03-08", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1702", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "1474", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "1703", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1704", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1705", "date": "2024-05-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "1706", "date": "2024-05-13", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "1707", "date": "2024-03-25", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1708", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "1709", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1710", "date": "2024-04-01", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1711", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "126", "date": "2024-03-15", "employmentStatus": "Terminated", "terminationReasonId": "Resigned", "terminationTypeId": "Resignation (Voluntary)", "terminationRehireId": "Yes", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1712", "date": "2024-06-24", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "1713", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "1714", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1715", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582513}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "1716", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "1717", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1718", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "1719", "date": "2024-03-01", "employmentStatus": "Sub Contractor", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1720", "date": "2024-06-17", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1721", "date": "2024-04-02", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1722", "date": "2024-05-07", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1723", "date": "2024-06-10", "employmentStatus": "Intern", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1568", "date": "2024-03-20", "employmentStatus": "Full-Time", "terminationReasonId": "", "terminationTypeId": "", "terminationRehireId": "", "benetracStatus": null, "gusto": null, "knoetic_table_name": "employmentStatus"}, "emitted_at": 1710872582514}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2", "employeeId": "419", "startDate": "2019-10-29", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For ChartHop, converting hourly rate to salary.\nBiweekly, non-exempt employee paid $43.27/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3", "employeeId": "118", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "5", "employeeId": "154", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "6", "employeeId": "181", "startDate": "2017-10-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "7", "employeeId": "140", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "99000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "8", "employeeId": "174", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "214200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "9", "employeeId": "226", "startDate": "2019-03-04", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "10", "employeeId": "244", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "11", "employeeId": "246", "startDate": "2019-06-24", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583553}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "12", "employeeId": "162", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "13", "employeeId": "164", "startDate": "2017-05-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "14", "employeeId": "1", "startDate": "2019-09-09", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "15", "employeeId": "206", "startDate": "2018-07-16", "rate": {"currency": "USD", "value": "245000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "16", "employeeId": "165", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "123150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "17", "employeeId": "142", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "18", "employeeId": "219", "startDate": "2019-01-11", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "19", "employeeId": "190", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "20", "employeeId": "139", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "92000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "21", "employeeId": "157", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "22", "employeeId": "193", "startDate": "2019-02-11", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "23", "employeeId": "119", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "24", "employeeId": "156", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "25", "employeeId": "146", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "164430.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "26", "employeeId": "249", "startDate": "2019-07-29", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583554}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "27", "employeeId": "234", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "28", "employeeId": "147", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "152762.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "30", "employeeId": "189", "startDate": "2018-02-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "31", "employeeId": "213", "startDate": "2018-10-29", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "32", "employeeId": "194", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "173250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "33", "employeeId": "227", "startDate": "2019-03-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "34", "employeeId": "153", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "36", "employeeId": "135", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "170100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "37", "employeeId": "150", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "38", "employeeId": "179", "startDate": "2017-10-23", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "39", "employeeId": "180", "startDate": "2017-10-23", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "40", "employeeId": "215", "startDate": "2018-11-27", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "41", "employeeId": "257", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "42", "employeeId": "254", "startDate": "2019-08-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "43", "employeeId": "191", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "117500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583555}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "44", "employeeId": "170", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "45", "employeeId": "205", "startDate": "2018-07-16", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "47", "employeeId": "166", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "48", "employeeId": "198", "startDate": "2018-05-07", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "49", "employeeId": "243", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "50", "employeeId": "148", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "51", "employeeId": "171", "startDate": "2017-07-19", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "52", "employeeId": "129", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "53", "employeeId": "241", "startDate": "2019-10-04", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "54", "employeeId": "235", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "55", "employeeId": "203", "startDate": "2018-07-02", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "56", "employeeId": "133", "startDate": "2014-12-08", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "57", "employeeId": "152", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "58", "employeeId": "232", "startDate": "2019-04-16", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "59", "employeeId": "192", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "114000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583556}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "60", "employeeId": "251", "startDate": "2019-08-12", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "62", "employeeId": "242", "startDate": "2019-06-03", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "63", "employeeId": "199", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "64", "employeeId": "131", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "109000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "65", "employeeId": "145", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "66", "employeeId": "160", "startDate": "2017-02-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "67", "employeeId": "255", "startDate": "2019-09-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "68", "employeeId": "209", "startDate": "2018-08-29", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "69", "employeeId": "195", "startDate": "2018-04-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "70", "employeeId": "225", "startDate": "2019-02-04", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "71", "employeeId": "196", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "72", "employeeId": "155", "startDate": "2016-12-19", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "74", "employeeId": "258", "startDate": "2019-10-14", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "75", "employeeId": "183", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "107000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "76", "employeeId": "114", "startDate": "2019-09-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "77", "employeeId": "144", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "136500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583557}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "78", "employeeId": "158", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "79", "employeeId": "175", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "80", "employeeId": "211", "startDate": "2018-09-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "81", "employeeId": "125", "startDate": "2013-10-14", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "82", "employeeId": "188", "startDate": "2018-01-22", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "83", "employeeId": "120", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "84", "employeeId": "256", "startDate": "2019-09-30", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "85", "employeeId": "200", "startDate": "2018-05-21", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "86", "employeeId": "173", "startDate": "2017-08-24", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "87", "employeeId": "237", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "88", "employeeId": "236", "startDate": "2019-04-29", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "89", "employeeId": "217", "startDate": "2019-01-07", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "90", "employeeId": "185", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "91", "employeeId": "253", "startDate": "2019-08-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "93", "employeeId": "182", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "145600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583558}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "94", "employeeId": "247", "startDate": "2019-07-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "95", "employeeId": "204", "startDate": "2018-07-09", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "96", "employeeId": "132", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "97", "employeeId": "138", "startDate": "2019-02-16", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "99", "employeeId": "240", "startDate": "2019-10-03", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "100", "employeeId": "208", "startDate": "2018-07-30", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "101", "employeeId": "214", "startDate": "2018-11-12", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "102", "employeeId": "223", "startDate": "2019-01-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "103", "employeeId": "210", "startDate": "2018-09-10", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "104", "employeeId": "239", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "48000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "105", "employeeId": "167", "startDate": "2017-06-05", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "106", "employeeId": "233", "startDate": "2019-04-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "107", "employeeId": "159", "startDate": "2017-01-25", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "108", "employeeId": "220", "startDate": "2019-01-14", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "109", "employeeId": "168", "startDate": "2019-10-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583559}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "110", "employeeId": "176", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "168000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "111", "employeeId": "178", "startDate": "2017-10-02", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "112", "employeeId": "124", "startDate": "2019-09-23", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "113", "employeeId": "248", "startDate": "2019-07-22", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "115", "employeeId": "224", "startDate": "2019-01-28", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "116", "employeeId": "218", "startDate": "2019-01-07", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "117", "employeeId": "172", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "118", "employeeId": "202", "startDate": "2018-06-25", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "119", "employeeId": "149", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "107500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "120", "employeeId": "122", "startDate": "2019-05-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "121", "employeeId": "228", "startDate": "2019-03-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "122", "employeeId": "169", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "123", "employeeId": "230", "startDate": "2019-04-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "124", "employeeId": "128", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583560}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "125", "employeeId": "197", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "126", "employeeId": "186", "startDate": "2018-01-02", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "127", "employeeId": "141", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "163200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "128", "employeeId": "161", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "160160.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "129", "employeeId": "222", "startDate": "2019-01-16", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "131", "employeeId": "136", "startDate": "2018-05-01", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "132", "employeeId": "245", "startDate": "2019-09-30", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "133", "employeeId": "177", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "134", "employeeId": "184", "startDate": "2017-12-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "135", "employeeId": "212", "startDate": "2018-10-15", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "136", "employeeId": "250", "startDate": "2019-08-01", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Hired as intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "137", "employeeId": "207", "startDate": "2018-07-23", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "138", "employeeId": "238", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "50000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "139", "employeeId": "201", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "140", "employeeId": "115", "startDate": "2019-03-25", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "141", "employeeId": "231", "startDate": "2019-04-08", "rate": {"currency": "USD", "value": "45.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583561}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "142", "employeeId": "127", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "143", "employeeId": "252", "startDate": "2019-08-19", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "144", "employeeId": "221", "startDate": "2019-01-14", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "145", "employeeId": "134", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "146", "employeeId": "143", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "148800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "147", "employeeId": "229", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "149", "employeeId": "350", "startDate": "2018-05-14", "rate": {"currency": "SEK", "value": "76666.67"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "150", "employeeId": "364", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "151", "employeeId": "357", "startDate": "2018-09-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "152", "employeeId": "316", "startDate": "2019-04-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "153", "employeeId": "117", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "522000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "154", "employeeId": "392", "startDate": "2019-05-13", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "155", "employeeId": "374", "startDate": "2019-01-15", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583562}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "156", "employeeId": "266", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "157", "employeeId": "359", "startDate": "2018-09-10", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "158", "employeeId": "268", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "159", "employeeId": "295", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "137480.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "160", "employeeId": "403", "startDate": "2019-09-02", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "161", "employeeId": "384", "startDate": "2019-04-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "162", "employeeId": "343", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "163", "employeeId": "395", "startDate": "2019-06-10", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "164", "employeeId": "412", "startDate": "2019-10-14", "rate": {"currency": "SEK", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "165", "employeeId": "397", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "166", "employeeId": "304", "startDate": "2019-08-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "167", "employeeId": "288", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Incorporate expenses in the fixed fee.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "168", "employeeId": "393", "startDate": "2019-05-13", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "169", "employeeId": "271", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "170", "employeeId": "371", "startDate": "2019-01-14", "rate": {"currency": "EUR", "value": "3000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Works 15%.", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583563}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "171", "employeeId": "323", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "172", "employeeId": "348", "startDate": "2018-04-02", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "173", "employeeId": "276", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "174", "employeeId": "406", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "175", "employeeId": "329", "startDate": "2017-07-15", "rate": {"currency": "GBP", "value": "70000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "176", "employeeId": "391", "startDate": "2019-05-07", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "177", "employeeId": "404", "startDate": "2019-09-02", "rate": {"currency": "SEK", "value": "52000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "178", "employeeId": "407", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "179", "employeeId": "296", "startDate": "2019-03-01", "rate": {"currency": "GBP", "value": "57500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "180", "employeeId": "293", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "181", "employeeId": "341", "startDate": "2017-09-18", "rate": {"currency": "GBP", "value": "107000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "182", "employeeId": "381", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "183", "employeeId": "385", "startDate": "2019-04-01", "rate": {"currency": "GBP", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "184", "employeeId": "263", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "1968000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving to Sweden", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "185", "employeeId": "278", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "186", "employeeId": "265", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583564}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "187", "employeeId": "415", "startDate": "2019-11-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac62.50 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "188", "employeeId": "396", "startDate": "2019-06-15", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "189", "employeeId": "260", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "190", "employeeId": "347", "startDate": "2019-02-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "191", "employeeId": "277", "startDate": "2017-11-06", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "192", "employeeId": "387", "startDate": "2019-04-08", "rate": {"currency": "GBP", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "193", "employeeId": "284", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "58000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "194", "employeeId": "325", "startDate": "2017-05-22", "rate": {"currency": "GBP", "value": "87.5"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "195", "employeeId": "418", "startDate": "2020-01-07", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "196", "employeeId": "292", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Variable removed.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "197", "employeeId": "320", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "145600.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac70 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "198", "employeeId": "342", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "1140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "199", "employeeId": "306", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "201", "employeeId": "280", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "202", "employeeId": "408", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583565}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "203", "employeeId": "335", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "204", "employeeId": "411", "startDate": "2019-10-07", "rate": {"currency": "EUR", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "206", "employeeId": "262", "startDate": "2019-04-01", "rate": {"currency": "EUR", "value": "137000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "207", "employeeId": "370", "startDate": "2019-01-07", "rate": {"currency": "GBP", "value": "45000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "209", "employeeId": "301", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "210", "employeeId": "305", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "211", "employeeId": "372", "startDate": "2019-01-14", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "212", "employeeId": "344", "startDate": "2018-08-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "213", "employeeId": "116", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "214", "employeeId": "300", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "820000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "215", "employeeId": "365", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "217", "employeeId": "324", "startDate": "2019-06-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "218", "employeeId": "355", "startDate": "2019-08-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583566}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "219", "employeeId": "414", "startDate": "2019-10-21", "rate": {"currency": "GBP", "value": "155000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "220", "employeeId": "334", "startDate": "2018-10-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "221", "employeeId": "327", "startDate": "2019-08-01", "rate": {"currency": "EUR", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "222", "employeeId": "313", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "223", "employeeId": "321", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "224", "employeeId": "353", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "225", "employeeId": "289", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "226", "employeeId": "389", "startDate": "2019-04-17", "rate": {"currency": "GBP", "value": "55000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "227", "employeeId": "377", "startDate": "2019-02-04", "rate": {"currency": "EUR", "value": "500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "228", "employeeId": "386", "startDate": "2019-04-03", "rate": {"currency": "SEK", "value": "996000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "230", "employeeId": "285", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "231", "employeeId": "259", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "232", "employeeId": "294", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "233", "employeeId": "279", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583567}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "234", "employeeId": "349", "startDate": "2018-05-07", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "235", "employeeId": "368", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "236", "employeeId": "361", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "237", "employeeId": "409", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "239", "employeeId": "360", "startDate": "2018-09-24", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "240", "employeeId": "339", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "241", "employeeId": "281", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "244", "employeeId": "309", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583568}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "245", "employeeId": "340", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "53550.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "246", "employeeId": "270", "startDate": "2019-04-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "247", "employeeId": "394", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "248", "employeeId": "275", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "249", "employeeId": "390", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "250", "employeeId": "297", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "251", "employeeId": "410", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "252", "employeeId": "314", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583569}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "253", "employeeId": "328", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "254", "employeeId": "318", "startDate": "2019-05-01", "rate": {"currency": "SEK", "value": "1161600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "255", "employeeId": "332", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "256", "employeeId": "362", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "257", "employeeId": "299", "startDate": "2018-12-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "258", "employeeId": "312", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "60950.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "259", "employeeId": "401", "startDate": "2019-07-03", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "261", "employeeId": "307", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583570}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "262", "employeeId": "326", "startDate": "2019-09-01", "rate": {"currency": "EUR", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "263", "employeeId": "379", "startDate": "2019-02-18", "rate": {"currency": "GBP", "value": "68000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "264", "employeeId": "317", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "111000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "265", "employeeId": "399", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "266", "employeeId": "363", "startDate": "2019-10-01", "rate": {"currency": "EUR", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "267", "employeeId": "274", "startDate": "2019-05-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "268", "employeeId": "376", "startDate": "2019-02-01", "rate": {"currency": "EUR", "value": "108000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "269", "employeeId": "402", "startDate": "2019-09-01", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "270", "employeeId": "388", "startDate": "2019-04-15", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "271", "employeeId": "291", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "272", "employeeId": "405", "startDate": "2019-09-09", "rate": {"currency": "GBP", "value": "70000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "273", "employeeId": "322", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583571}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "274", "employeeId": "378", "startDate": "2019-02-11", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "275", "employeeId": "303", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "48500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "276", "employeeId": "375", "startDate": "2019-01-16", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "277", "employeeId": "367", "startDate": "2018-11-27", "rate": {"currency": "EUR", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "278", "employeeId": "286", "startDate": "2019-02-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "279", "employeeId": "336", "startDate": "2017-08-21", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "280", "employeeId": "373", "startDate": "2019-01-14", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "281", "employeeId": "354", "startDate": "2019-07-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "282", "employeeId": "315", "startDate": "2019-05-01", "rate": {"currency": "GBP", "value": "156000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a375 GBP / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "283", "employeeId": "282", "startDate": "2019-03-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583572}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "284", "employeeId": "337", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "285", "employeeId": "369", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "105000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "286", "employeeId": "400", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "287", "employeeId": "310", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "288", "employeeId": "416", "startDate": "2019-11-18", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "289", "employeeId": "283", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "290", "employeeId": "308", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "291", "employeeId": "319", "startDate": "2019-02-01", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "292", "employeeId": "413", "startDate": "2019-10-14", "rate": {"currency": "GBP", "value": "78000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "293", "employeeId": "290", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Receives EUR 9,600 annual car allowance.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583573}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "294", "employeeId": "346", "startDate": "2019-04-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "295", "employeeId": "267", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "296", "employeeId": "287", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "297", "employeeId": "273", "startDate": "2019-01-01", "rate": {"currency": "DKK", "value": "1476600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "298", "employeeId": "272", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "299", "employeeId": "345", "startDate": "2019-01-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "300", "employeeId": "351", "startDate": "2019-06-01", "rate": {"currency": "EUR", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "301", "employeeId": "261", "startDate": "2018-04-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "302", "employeeId": "356", "startDate": "2019-06-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583574}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "303", "employeeId": "298", "startDate": "2019-10-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "304", "employeeId": "269", "startDate": "2019-01-01", "rate": {"currency": "DKK", "value": "690000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "305", "employeeId": "358", "startDate": "2019-09-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "306", "employeeId": "302", "startDate": "2019-08-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "308", "employeeId": "338", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "309", "employeeId": "421", "startDate": "2019-11-04", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "310", "employeeId": "175", "startDate": "2019-11-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "313", "employeeId": "533", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Intern", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "314", "employeeId": "561", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "315", "employeeId": "539", "startDate": "2017-04-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583575}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "316", "employeeId": "527", "startDate": "2015-07-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "317", "employeeId": "506", "startDate": "2011-02-01", "rate": {"currency": "USD", "value": ""}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "318", "employeeId": "549", "startDate": "2017-09-13", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "319", "employeeId": "523", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "72500"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "320", "employeeId": "553", "startDate": "2017-11-22", "rate": {"currency": "GBP", "value": "65000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "321", "employeeId": "535", "startDate": "2017-06-01", "rate": {"currency": "SEK", "value": "516000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "322", "employeeId": "544", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "323", "employeeId": "531", "startDate": "2017-11-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "324", "employeeId": "510", "startDate": "2011-10-26", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "325", "employeeId": "516", "startDate": "2017-02-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583576}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "326", "employeeId": "536", "startDate": "2017-01-23", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "327", "employeeId": "554", "startDate": "2018-01-08", "rate": {"currency": "GBP", "value": "100000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "328", "employeeId": "560", "startDate": "2018-06-11", "rate": {"currency": "SEK", "value": "150"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "329", "employeeId": "515", "startDate": "2013-06-03", "rate": {"currency": "SEK", "value": "145"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "330", "employeeId": "515", "startDate": "2014-01-02", "rate": {"currency": "SEK", "value": "130"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "332", "employeeId": "545", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "333", "employeeId": "565", "startDate": "2018-08-13", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "335", "employeeId": "541", "startDate": "2017-04-03", "rate": {"currency": "GBP", "value": "51000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "336", "employeeId": "568", "startDate": "2019-07-15", "rate": {"currency": "SEK", "value": "110"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "337", "employeeId": "528", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "576000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583577}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "338", "employeeId": "547", "startDate": "2017-10-01", "rate": {"currency": "GBP", "value": "60000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "339", "employeeId": "534", "startDate": "2016-06-06", "rate": {"currency": "SEK", "value": "130"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "340", "employeeId": "555", "startDate": "2018-01-22", "rate": {"currency": "SEK", "value": "660000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "341", "employeeId": "520", "startDate": "2014-10-13", "rate": {"currency": "GBP", "value": "106300"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "342", "employeeId": "530", "startDate": "2016-02-01", "rate": {"currency": "SEK", "value": "1027500"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "343", "employeeId": "562", "startDate": "2018-06-18", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "344", "employeeId": "557", "startDate": "2018-03-26", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "345", "employeeId": "550", "startDate": "2017-10-01", "rate": {"currency": "SEK", "value": "765000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "346", "employeeId": "512", "startDate": "2012-09-24", "rate": {"currency": "SEK", "value": "300000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "347", "employeeId": "524", "startDate": "2015-04-01", "rate": {"currency": "EUR", "value": "76000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583578}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "348", "employeeId": "566", "startDate": "2019-03-25", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "349", "employeeId": "564", "startDate": "2018-07-16", "rate": {"currency": "EUR", "value": "15"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "350", "employeeId": "504", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "620000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "351", "employeeId": "537", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "352", "employeeId": "502", "startDate": "2013-08-01", "rate": {"currency": "SEK", "value": "540000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "353", "employeeId": "503", "startDate": "2009-11-01", "rate": {"currency": "SEK", "value": "540000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "354", "employeeId": "559", "startDate": "2018-06-01", "rate": {"currency": "SEK", "value": "165"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "355", "employeeId": "509", "startDate": "2011-09-20", "rate": {"currency": "SEK", "value": "792000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "356", "employeeId": "558", "startDate": "2018-03-26", "rate": {"currency": "USD", "value": ""}, "type": "Salary", "exempt": null, "reason": "", "comment": "No pay during internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "357", "employeeId": "556", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "5000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "358", "employeeId": "552", "startDate": "2017-10-09", "rate": {"currency": "GBP", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "359", "employeeId": "507", "startDate": "2011-05-09", "rate": {"currency": "GBP", "value": "91000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "360", "employeeId": "514", "startDate": "2013-01-28", "rate": {"currency": "EUR", "value": "51000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "361", "employeeId": "538", "startDate": "2017-03-15", "rate": {"currency": "EUR", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "362", "employeeId": "511", "startDate": "2012-04-01", "rate": {"currency": "GBP", "value": "80000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583579}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "363", "employeeId": "511", "startDate": "2013-01-01", "rate": {"currency": "NZD", "value": "130000"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "365", "employeeId": "546", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "366", "employeeId": "546", "startDate": "2018-06-26", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "367", "employeeId": "546", "startDate": "2019-06-04", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "368", "employeeId": "551", "startDate": "2017-10-03", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "369", "employeeId": "548", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "101000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "370", "employeeId": "522", "startDate": "2015-02-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "371", "employeeId": "522", "startDate": "2015-10-15", "rate": {"currency": "SEK", "value": "384000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "373", "employeeId": "501", "startDate": "2017-01-01", "rate": {"currency": "SEK", "value": "1080000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "374", "employeeId": "505", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "375", "employeeId": "519", "startDate": "2014-05-05", "rate": {"currency": "EUR", "value": "115000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583580}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "376", "employeeId": "525", "startDate": "2015-04-01", "rate": {"currency": "GBP", "value": "41520"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "377", "employeeId": "563", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "55000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "378", "employeeId": "567", "startDate": "2019-04-23", "rate": {"currency": "SEK", "value": "7000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "379", "employeeId": "513", "startDate": "2012-11-05", "rate": {"currency": "GBP", "value": "30000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "380", "employeeId": "521", "startDate": "2015-01-05", "rate": {"currency": "SEK", "value": "396000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "381", "employeeId": "542", "startDate": "2017-04-17", "rate": {"currency": "GBP", "value": "550"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "382", "employeeId": "540", "startDate": "2017-04-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "383", "employeeId": "517", "startDate": "2014-02-01", "rate": {"currency": "SEK", "value": "420000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "384", "employeeId": "532", "startDate": "2016-04-01", "rate": {"currency": "EUR", "value": "6000"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "385", "employeeId": "526", "startDate": "2015-04-01", "rate": {"currency": "SEK", "value": "155"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583581}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "386", "employeeId": "569", "startDate": "2019-12-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "387", "employeeId": "570", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "388", "employeeId": "571", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "389", "employeeId": "572", "startDate": "2019-11-01", "rate": {"currency": "EUR", "value": "58500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Annual base salary 54 309,53 EUR/year (including 8% holiday allowance of 4344,76) + 1 extra 13th pay of 4190,55 EUR paid in December", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "390", "employeeId": "364", "startDate": "2018-10-15", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "391", "employeeId": "316", "startDate": "2017-04-01", "rate": {"currency": "SEK", "value": "324000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "392", "employeeId": "316", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "393", "employeeId": "316", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "394", "employeeId": "117", "startDate": "2015-09-10", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "395", "employeeId": "117", "startDate": "2017-01-09", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583582}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "396", "employeeId": "117", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "397", "employeeId": "117", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "398", "employeeId": "338", "startDate": "2017-09-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "399", "employeeId": "338", "startDate": "2018-05-01", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "401", "employeeId": "178", "startDate": "2018-05-01", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "402", "employeeId": "142", "startDate": "2015-08-11", "rate": {"currency": "USD", "value": "117500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "403", "employeeId": "142", "startDate": "2016-09-01", "rate": {"currency": "USD", "value": "162652.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Contracting status in Australia", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "404", "employeeId": "241", "startDate": "2019-05-30", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "405", "employeeId": "193", "startDate": "2018-02-26", "rate": {"currency": "USD", "value": "57.70"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "406", "employeeId": "573", "startDate": "2019-10-21", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583583}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "407", "employeeId": "574", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "408", "employeeId": "575", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "409", "employeeId": "576", "startDate": "2019-11-18", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "410", "employeeId": "577", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "411", "employeeId": "299", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "412", "employeeId": "389", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "413", "employeeId": "578", "startDate": "2019-12-02", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "414", "employeeId": "579", "startDate": "2019-12-10", "rate": {"currency": "SEK", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "415", "employeeId": "580", "startDate": "2019-11-18", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "416", "employeeId": "203", "startDate": "2019-12-15", "rate": {"currency": "USD", "value": "218000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "417", "employeeId": "206", "startDate": "2019-12-15", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583584}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "418", "employeeId": "386", "startDate": "2019-12-01", "rate": {"currency": "SEK", "value": "1044000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "419", "employeeId": "167", "startDate": "2019-06-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "420", "employeeId": "123", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "421", "employeeId": "127", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "422", "employeeId": "130", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "423", "employeeId": "170", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "424", "employeeId": "180", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "425", "employeeId": "184", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "426", "employeeId": "185", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "162000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583585}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "427", "employeeId": "189", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "428", "employeeId": "198", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "429", "employeeId": "216", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "167500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "430", "employeeId": "380", "startDate": "2019-03-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "431", "employeeId": "382", "startDate": "2019-05-01", "rate": {"currency": "ILS", "value": "726818.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "To be paid in monthly instalments of 60 568,20 NIS.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "432", "employeeId": "581", "startDate": "2019-10-29", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "433", "employeeId": "582", "startDate": "2019-10-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "434", "employeeId": "295", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "137500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "435", "employeeId": "264", "startDate": "2019-12-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "436", "employeeId": "342", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "437", "employeeId": "266", "startDate": "2012-07-09", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583586}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "438", "employeeId": "266", "startDate": "2015-04-01", "rate": {"currency": "EUR", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "439", "employeeId": "266", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "103950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "440", "employeeId": "266", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Only variable change. Also adding 10k stocks.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "441", "employeeId": "266", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "108950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Only variable change.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "442", "employeeId": "268", "startDate": "2012-10-01", "rate": {"currency": "SEK", "value": "336000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "443", "employeeId": "268", "startDate": "2013-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "444", "employeeId": "268", "startDate": "2015-04-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "445", "employeeId": "268", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "446", "employeeId": "268", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "447", "employeeId": "268", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "448", "employeeId": "295", "startDate": "2015-07-01", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583587}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "449", "employeeId": "295", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "102750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "450", "employeeId": "295", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "122750.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "451", "employeeId": "384", "startDate": "2017-09-13", "rate": {"currency": "SEK", "value": "1872000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "kr900 SEK / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "452", "employeeId": "343", "startDate": "2017-10-16", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "453", "employeeId": "304", "startDate": "2016-02-29", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "454", "employeeId": "304", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "455", "employeeId": "288", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "456", "employeeId": "288", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "457", "employeeId": "288", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base/variable salary change. Adding 5000 stocks.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "458", "employeeId": "288", "startDate": "2019-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "460", "employeeId": "339", "startDate": "2019-12-01", "rate": {"currency": "EUR", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583588}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "461", "employeeId": "271", "startDate": "2013-09-02", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "462", "employeeId": "271", "startDate": "2015-03-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "463", "employeeId": "271", "startDate": "2015-04-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "464", "employeeId": "271", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "465", "employeeId": "271", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "466", "employeeId": "271", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "467", "employeeId": "323", "startDate": "2017-05-08", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "468", "employeeId": "323", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "469", "employeeId": "323", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "470", "employeeId": "276", "startDate": "2014-05-19", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "471", "employeeId": "296", "startDate": "2015-07-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583589}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "472", "employeeId": "296", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "54590.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "473", "employeeId": "293", "startDate": "2015-06-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "474", "employeeId": "293", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "475", "employeeId": "293", "startDate": "2016-11-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "476", "employeeId": "293", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "477", "employeeId": "293", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "478", "employeeId": "293", "startDate": "2019-03-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "479", "employeeId": "278", "startDate": "2014-07-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "480", "employeeId": "278", "startDate": "2016-10-01", "rate": {"currency": "EUR", "value": "62400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "481", "employeeId": "278", "startDate": "2017-12-01", "rate": {"currency": "EUR", "value": "68640.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "482", "employeeId": "265", "startDate": "2012-07-03", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "483", "employeeId": "265", "startDate": "2016-04-01", "rate": {"currency": "EUR", "value": "62400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "484", "employeeId": "265", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "71900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583590}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "485", "employeeId": "265", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "81900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "486", "employeeId": "260", "startDate": "2010-02-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "487", "employeeId": "260", "startDate": "2014-01-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "488", "employeeId": "260", "startDate": "2015-03-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "489", "employeeId": "260", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "490", "employeeId": "260", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "491", "employeeId": "260", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "492", "employeeId": "347", "startDate": "2018-02-12", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "493", "employeeId": "277", "startDate": "2016-01-01", "rate": {"currency": "GBP", "value": "93600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "494", "employeeId": "284", "startDate": "2014-09-01", "rate": {"currency": "SEK", "value": "37000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "495", "employeeId": "284", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583591}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "496", "employeeId": "284", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "44000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "497", "employeeId": "284", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "49000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "498", "employeeId": "284", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "54000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "499", "employeeId": "292", "startDate": "2015-05-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "500", "employeeId": "292", "startDate": "2017-03-01", "rate": {"currency": "GBP", "value": "58200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "501", "employeeId": "292", "startDate": "2017-07-01", "rate": {"currency": "GBP", "value": "78200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "502", "employeeId": "292", "startDate": "2018-10-01", "rate": {"currency": "GBP", "value": "78200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base salary change. Adding 5000 stocks + one time bonus payment.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "503", "employeeId": "320", "startDate": "2017-05-01", "rate": {"currency": "EUR", "value": "135200.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u20ac65 EUR / hour. Working 40 hours/week.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "504", "employeeId": "583", "startDate": "2019-11-11", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "507", "employeeId": "584", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "509", "employeeId": "342", "startDate": "2017-10-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583592}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "510", "employeeId": "342", "startDate": "2018-10-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "511", "employeeId": "342", "startDate": "2012-10-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "512", "employeeId": "342", "startDate": "2012-12-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "513", "employeeId": "342", "startDate": "2015-02-01", "rate": {"currency": "SEK", "value": "696800.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "Fixed hourly fee of SEK 335 (all taxes included).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "514", "employeeId": "572", "startDate": "2018-04-23", "rate": {"currency": "SEK", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "515", "employeeId": "572", "startDate": "2018-09-03", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "518", "employeeId": "330", "startDate": "2017-07-17", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "519", "employeeId": "330", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "520", "employeeId": "330", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "521", "employeeId": "280", "startDate": "2014-08-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "522", "employeeId": "280", "startDate": "2015-08-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "523", "employeeId": "280", "startDate": "2016-08-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583593}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "524", "employeeId": "280", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "525", "employeeId": "280", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "526", "employeeId": "280", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "528", "employeeId": "335", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "529", "employeeId": "335", "startDate": "2017-08-14", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "530", "employeeId": "383", "startDate": "2019-03-04", "rate": {"currency": "GBP", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "531", "employeeId": "328", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "532", "employeeId": "345", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "43000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "533", "employeeId": "265", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "94300.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "534", "employeeId": "290", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "536", "employeeId": "322", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "96800.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "537", "employeeId": "343", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1296000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583594}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "538", "employeeId": "359", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "539", "employeeId": "309", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "540", "employeeId": "274", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "157500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No variable change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "541", "employeeId": "278", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "76500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "542", "employeeId": "296", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "60500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "543", "employeeId": "367", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "544", "employeeId": "305", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "545", "employeeId": "266", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "113950.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "546", "employeeId": "287", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "92500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "547", "employeeId": "289", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "548", "employeeId": "315", "startDate": "2017-03-01", "rate": {"currency": "GBP", "value": "135200.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a365 GBP / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "549", "employeeId": "356", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "1180000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583595}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "550", "employeeId": "312", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "65216.50"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "551", "employeeId": "340", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "57834.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "552", "employeeId": "587", "startDate": "2020-01-09", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "553", "employeeId": "588", "startDate": "2020-01-13", "rate": {"currency": "EUR", "value": "87500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "554", "employeeId": "589", "startDate": "2019-11-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "555", "employeeId": "590", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "556", "employeeId": "591", "startDate": "2020-01-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "557", "employeeId": "592", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "558", "employeeId": "593", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "265000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "559", "employeeId": "594", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "560", "employeeId": "595", "startDate": "2020-01-07", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "563", "employeeId": "262", "startDate": "2011-01-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583596}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "564", "employeeId": "262", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "126000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "565", "employeeId": "262", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Contract", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "566", "employeeId": "398", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "567", "employeeId": "301", "startDate": "2015-11-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "568", "employeeId": "301", "startDate": "2017-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "569", "employeeId": "301", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "570", "employeeId": "305", "startDate": "2016-03-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "571", "employeeId": "344", "startDate": "2017-10-16", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "573", "employeeId": "599", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "574", "employeeId": "600", "startDate": "2019-12-16", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For chartHop, converting hourly rate to salary.\nNon-exempt, bi weekly employee paid $31.25/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "575", "employeeId": "601", "startDate": "2019-12-30", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "576", "employeeId": "245", "startDate": "2019-06-17", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583597}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "577", "employeeId": "245", "startDate": "2020-01-15", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "578", "employeeId": "137", "startDate": "2019-10-16", "rate": {"currency": "USD", "value": "84.13"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Transfer", "comment": "Full time to part time status", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "579", "employeeId": "128", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "580", "employeeId": "179", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "581", "employeeId": "142", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "582", "employeeId": "200", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "181500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "583", "employeeId": "146", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "174295.80"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base and variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "584", "employeeId": "161", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "166566.40"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "585", "employeeId": "171", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "586", "employeeId": "186", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "158100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "587", "employeeId": "212", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "194250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "588", "employeeId": "219", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "122400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583598}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "589", "employeeId": "229", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "119600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "590", "employeeId": "166", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "591", "employeeId": "204", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "592", "employeeId": "172", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "593", "employeeId": "201", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only\n03/04/2020 - email received; entered another adjustment to Tim's salary (from $100k to $140k), retro back to 01/01/2020.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "594", "employeeId": "159", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "229500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "595", "employeeId": "194", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176715.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "596", "employeeId": "135", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176904.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "597", "employeeId": "141", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "169728.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - base & target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "598", "employeeId": "147", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "155817.24"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - salary and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "599", "employeeId": "164", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "145600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "600", "employeeId": "174", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "218484.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "601", "employeeId": "227", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit - base and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583599}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "602", "employeeId": "207", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "165850.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "603", "employeeId": "202", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "192400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "604", "employeeId": "210", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "173400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "605", "employeeId": "217", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "168300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "606", "employeeId": "221", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "209100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "607", "employeeId": "125", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base, and target variable", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "608", "employeeId": "144", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "156500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base salary only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "609", "employeeId": "151", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo - job title, base salary only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "610", "employeeId": "602", "startDate": "2020-01-20", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "611", "employeeId": "603", "startDate": "2019-12-12", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "612", "employeeId": "300", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "613", "employeeId": "365", "startDate": "2018-10-15", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "614", "employeeId": "365", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583600}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "615", "employeeId": "604", "startDate": "2020-01-06", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "616", "employeeId": "605", "startDate": "2020-01-06", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "617", "employeeId": "264", "startDate": "2016-09-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "618", "employeeId": "264", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "619", "employeeId": "264", "startDate": "2018-12-01", "rate": {"currency": "GBP", "value": "126500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "620", "employeeId": "264", "startDate": "2014-01-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "621", "employeeId": "264", "startDate": "2015-09-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "622", "employeeId": "264", "startDate": "2011-08-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "623", "employeeId": "606", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "624", "employeeId": "607", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "625", "employeeId": "608", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "626", "employeeId": "609", "startDate": "2020-03-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "627", "employeeId": "610", "startDate": "2020-03-16", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "628", "employeeId": "611", "startDate": "2020-04-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583601}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "630", "employeeId": "613", "startDate": "2020-03-02", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "631", "employeeId": "241", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "632", "employeeId": "154", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "176800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Annual merit increase - base only", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "633", "employeeId": "614", "startDate": "2020-01-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "634", "employeeId": "324", "startDate": "2017-05-15", "rate": {"currency": "EUR", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "635", "employeeId": "324", "startDate": "2018-06-01", "rate": {"currency": "EUR", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Goes from 4 days/week to a full time employee.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "636", "employeeId": "313", "startDate": "2017-01-23", "rate": {"currency": "SEK", "value": "348000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "637", "employeeId": "313", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "366000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "638", "employeeId": "313", "startDate": "2016-03-21", "rate": {"currency": "SEK", "value": "300000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "639", "employeeId": "116", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "640", "employeeId": "116", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "641", "employeeId": "116", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "642", "employeeId": "116", "startDate": "2014-11-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583602}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "643", "employeeId": "116", "startDate": "2013-04-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "644", "employeeId": "116", "startDate": "2011-10-01", "rate": {"currency": "SEK", "value": "324000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "645", "employeeId": "116", "startDate": "2011-03-01", "rate": {"currency": "SEK", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "646", "employeeId": "116", "startDate": "2010-10-15", "rate": {"currency": "SEK", "value": "276000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "647", "employeeId": "332", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "648", "employeeId": "355", "startDate": "2017-03-06", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "\u00a3350 GBP / day. On workdays, excluding Company holidays and weekends.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "649", "employeeId": "355", "startDate": "2018-06-06", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u00a3400 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "650", "employeeId": "355", "startDate": "2018-08-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "651", "employeeId": "334", "startDate": "2017-08-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "652", "employeeId": "334", "startDate": "2019-11-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "653", "employeeId": "327", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "654", "employeeId": "327", "startDate": "2018-08-01", "rate": {"currency": "EUR", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "655", "employeeId": "321", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "656", "employeeId": "321", "startDate": "2017-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583603}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "657", "employeeId": "321", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "658", "employeeId": "289", "startDate": "2017-07-01", "rate": {"currency": "EUR", "value": "145660.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "659", "employeeId": "289", "startDate": "2015-01-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "660", "employeeId": "289", "startDate": "2015-11-01", "rate": {"currency": "EUR", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Does NOT include EUR 9600 annual car allowance.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "661", "employeeId": "289", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "125660.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "662", "employeeId": "382", "startDate": "2019-03-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "664", "employeeId": "333", "startDate": "2017-08-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "665", "employeeId": "333", "startDate": "2019-10-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "666", "employeeId": "285", "startDate": "2014-09-15", "rate": {"currency": "SEK", "value": "30000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "667", "employeeId": "285", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "668", "employeeId": "285", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "669", "employeeId": "285", "startDate": "2017-06-01", "rate": {"currency": "SEK", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "670", "employeeId": "285", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "671", "employeeId": "615", "startDate": "2020-01-27", "rate": {"currency": "USD", "value": "108500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583604}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "672", "employeeId": "125", "startDate": "2015-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "673", "employeeId": "125", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "675", "employeeId": "182", "startDate": "2017-11-06", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "676", "employeeId": "197", "startDate": "2018-04-30", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "679", "employeeId": "616", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "131000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "680", "employeeId": "617", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "681", "employeeId": "618", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "682", "employeeId": "619", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "683", "employeeId": "259", "startDate": "2009-11-01", "rate": {"currency": "SEK", "value": "348000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "684", "employeeId": "259", "startDate": "2010-06-01", "rate": {"currency": "SEK", "value": "396000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "685", "employeeId": "259", "startDate": "2011-10-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "686", "employeeId": "259", "startDate": "2014-10-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "687", "employeeId": "259", "startDate": "2015-08-01", "rate": {"currency": "SEK", "value": "534000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "688", "employeeId": "259", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583605}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "689", "employeeId": "259", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "690", "employeeId": "294", "startDate": "2015-06-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "691", "employeeId": "294", "startDate": "2016-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "692", "employeeId": "294", "startDate": "2017-07-07", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "693", "employeeId": "294", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "694", "employeeId": "361", "startDate": "2018-02-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Internship", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "695", "employeeId": "361", "startDate": "2018-10-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "696", "employeeId": "331", "startDate": "2017-07-17", "rate": {"currency": "GBP", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "697", "employeeId": "331", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "698", "employeeId": "331", "startDate": "2019-07-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "699", "employeeId": "339", "startDate": "2017-09-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "700", "employeeId": "281", "startDate": "2014-08-04", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "701", "employeeId": "281", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "702", "employeeId": "281", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "703", "employeeId": "281", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583606}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "704", "employeeId": "311", "startDate": "2019-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "705", "employeeId": "311", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "706", "employeeId": "311", "startDate": "2016-12-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "707", "employeeId": "311", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "708", "employeeId": "311", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "709", "employeeId": "309", "startDate": "2016-10-03", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "710", "employeeId": "270", "startDate": "2015-06-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "711", "employeeId": "270", "startDate": "2016-09-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3 mos. notice period.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "712", "employeeId": "270", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "713", "employeeId": "270", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "87150.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "714", "employeeId": "270", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "715", "employeeId": "270", "startDate": "2013-05-13", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "716", "employeeId": "275", "startDate": "2014-03-11", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "717", "employeeId": "620", "startDate": "2020-02-10", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "718", "employeeId": "621", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "129500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583607}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "719", "employeeId": "499", "startDate": "2020-02-03", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Intern to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "720", "employeeId": "622", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "721", "employeeId": "297", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "722", "employeeId": "297", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "723", "employeeId": "297", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "724", "employeeId": "314", "startDate": "2017-02-27", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "725", "employeeId": "314", "startDate": "2018-01-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "726", "employeeId": "328", "startDate": "2017-07-10", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "727", "employeeId": "328", "startDate": "2018-08-01", "rate": {"currency": "GBP", "value": "69000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "728", "employeeId": "318", "startDate": "2017-04-18", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "729", "employeeId": "318", "startDate": "2018-06-01", "rate": {"currency": "SEK", "value": "1056000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583608}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "730", "employeeId": "332", "startDate": "2017-07-17", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "731", "employeeId": "332", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "732", "employeeId": "362", "startDate": "2018-10-01", "rate": {"currency": "EUR", "value": "84000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "733", "employeeId": "299", "startDate": "2015-09-14", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "734", "employeeId": "299", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "735", "employeeId": "299", "startDate": "2017-11-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "736", "employeeId": "312", "startDate": "2016-12-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "737", "employeeId": "312", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "738", "employeeId": "366", "startDate": "2019-11-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "739", "employeeId": "366", "startDate": "2018-11-19", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "740", "employeeId": "307", "startDate": "2016-05-02", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "741", "employeeId": "307", "startDate": "2017-03-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "742", "employeeId": "307", "startDate": "2018-07-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "743", "employeeId": "499", "startDate": "2019-06-10", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583609}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "744", "employeeId": "352", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "204000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "745", "employeeId": "302", "startDate": "2020-02-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "746", "employeeId": "286", "startDate": "2020-02-01", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "747", "employeeId": "326", "startDate": "2017-06-01", "rate": {"currency": "EUR", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "748", "employeeId": "623", "startDate": "2019-12-09", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "749", "employeeId": "624", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "109200.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$52.50/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "750", "employeeId": "625", "startDate": "2020-01-02", "rate": {"currency": "INR", "value": "2700000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "751", "employeeId": "626", "startDate": "2020-01-06", "rate": {"currency": "USD", "value": "163000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "752", "employeeId": "627", "startDate": "2017-12-01", "rate": {"currency": "AUD", "value": "221850.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$850.00 AUD = Daily Rate", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "753", "employeeId": "628", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$20k/month; invoiced monthly, for work @ 75% of full time.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "754", "employeeId": "629", "startDate": "2017-01-10", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "755", "employeeId": "629", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140400.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "756", "employeeId": "629", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "144612.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Promotion", "comment": "$12, 051.00/month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "757", "employeeId": "630", "startDate": "2020-02-10", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "For ChartHop -- updated to salary rate. \nbilling AP, paid hourly at $75/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "758", "employeeId": "631", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "176800.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$85/hr", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583610}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "759", "employeeId": "165", "startDate": "2017-05-05", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "760", "employeeId": "164", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "761", "employeeId": "317", "startDate": "2017-04-01", "rate": {"currency": "EUR", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "762", "employeeId": "317", "startDate": "2018-01-01", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "763", "employeeId": "363", "startDate": "2018-10-01", "rate": {"currency": "EUR", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "764", "employeeId": "274", "startDate": "2014-01-20", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "765", "employeeId": "274", "startDate": "2015-05-01", "rate": {"currency": "EUR", "value": "124800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "766", "employeeId": "274", "startDate": "2017-05-01", "rate": {"currency": "EUR", "value": "128544.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3%", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "767", "employeeId": "274", "startDate": "2017-12-01", "rate": {"currency": "EUR", "value": "141398.40"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "769", "employeeId": "368", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "770", "employeeId": "373", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "771", "employeeId": "374", "startDate": "2020-01-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "772", "employeeId": "306", "startDate": "2016-04-20", "rate": {"currency": "GBP", "value": "145000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "773", "employeeId": "306", "startDate": "2019-11-09", "rate": {"currency": "GBP", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Working part time. Salary is for 2 days/week.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "774", "employeeId": "340", "startDate": "2017-09-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "775", "employeeId": "340", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "52500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "5% increase.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583611}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "776", "employeeId": "291", "startDate": "2015-03-23", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "777", "employeeId": "291", "startDate": "2016-05-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "778", "employeeId": "291", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "779", "employeeId": "291", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "780", "employeeId": "322", "startDate": "2017-05-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "781", "employeeId": "303", "startDate": "2016-01-18", "rate": {"currency": "SEK", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "782", "employeeId": "286", "startDate": "2014-10-15", "rate": {"currency": "GBP", "value": "59000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "783", "employeeId": "286", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "784", "employeeId": "286", "startDate": "2018-01-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "785", "employeeId": "145", "startDate": "2015-10-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "786", "employeeId": "124", "startDate": "2013-04-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "787", "employeeId": "124", "startDate": "2014-07-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "788", "employeeId": "633", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "129500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "789", "employeeId": "124", "startDate": "2015-10-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "790", "employeeId": "124", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583612}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "791", "employeeId": "124", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "792", "employeeId": "124", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "793", "employeeId": "354", "startDate": "2018-07-01", "rate": {"currency": "EUR", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "794", "employeeId": "282", "startDate": "2014-08-06", "rate": {"currency": "GBP", "value": "67500.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "796", "employeeId": "282", "startDate": "2015-10-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "797", "employeeId": "282", "startDate": "2016-10-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "798", "employeeId": "282", "startDate": "2017-12-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "799", "employeeId": "337", "startDate": "2017-08-21", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "800", "employeeId": "337", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "801", "employeeId": "369", "startDate": "2018-04-16", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3250 GBP / day\nWorking up to 2 full working days per week. \nIf additional days in any week are requested by Company, the rate for such additional days is GBP 400.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "802", "employeeId": "634", "startDate": "2020-04-01", "rate": {"currency": "EUR", "value": "147000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "803", "employeeId": "635", "startDate": "2020-04-14", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "804", "employeeId": "310", "startDate": "2016-11-07", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "805", "employeeId": "310", "startDate": "2017-12-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "806", "employeeId": "636", "startDate": "2020-03-02", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "807", "employeeId": "637", "startDate": "2020-03-02", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583613}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "808", "employeeId": "283", "startDate": "2014-08-06", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "809", "employeeId": "283", "startDate": "2015-10-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "812", "employeeId": "283", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "813", "employeeId": "283", "startDate": "2017-08-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "814", "employeeId": "283", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "815", "employeeId": "327", "startDate": "2016-10-01", "rate": {"currency": "EUR", "value": "8400.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "816", "employeeId": "377", "startDate": "2018-08-20", "rate": {"currency": "SEK", "value": "7000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "817", "employeeId": "308", "startDate": "2016-06-01", "rate": {"currency": "SEK", "value": "39000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "818", "employeeId": "308", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "46000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "819", "employeeId": "308", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "820", "employeeId": "319", "startDate": "2017-04-27", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "821", "employeeId": "290", "startDate": "2015-01-07", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "822", "employeeId": "346", "startDate": "2018-02-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "823", "employeeId": "267", "startDate": "2016-01-01", "rate": {"currency": "EUR", "value": "129250.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "824", "employeeId": "267", "startDate": "2012-08-01", "rate": {"currency": "EUR", "value": "117500.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583614}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "825", "employeeId": "287", "startDate": "2014-11-03", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "826", "employeeId": "287", "startDate": "2017-01-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Moved to MBO plan and no long on a comp plan. This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "827", "employeeId": "273", "startDate": "2013-10-01", "rate": {"currency": "DKK", "value": "882000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "828", "employeeId": "273", "startDate": "2014-12-01", "rate": {"currency": "DKK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "829", "employeeId": "273", "startDate": "2017-01-01", "rate": {"currency": "DKK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "830", "employeeId": "273", "startDate": "2018-01-01", "rate": {"currency": "DKK", "value": "1284000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "831", "employeeId": "272", "startDate": "2013-09-02", "rate": {"currency": "DKK", "value": "31000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "832", "employeeId": "272", "startDate": "2014-10-01", "rate": {"currency": "DKK", "value": "34000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "833", "employeeId": "272", "startDate": "2015-10-01", "rate": {"currency": "DKK", "value": "38000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "834", "employeeId": "272", "startDate": "2016-06-01", "rate": {"currency": "SEK", "value": "47500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "835", "employeeId": "272", "startDate": "2016-10-01", "rate": {"currency": "SEK", "value": "51000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "836", "employeeId": "272", "startDate": "2017-12-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "837", "employeeId": "345", "startDate": "2017-11-09", "rate": {"currency": "SEK", "value": "37000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "838", "employeeId": "351", "startDate": "2018-06-01", "rate": {"currency": "EUR", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "839", "employeeId": "261", "startDate": "2010-10-25", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "840", "employeeId": "261", "startDate": "2012-02-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583615}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "841", "employeeId": "261", "startDate": "2013-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "842", "employeeId": "261", "startDate": "2015-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "843", "employeeId": "261", "startDate": "2016-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "844", "employeeId": "261", "startDate": "2017-01-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "3 mos. notice period.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "845", "employeeId": "356", "startDate": "2018-08-13", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "846", "employeeId": "298", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "847", "employeeId": "298", "startDate": "2016-09-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "848", "employeeId": "298", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "849", "employeeId": "298", "startDate": "2018-03-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "850", "employeeId": "269", "startDate": "2015-10-30", "rate": {"currency": "DKK", "value": "492000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "851", "employeeId": "269", "startDate": "2016-12-01", "rate": {"currency": "DKK", "value": "534000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "852", "employeeId": "269", "startDate": "2017-01-01", "rate": {"currency": "DKK", "value": "570000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "853", "employeeId": "269", "startDate": "2018-01-01", "rate": {"currency": "DKK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "854", "employeeId": "358", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "343200.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "kr165 SEK / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "855", "employeeId": "358", "startDate": "2017-09-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "856", "employeeId": "358", "startDate": "2018-09-01", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "857", "employeeId": "302", "startDate": "2016-01-11", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583616}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "858", "employeeId": "302", "startDate": "2017-07-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "859", "employeeId": "302", "startDate": "2018-08-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "860", "employeeId": "352", "startDate": "2018-06-07", "rate": {"currency": "GBP", "value": "204000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "861", "employeeId": "638", "startDate": "2020-02-24", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "862", "employeeId": "639", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "863", "employeeId": "147", "startDate": "2015-11-02", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "864", "employeeId": "147", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "131250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "865", "employeeId": "147", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "141250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "866", "employeeId": "147", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "148312.50"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "867", "employeeId": "191", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "868", "employeeId": "151", "startDate": "2017-01-03", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "869", "employeeId": "151", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "870", "employeeId": "151", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "83000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "871", "employeeId": "151", "startDate": "2016-06-13", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "872", "employeeId": "170", "startDate": "2017-07-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "873", "employeeId": "342", "startDate": "2016-02-01", "rate": {"currency": "SEK", "value": "728000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Fixed hourly fee of SEK 350 (all taxes included).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583617}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "874", "employeeId": "269", "startDate": "2012-06-01", "rate": {"currency": "DKK", "value": "427200.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "875", "employeeId": "269", "startDate": "2014-09-30", "rate": {"currency": "DKK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "876", "employeeId": "363", "startDate": "2018-01-15", "rate": {"currency": "EUR", "value": "6000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "877", "employeeId": "317", "startDate": "2013-01-07", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "878", "employeeId": "311", "startDate": "2015-06-05", "rate": {"currency": "SEK", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "kr150 SEK / hour. Minimum 8 hours/week. Exact amount of hours shall be agreed between the Company and the Employee on a weekly basis.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "879", "employeeId": "141", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "880", "employeeId": "141", "startDate": "2015-06-29", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "881", "employeeId": "353", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "882", "employeeId": "353", "startDate": "2012-04-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "883", "employeeId": "353", "startDate": "2012-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "884", "employeeId": "131", "startDate": "2015-10-01", "rate": {"currency": "USD", "value": "92000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "885", "employeeId": "131", "startDate": "2014-12-01", "rate": {"currency": "USD", "value": "88000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from SWE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "886", "employeeId": "131", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "91998.40"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Full-Time to Part-Time", "comment": "$44.23 USD / hour. Full-time to Part-time", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583618}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "887", "employeeId": "131", "startDate": "2017-09-22", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "888", "employeeId": "131", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "889", "employeeId": "131", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "104000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "890", "employeeId": "143", "startDate": "2015-09-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "891", "employeeId": "123", "startDate": "2012-10-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "892", "employeeId": "143", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "126000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "893", "employeeId": "123", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "157500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "894", "employeeId": "143", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "138600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "895", "employeeId": "123", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "896", "employeeId": "143", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "897", "employeeId": "123", "startDate": "2017-01-16", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "898", "employeeId": "174", "startDate": "2017-08-28", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "899", "employeeId": "139", "startDate": "2015-06-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "900", "employeeId": "139", "startDate": "2016-05-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583619}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "901", "employeeId": "139", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "902", "employeeId": "150", "startDate": "2016-05-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "903", "employeeId": "150", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "904", "employeeId": "194", "startDate": "2018-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "905", "employeeId": "122", "startDate": "2012-05-30", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "906", "employeeId": "122", "startDate": "2014-07-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "907", "employeeId": "120", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "908", "employeeId": "127", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "909", "employeeId": "127", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "910", "employeeId": "127", "startDate": "2014-02-25", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "911", "employeeId": "185", "startDate": "2017-12-18", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "912", "employeeId": "136", "startDate": "2016-12-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "913", "employeeId": "136", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "914", "employeeId": "121", "startDate": "2015-06-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "915", "employeeId": "121", "startDate": "2012-05-08", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583620}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "916", "employeeId": "192", "startDate": "2018-02-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "917", "employeeId": "132", "startDate": "2014-12-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "918", "employeeId": "132", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "919", "employeeId": "132", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "920", "employeeId": "307", "startDate": "2015-09-01", "rate": {"currency": "SEK", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "921", "employeeId": "153", "startDate": "2016-11-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "922", "employeeId": "176", "startDate": "2017-09-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "923", "employeeId": "156", "startDate": "2017-01-03", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "924", "employeeId": "157", "startDate": "2017-01-11", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "925", "employeeId": "157", "startDate": "2017-11-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "926", "employeeId": "138", "startDate": "2015-05-04", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "927", "employeeId": "138", "startDate": "2017-02-16", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "928", "employeeId": "138", "startDate": "2017-08-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "929", "employeeId": "154", "startDate": "2016-12-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Transferred from SWE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "930", "employeeId": "240", "startDate": "2019-05-20", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "part time", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "931", "employeeId": "137", "startDate": "2015-04-13", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583621}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "932", "employeeId": "137", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "82500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "933", "employeeId": "137", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "92500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "934", "employeeId": "137", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "98000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "935", "employeeId": "137", "startDate": "2018-12-13", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "936", "employeeId": "130", "startDate": "2014-08-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "937", "employeeId": "137", "startDate": "2018-12-13", "rate": {"currency": "USD", "value": "98000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Full-Time to Part-Time", "comment": "full time to part time status", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "938", "employeeId": "130", "startDate": "2016-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "939", "employeeId": "130", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "159500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "940", "employeeId": "137", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "942", "employeeId": "130", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "179500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "943", "employeeId": "146", "startDate": "2015-10-05", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "944", "employeeId": "146", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "945", "employeeId": "146", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "152250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "946", "employeeId": "216", "startDate": "2018-12-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "947", "employeeId": "119", "startDate": "2015-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583622}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "948", "employeeId": "119", "startDate": "2012-02-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "949", "employeeId": "128", "startDate": "2014-03-10", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "950", "employeeId": "183", "startDate": "2017-11-27", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "951", "employeeId": "129", "startDate": "2014-06-02", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "952", "employeeId": "129", "startDate": "2014-10-25", "rate": {"currency": "USD", "value": "45000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Temp to Regular status", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "953", "employeeId": "129", "startDate": "2015-05-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "954", "employeeId": "129", "startDate": "2015-12-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "955", "employeeId": "129", "startDate": "2017-05-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "956", "employeeId": "134", "startDate": "2014-12-15", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "957", "employeeId": "152", "startDate": "2016-10-05", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "958", "employeeId": "152", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "959", "employeeId": "134", "startDate": "2017-03-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "960", "employeeId": "134", "startDate": "2017-12-01", "rate": {"currency": "USD", "value": "131250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "961", "employeeId": "163", "startDate": "2017-04-10", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "962", "employeeId": "163", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "126500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583623}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "963", "employeeId": "163", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "132825.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "964", "employeeId": "640", "startDate": "2020-03-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "967", "employeeId": "131", "startDate": "2011-06-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "968", "employeeId": "131", "startDate": "2014-01-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "969", "employeeId": "131", "startDate": "2014-09-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "970", "employeeId": "154", "startDate": "2015-09-14", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "972", "employeeId": "138", "startDate": "2020-02-16", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "973", "employeeId": "310", "startDate": "2020-03-01", "rate": {"currency": "SEK", "value": "516000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "974", "employeeId": "329", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "975", "employeeId": "126", "startDate": "2013-11-04", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "976", "employeeId": "126", "startDate": "2016-04-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "977", "employeeId": "126", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "978", "employeeId": "126", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "979", "employeeId": "161", "startDate": "2017-02-06", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "980", "employeeId": "161", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "143000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583624}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "981", "employeeId": "158", "startDate": "2017-01-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "982", "employeeId": "135", "startDate": "2015-04-01", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "983", "employeeId": "135", "startDate": "2016-08-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "984", "employeeId": "135", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "985", "employeeId": "135", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "157500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "986", "employeeId": "149", "startDate": "2016-03-28", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "987", "employeeId": "149", "startDate": "2017-01-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "988", "employeeId": "149", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "989", "employeeId": "162", "startDate": "2017-03-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "990", "employeeId": "199", "startDate": "2018-05-16", "rate": {"currency": "USD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "991", "employeeId": "144", "startDate": "2015-09-28", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "992", "employeeId": "144", "startDate": "2016-10-01", "rate": {"currency": "USD", "value": "102000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "993", "employeeId": "144", "startDate": "2017-07-01", "rate": {"currency": "USD", "value": "107000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "994", "employeeId": "144", "startDate": "2018-01-01", "rate": {"currency": "USD", "value": "113000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "995", "employeeId": "144", "startDate": "2018-04-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "996", "employeeId": "187", "startDate": "2018-01-08", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583625}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "997", "employeeId": "629", "startDate": "2020-01-01", "rate": {"currency": "USD", "value": "150396.48"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "998", "employeeId": "498", "startDate": "2019-06-03", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "999", "employeeId": "378", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1000", "employeeId": "642", "startDate": "2020-04-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1001", "employeeId": "643", "startDate": "2020-03-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1002", "employeeId": "644", "startDate": "2020-04-20", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1003", "employeeId": "347", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1004", "employeeId": "136", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "194000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1005", "employeeId": "383", "startDate": "2020-03-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1006", "employeeId": "226", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1007", "employeeId": "245", "startDate": "2020-03-28", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Market Adj", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1008", "employeeId": "533", "startDate": "2020-05-04", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1009", "employeeId": "645", "startDate": "2020-06-22", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1010", "employeeId": "646", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1011", "employeeId": "647", "startDate": "2020-03-23", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583626}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1012", "employeeId": "648", "startDate": "2020-03-23", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1013", "employeeId": "649", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1014", "employeeId": "650", "startDate": "2020-05-15", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1015", "employeeId": "651", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1016", "employeeId": "652", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1017", "employeeId": "282", "startDate": "2020-04-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1018", "employeeId": "176", "startDate": "2020-03-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Retention (base, job title, & variable)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1019", "employeeId": "653", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1020", "employeeId": "175", "startDate": "2020-04-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1021", "employeeId": "654", "startDate": "2019-03-04", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Flat rate $10,000/month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1022", "employeeId": "293", "startDate": "2020-04-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1023", "employeeId": "655", "startDate": "2020-04-06", "rate": {"currency": "SGD", "value": "257610.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1024", "employeeId": "656", "startDate": "2020-04-06", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1025", "employeeId": "245", "startDate": "2020-04-03", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1027", "employeeId": "658", "startDate": "2020-05-15", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583627}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1029", "employeeId": "659", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1030", "employeeId": "662", "startDate": "2020-05-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1031", "employeeId": "663", "startDate": "2020-05-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1032", "employeeId": "665", "startDate": "2020-04-20", "rate": {"currency": "AUD", "value": "850.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$850.00 AUD = Daily Rate", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1034", "employeeId": "664", "startDate": "2020-05-11", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1035", "employeeId": "182", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "158100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1036", "employeeId": "667", "startDate": "2020-04-27", "rate": {"currency": "USD", "value": "125880.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": "paid 889178.4 RMB ($125,880 per year)\n$10,490.00 USD per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1037", "employeeId": "245", "startDate": "2020-06-23", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1038", "employeeId": "668", "startDate": "2020-05-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1039", "employeeId": "452", "startDate": "2019-04-01", "rate": {"currency": "USD", "value": "223000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1040", "employeeId": "460", "startDate": "2019-06-02", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1041", "employeeId": "670", "startDate": "2020-06-08", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1042", "employeeId": "240", "startDate": "2020-06-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "3/4 time to Full-Time", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583628}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1043", "employeeId": "671", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1044", "employeeId": "316", "startDate": "2020-07-15", "rate": {"currency": "EUR", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1045", "employeeId": "669", "startDate": "2020-06-03", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1046", "employeeId": "672", "startDate": "2020-06-08", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1049", "employeeId": "677", "startDate": "2021-08-23", "rate": {"currency": "GBP", "value": "24000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "\u00a32,000 GBP / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1050", "employeeId": "546", "startDate": "2020-06-22", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1051", "employeeId": "674", "startDate": "2020-09-14", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1052", "employeeId": "679", "startDate": "2020-06-29", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1053", "employeeId": "678", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1055", "employeeId": "676", "startDate": "2020-07-06", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1056", "employeeId": "681", "startDate": "2020-06-01", "rate": {"currency": "EUR", "value": "909.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Working max. 5,5 days/month.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1058", "employeeId": "120", "startDate": "2020-05-01", "rate": {"currency": "SEK", "value": "2271272.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transferring from Neo4j Inc to Neo4j Sweden AB", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1059", "employeeId": "122", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "103.37"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Full-Time to Part-Time", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1060", "employeeId": "684", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1061", "employeeId": "685", "startDate": "2020-08-03", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1062", "employeeId": "372", "startDate": "2020-01-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583629}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1063", "employeeId": "682", "startDate": "2020-07-06", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1064", "employeeId": "364", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1065", "employeeId": "398", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1066", "employeeId": "385", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1067", "employeeId": "346", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "106000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1068", "employeeId": "689", "startDate": "2020-07-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1069", "employeeId": "690", "startDate": "2020-06-10", "rate": {"currency": "USD", "value": ""}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": null, "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1070", "employeeId": "691", "startDate": "2020-07-13", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1071", "employeeId": "688", "startDate": "2020-07-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1072", "employeeId": "687", "startDate": "2020-09-14", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1073", "employeeId": "686", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 74 000 EUR/year (12 monthly instalments).", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1075", "employeeId": "693", "startDate": "2020-09-15", "rate": {"currency": "EUR", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Fixed annual gross salary of Euro 67.000,00 payable in 14 equal monthly installments.", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1076", "employeeId": "694", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "25.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Up to a maximum of EUR 2,000 per month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1077", "employeeId": "695", "startDate": "2020-08-03", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1078", "employeeId": "268", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "67920.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1079", "employeeId": "404", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583630}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1080", "employeeId": "396", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "408000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1081", "employeeId": "335", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1082", "employeeId": "301", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1083", "employeeId": "324", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1084", "employeeId": "327", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1085", "employeeId": "294", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1086", "employeeId": "281", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1087", "employeeId": "297", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1088", "employeeId": "332", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1089", "employeeId": "326", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "59000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1090", "employeeId": "317", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1091", "employeeId": "291", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1092", "employeeId": "337", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1093", "employeeId": "351", "startDate": "2020-08-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1094", "employeeId": "409", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1095", "employeeId": "271", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583631}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1096", "employeeId": "331", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1097", "employeeId": "355", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1098", "employeeId": "395", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1099", "employeeId": "330", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1100", "employeeId": "400", "startDate": "2020-08-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1101", "employeeId": "392", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1102", "employeeId": "280", "startDate": "2020-08-01", "rate": {"currency": "SEK", "value": "888000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1103", "employeeId": "171", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Market Adj", "comment": "Health Benefits Waiver Agreement - increase base by $15k (refer to email)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1104", "employeeId": "307", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/14/2021.\n80% salary = 480 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1105", "employeeId": "403", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1106", "employeeId": "354", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "103000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1107", "employeeId": "388", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1108", "employeeId": "647", "startDate": "2020-09-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1109", "employeeId": "149", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "112000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1110", "employeeId": "209", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "146000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1111", "employeeId": "220", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1112", "employeeId": "222", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "72500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583632}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1113", "employeeId": "193", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "132000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1114", "employeeId": "115", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "132000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1115", "employeeId": "240", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "228000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1116", "employeeId": "253", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1117", "employeeId": "114", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1118", "employeeId": "1", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "187000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1119", "employeeId": "124", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "208000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1120", "employeeId": "419", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "93038.40"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": "For ChartHop, converting hourly rate to salary.\nBiweekly, non-exempt employee paid $44.73/hour", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1121", "employeeId": "590", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1122", "employeeId": "584", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1123", "employeeId": "178", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "42.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1124", "employeeId": "236", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1125", "employeeId": "138", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "127500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1126", "employeeId": "143", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "153800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1127", "employeeId": "183", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "111600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1128", "employeeId": "192", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "119700.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583633}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1129", "employeeId": "205", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "139000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1130", "employeeId": "697", "startDate": "2020-09-14", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1131", "employeeId": "191", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1132", "employeeId": "311", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1133", "employeeId": "333", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1134", "employeeId": "329", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1135", "employeeId": "262", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "144500.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1136", "employeeId": "270", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1137", "employeeId": "344", "startDate": "2020-09-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1138", "employeeId": "696", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1139", "employeeId": "699", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1140", "employeeId": "116", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "1101600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1141", "employeeId": "117", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1142", "employeeId": "313", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1143", "employeeId": "318", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "1254000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1144", "employeeId": "319", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "414000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583634}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1145", "employeeId": "375", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1146", "employeeId": "384", "startDate": "2020-07-01", "rate": {"currency": "SEK", "value": "582000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1147", "employeeId": "702", "startDate": "2020-08-14", "rate": {"currency": "EUR", "value": "0.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "\u20ac0.00 EUR / day. Combined fixed price & rate/hour - See under \u201cNotes\u201d for details\u201d.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1148", "employeeId": "698", "startDate": "2020-09-02", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1149", "employeeId": "703", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1150", "employeeId": "704", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1151", "employeeId": "163", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1152", "employeeId": "162", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1153", "employeeId": "700", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1154", "employeeId": "705", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "70.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1155", "employeeId": "706", "startDate": "2020-08-24", "rate": {"currency": "USD", "value": "108160.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "New Hire", "comment": "$52.00 USD/Hour\nChanging from hourly to annual salary for ChartHop", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1156", "employeeId": "621", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1157", "employeeId": "157", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1158", "employeeId": "707", "startDate": "2020-11-09", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1159", "employeeId": "708", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Neo4j shall also pay the Contractor a fixed fee of USD 500 per month for the Subscription Support. Working max 50h/month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1160", "employeeId": "261", "startDate": "2020-07-01", "rate": {"currency": "GBP", "value": "176000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583635}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1161", "employeeId": "701", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1162", "employeeId": "709", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1163", "employeeId": "710", "startDate": "2020-11-02", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1164", "employeeId": "187", "startDate": "2020-07-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1165", "employeeId": "250", "startDate": "2020-01-27", "rate": {"currency": "USD", "value": "97000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1166", "employeeId": "314", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1167", "employeeId": "358", "startDate": "2020-09-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1168", "employeeId": "712", "startDate": "2020-10-06", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1169", "employeeId": "713", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1170", "employeeId": "178", "startDate": "2020-09-01", "rate": {"currency": "USD", "value": "44.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1171", "employeeId": "711", "startDate": "2020-09-14", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1172", "employeeId": "277", "startDate": "2014-05-19", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1173", "employeeId": "718", "startDate": "2020-09-28", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1174", "employeeId": "717", "startDate": "2020-09-28", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1175", "employeeId": "720", "startDate": "2020-09-07", "rate": {"currency": "USD", "value": "9500.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1176", "employeeId": "719", "startDate": "2020-09-21", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583636}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1177", "employeeId": "716", "startDate": "2020-09-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1178", "employeeId": "714", "startDate": "2020-09-28", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1179", "employeeId": "721", "startDate": "2020-09-28", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1180", "employeeId": "724", "startDate": "2020-09-09", "rate": {"currency": "USD", "value": "75.00"}, "type": "Contract", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1181", "employeeId": "725", "startDate": "2019-12-16", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1182", "employeeId": "298", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1183", "employeeId": "730", "startDate": "2020-05-01", "rate": {"currency": "USD", "value": "5000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1184", "employeeId": "727", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1185", "employeeId": "722", "startDate": "2020-10-06", "rate": {"currency": "USD", "value": "115.00"}, "type": "Contract", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1186", "employeeId": "651", "startDate": "2020-10-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1187", "employeeId": "723", "startDate": "2020-10-19", "rate": {"currency": "SEK", "value": "384000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1188", "employeeId": "732", "startDate": "2020-09-28", "rate": {"currency": "USD", "value": "75.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1189", "employeeId": "726", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Fixed salary is payable in 14 equal monthly instalments.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1190", "employeeId": "729", "startDate": "2020-11-02", "rate": {"currency": "EUR", "value": "52800.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "\u20ac4,400 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1191", "employeeId": "715", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1192", "employeeId": "731", "startDate": "2020-10-05", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583637}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1193", "employeeId": "361", "startDate": "2020-10-01", "rate": {"currency": "SEK", "value": "420000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1194", "employeeId": "365", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1195", "employeeId": "421", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1196", "employeeId": "416", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1197", "employeeId": "363", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1198", "employeeId": "411", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1199", "employeeId": "728", "startDate": "2020-11-02", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1200", "employeeId": "735", "startDate": "2021-01-04", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1201", "employeeId": "736", "startDate": "2020-10-12", "rate": {"currency": "GBP", "value": "20800.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "\u00a3400 GBP / week", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1202", "employeeId": "397", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1203", "employeeId": "737", "startDate": "2020-10-12", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1204", "employeeId": "362", "startDate": "2020-10-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1205", "employeeId": "531", "startDate": "2016-11-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583638}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1206", "employeeId": "531", "startDate": "2016-02-22", "rate": {"currency": "GBP", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1207", "employeeId": "686", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1208", "employeeId": "734", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1209", "employeeId": "260", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1210", "employeeId": "321", "startDate": "2020-11-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1211", "employeeId": "741", "startDate": "2020-11-02", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1213", "employeeId": "748", "startDate": "2020-12-14", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1214", "employeeId": "742", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "81000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "\u20ac6,750 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1215", "employeeId": "740", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1216", "employeeId": "753", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1217", "employeeId": "747", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1218", "employeeId": "752", "startDate": "2020-12-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1219", "employeeId": "751", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1220", "employeeId": "739", "startDate": "2021-01-04", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583639}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1221", "employeeId": "746", "startDate": "2021-01-18", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1222", "employeeId": "749", "startDate": "2020-11-09", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1223", "employeeId": "745", "startDate": "2020-11-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Per Infotree contract - Monthly Bill Rate of US $ 14712", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1224", "employeeId": "744", "startDate": "2020-11-16", "rate": {"currency": "CNY", "value": "66666.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": "SOW shows $14,998/monthly", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1226", "employeeId": "268", "startDate": "2020-07-01", "rate": {"currency": "EUR", "value": "61112.76"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer to Finland", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1227", "employeeId": "743", "startDate": "2020-11-16", "rate": {"currency": "SGD", "value": "176000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1228", "employeeId": "738", "startDate": "2020-11-30", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1229", "employeeId": "754", "startDate": "2020-11-09", "rate": {"currency": "INR", "value": "3066000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1230", "employeeId": "756", "startDate": "2020-01-13", "rate": {"currency": "USD", "value": "90.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1231", "employeeId": "755", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1232", "employeeId": "757", "startDate": "2020-11-17", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1233", "employeeId": "576", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1234", "employeeId": "339", "startDate": "2020-12-01", "rate": {"currency": "EUR", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1235", "employeeId": "578", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1236", "employeeId": "283", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "852000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1237", "employeeId": "366", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583640}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1238", "employeeId": "758", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1239", "employeeId": "322", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "105600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1240", "employeeId": "759", "startDate": "2020-11-23", "rate": {"currency": "SGD", "value": "210000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "Monthly Bill Rate of US $ 17267", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1241", "employeeId": "760", "startDate": "2021-02-15", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1242", "employeeId": "334", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1243", "employeeId": "389", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1244", "employeeId": "569", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1245", "employeeId": "386", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "1140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1246", "employeeId": "577", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1247", "employeeId": "299", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1248", "employeeId": "410", "startDate": "2020-12-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1249", "employeeId": "766", "startDate": "2020-12-14", "rate": {"currency": "GBP", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1250", "employeeId": "583", "startDate": "2020-12-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1251", "employeeId": "767", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "360000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1252", "employeeId": "768", "startDate": "2021-02-01", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583641}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1253", "employeeId": "765", "startDate": "2020-12-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1254", "employeeId": "605", "startDate": "2021-05-03", "rate": {"currency": "EUR", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfered from UK entity to German entity", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1255", "employeeId": "264", "startDate": "2020-12-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1256", "employeeId": "626", "startDate": "2021-01-01", "rate": {"currency": "AUD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "updating salary and variable from USD to AUD per new change order.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1257", "employeeId": "725", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1258", "employeeId": "776", "startDate": "2021-03-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1259", "employeeId": "778", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1260", "employeeId": "769", "startDate": "2020-12-14", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1261", "employeeId": "773", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1262", "employeeId": "770", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1263", "employeeId": "772", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1264", "employeeId": "771", "startDate": "2021-01-04", "rate": {"currency": "CNY", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1265", "employeeId": "777", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1266", "employeeId": "295", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "154000.00"}, "type": "Salary", "exempt": null, "reason": "Retention", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1267", "employeeId": "381", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583642}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1270", "employeeId": "262", "startDate": "2020-12-29", "rate": {"currency": "EUR", "value": "162000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Goes from Contractor to FTE effective 1/1/2021.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1271", "employeeId": "342", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1560000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1272", "employeeId": "780", "startDate": "2020-12-17", "rate": {"currency": "USD", "value": "245000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1273", "employeeId": "762", "startDate": "2020-12-21", "rate": {"currency": "USD", "value": "195000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1274", "employeeId": "570", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1275", "employeeId": "328", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1276", "employeeId": "373", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1277", "employeeId": "368", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1278", "employeeId": "372", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1279", "employeeId": "681", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "1000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Working max. 5,5 days/month.", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1280", "employeeId": "131", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "114000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1281", "employeeId": "116", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1185600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1282", "employeeId": "318", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1350000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1283", "employeeId": "782", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1284", "employeeId": "783", "startDate": "2021-01-19", "rate": {"currency": "USD", "value": "55.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "Per SOW: Bill rate: $66.08/hr\nEnd date extended to 10/31/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583643}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1285", "employeeId": "775", "startDate": "2021-01-04", "rate": {"currency": "SGD", "value": "348845.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1286", "employeeId": "764", "startDate": "2021-01-04", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1287", "employeeId": "763", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1288", "employeeId": "419", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1289", "employeeId": "115", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "136000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1290", "employeeId": "1", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1291", "employeeId": "584", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1294", "employeeId": "787", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1295", "employeeId": "786", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "372000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1296", "employeeId": "788", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1299", "employeeId": "785", "startDate": "2021-05-03", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1300", "employeeId": "774", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1301", "employeeId": "117", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1302", "employeeId": "313", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "450000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1303", "employeeId": "319", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1304", "employeeId": "384", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "602400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583644}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1305", "employeeId": "369", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "110250.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1306", "employeeId": "375", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1307", "employeeId": "610", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021. \n80% salary = 499 200 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1308", "employeeId": "644", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1309", "employeeId": "274", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "160500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1310", "employeeId": "278", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1311", "employeeId": "296", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "63500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1312", "employeeId": "336", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1313", "employeeId": "370", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "56000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1314", "employeeId": "663", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1315", "employeeId": "262", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1316", "employeeId": "329", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "89250.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1317", "employeeId": "333", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "102900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1318", "employeeId": "292", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1319", "employeeId": "409", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "141750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583645}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1320", "employeeId": "414", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "162750.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1321", "employeeId": "352", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "212000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1322", "employeeId": "333", "startDate": "2019-01-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1323", "employeeId": "300", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1324", "employeeId": "312", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "68477.33"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1325", "employeeId": "340", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "58834.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1326", "employeeId": "356", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1207000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1327", "employeeId": "357", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1328", "employeeId": "348", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1329", "employeeId": "348", "startDate": "2020-01-01", "rate": {"currency": "EUR", "value": "240000.00"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1330", "employeeId": "359", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "996000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1331", "employeeId": "380", "startDate": "2021-01-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, added variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1332", "employeeId": "401", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1333", "employeeId": "402", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1334", "employeeId": "406", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1335", "employeeId": "413", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "80900.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583646}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1336", "employeeId": "573", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1337", "employeeId": "572", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "63500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Annual base salary 58 951,41EUR/year (Including 8% Holiday allowance of 4366,77) + 1 extra 13th pay of 4548,63 EUR paid in December", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1338", "employeeId": "603", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "No base change, only variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1339", "employeeId": "587", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1340", "employeeId": "374", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "77000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1341", "employeeId": "792", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1342", "employeeId": "790", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1343", "employeeId": "791", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1344", "employeeId": "794", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1345", "employeeId": "793", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1346", "employeeId": "795", "startDate": "2021-01-11", "rate": {"currency": "SGD", "value": "312000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1347", "employeeId": "149", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "116500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583647}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1348", "employeeId": "209", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "151000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1349", "employeeId": "220", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "256500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1350", "employeeId": "222", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1351", "employeeId": "240", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1352", "employeeId": "253", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1353", "employeeId": "114", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "243500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1354", "employeeId": "124", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1355", "employeeId": "191", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1356", "employeeId": "193", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "136000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1359", "employeeId": "590", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1360", "employeeId": "178", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "46.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1361", "employeeId": "761", "startDate": "2021-01-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1362", "employeeId": "391", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1363", "employeeId": "796", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583648}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1364", "employeeId": "263", "startDate": "2011-05-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving to US", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1365", "employeeId": "263", "startDate": "2015-09-01", "rate": {"currency": "USD", "value": "276000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1366", "employeeId": "175", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "315000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1367", "employeeId": "206", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1369", "employeeId": "226", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1370", "employeeId": "138", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "131000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1371", "employeeId": "143", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "159000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1372", "employeeId": "182", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1373", "employeeId": "192", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "123500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1374", "employeeId": "205", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "144000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1375", "employeeId": "236", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "134000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583649}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1376", "employeeId": "197", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "103000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1377", "employeeId": "582", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1378", "employeeId": "620", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "143000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1379", "employeeId": "251", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "66000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1380", "employeeId": "155", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "69000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1381", "employeeId": "165", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "125150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1382", "employeeId": "614", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1383", "employeeId": "163", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "153000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1384", "employeeId": "158", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "79000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1385", "employeeId": "173", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "69000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1386", "employeeId": "199", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "73300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1387", "employeeId": "256", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1388", "employeeId": "242", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1389", "employeeId": "129", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "109000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1390", "employeeId": "367", "startDate": "2021-01-01", "rate": {"currency": "EUR", "value": "91500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583650}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1391", "employeeId": "798", "startDate": "2019-10-07", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1392", "employeeId": "217", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "172300.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1393", "employeeId": "202", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "198100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1394", "employeeId": "405", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1395", "employeeId": "212", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "213400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1396", "employeeId": "169", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1397", "employeeId": "243", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "173000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1398", "employeeId": "241", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1399", "employeeId": "164", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1400", "employeeId": "147", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1401", "employeeId": "233", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "174000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1402", "employeeId": "221", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "211600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1403", "employeeId": "499", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1404", "employeeId": "207", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "174143.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1405", "employeeId": "234", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1406", "employeeId": "126", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583651}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1407", "employeeId": "144", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "166500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1408", "employeeId": "228", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1409", "employeeId": "623", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1410", "employeeId": "172", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "230000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1411", "employeeId": "142", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1412", "employeeId": "156", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1413", "employeeId": "232", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1414", "employeeId": "615", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "113500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1415", "employeeId": "177", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1416", "employeeId": "801", "startDate": "2019-07-01", "rate": {"currency": "USD", "value": "160.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1417", "employeeId": "802", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1418", "employeeId": "799", "startDate": "2021-04-15", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1419", "employeeId": "804", "startDate": "2020-03-23", "rate": {"currency": "USD", "value": "19.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": "Bill Rate to Agency: $20.52", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1420", "employeeId": "797", "startDate": "2021-01-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1421", "employeeId": "803", "startDate": "2021-03-22", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583652}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1422", "employeeId": "237", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1423", "employeeId": "600", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "70012.80"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Promotion", "comment": "For chartHop, converting hourly rate to salary. \nNon-exempt, bi weekly employee paid $33.66/hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1424", "employeeId": "800", "startDate": "2021-04-19", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1425", "employeeId": "286", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1426", "employeeId": "302", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1427", "employeeId": "210", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "176400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1428", "employeeId": "247", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1429", "employeeId": "235", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "109500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1430", "employeeId": "229", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "124600.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1431", "employeeId": "146", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "179496.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1432", "employeeId": "194", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1433", "employeeId": "252", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "138000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1434", "employeeId": "629", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "154908.00"}, "type": "Contract", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1435", "employeeId": "257", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1436", "employeeId": "186", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "164005.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1437", "employeeId": "141", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "175214.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583653}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1438", "employeeId": "219", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "128400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1439", "employeeId": "805", "startDate": "2021-03-15", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1440", "employeeId": "807", "startDate": "2021-02-01", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1441", "employeeId": "225", "startDate": "2021-01-25", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1442", "employeeId": "627", "startDate": "2021-01-01", "rate": {"currency": "AUD", "value": "231000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "New Base: 231,000/261 days to equate to $885.06 daily rate.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1443", "employeeId": "625", "startDate": "2021-01-01", "rate": {"currency": "INR", "value": "2850000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1444", "employeeId": "667", "startDate": "2021-01-01", "rate": {"currency": "CNY", "value": "844200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Updating to local currency per contract agreement for ChartHop\n$130,880.00 USD / year\nMonthly Bill Rate of US$ 14,427.24 to Infotree", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1445", "employeeId": "575", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "528000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1446", "employeeId": "418", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1447", "employeeId": "602", "startDate": "2021-02-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1448", "employeeId": "347", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1449", "employeeId": "809", "startDate": "2021-02-01", "rate": {"currency": "INR", "value": "3066000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1450", "employeeId": "806", "startDate": "2021-02-01", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1451", "employeeId": "293", "startDate": "2021-02-22", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1452", "employeeId": "810", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1454", "employeeId": "801", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583654}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1455", "employeeId": "798", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1456", "employeeId": "720", "startDate": "2021-02-01", "rate": {"currency": "EUR", "value": "20700.00"}, "type": "Contract", "exempt": null, "reason": "Transfer", "comment": "Lola transfers from Neo4j Inc contract to Neo4j Sweden contract", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1457", "employeeId": "812", "startDate": "2021-06-07", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1458", "employeeId": "808", "startDate": "2021-02-08", "rate": {"currency": "SGD", "value": "67500.00"}, "type": "Contract", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1459", "employeeId": "208", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "395000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1460", "employeeId": "167", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1461", "employeeId": "121", "startDate": "2019-01-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1462", "employeeId": "121", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1463", "employeeId": "273", "startDate": "2021-01-01", "rate": {"currency": "DKK", "value": "1624260.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1464", "employeeId": "263", "startDate": "2021-01-01", "rate": {"currency": "SEK", "value": "1968000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No Base Salary change, only added Variable", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1465", "employeeId": "813", "startDate": "2021-02-23", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1466", "employeeId": "199", "startDate": "2021-02-08", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1467", "employeeId": "814", "startDate": "2021-04-08", "rate": {"currency": "SEK", "value": "930000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1468", "employeeId": "815", "startDate": "2021-04-05", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1469", "employeeId": "816", "startDate": "2021-03-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1471", "employeeId": "817", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583655}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1472", "employeeId": "818", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1473", "employeeId": "819", "startDate": "2021-03-22", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1474", "employeeId": "820", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1475", "employeeId": "821", "startDate": "2021-02-22", "rate": {"currency": "INR", "value": "576000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "Hourly Bill rate of $59.5/hr", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1476", "employeeId": "310", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1477", "employeeId": "604", "startDate": "2021-02-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1478", "employeeId": "822", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1479", "employeeId": "613", "startDate": "2021-03-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1480", "employeeId": "823", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1481", "employeeId": "165", "startDate": "2021-03-01", "rate": {"currency": "USD", "value": "128150.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1482", "employeeId": "824", "startDate": "2021-03-08", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1483", "employeeId": "826", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1484", "employeeId": "825", "startDate": "2021-03-08", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1485", "employeeId": "131", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from US to SWE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1486", "employeeId": "827", "startDate": "2021-03-08", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "$15,000 paid per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1487", "employeeId": "829", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583656}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1488", "employeeId": "828", "startDate": "2021-06-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1489", "employeeId": "830", "startDate": "2021-06-28", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1490", "employeeId": "832", "startDate": "2021-03-15", "rate": {"currency": "USD", "value": "85.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Contractor via KForce\nend date is 9/15/21", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1491", "employeeId": "352", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "245000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Relocating from UK to Italy", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1492", "employeeId": "835", "startDate": "2021-04-19", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1493", "employeeId": "831", "startDate": "2021-05-24", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1494", "employeeId": "834", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1495", "employeeId": "833", "startDate": "2021-04-12", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1496", "employeeId": "836", "startDate": "2021-06-21", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1497", "employeeId": "263", "startDate": "2009-10-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1498", "employeeId": "837", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1499", "employeeId": "838", "startDate": "2021-03-22", "rate": {"currency": "USD", "value": "110.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1501", "employeeId": "839", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1502", "employeeId": "843", "startDate": "2021-04-12", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1503", "employeeId": "844", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "150.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1504", "employeeId": "845", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583657}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1505", "employeeId": "842", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1506", "employeeId": "847", "startDate": "2021-04-26", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1507", "employeeId": "574", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1508", "employeeId": "848", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1509", "employeeId": "611", "startDate": "2021-04-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1510", "employeeId": "648", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1511", "employeeId": "849", "startDate": "2021-04-05", "rate": {"currency": "CNY", "value": "900000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Amount of CNY 75,000 will be paid for every completed month of service", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1513", "employeeId": "850", "startDate": "2021-04-06", "rate": {"currency": "GBP", "value": "123500.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "\u00a3475 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1514", "employeeId": "850", "startDate": "2019-06-05", "rate": {"currency": "GBP", "value": "133900.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3515 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1515", "employeeId": "851", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1516", "employeeId": "850", "startDate": "2017-06-05", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3400 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1517", "employeeId": "850", "startDate": "2017-12-05", "rate": {"currency": "GBP", "value": "117000.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3450 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1518", "employeeId": "850", "startDate": "2019-01-05", "rate": {"currency": "GBP", "value": "126100.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": "\u00a3485 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583658}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1519", "employeeId": "854", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "10 hours of work / week (Total sum of EUR 700)", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1520", "employeeId": "853", "startDate": "2021-04-19", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1521", "employeeId": "855", "startDate": "2021-04-12", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1522", "employeeId": "852", "startDate": "2021-06-01", "rate": {"currency": "GBP", "value": "61000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1523", "employeeId": "669", "startDate": "2021-06-09", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Intern to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1524", "employeeId": "857", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "78923.07 Brazilian Real/month\nR$1,026,000.00 BRL / Year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1525", "employeeId": "846", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "55.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "end date is 10/26/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1526", "employeeId": "856", "startDate": "2021-05-04", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1527", "employeeId": "346", "startDate": "2021-04-01", "rate": {"currency": "EUR", "value": "112000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1528", "employeeId": "385", "startDate": "2021-04-01", "rate": {"currency": "GBP", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1529", "employeeId": "859", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1530", "employeeId": "860", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "228000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1531", "employeeId": "858", "startDate": "2021-06-07", "rate": {"currency": "GBP", "value": "145000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1533", "employeeId": "861", "startDate": "2021-06-09", "rate": {"currency": "USD", "value": "325000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583659}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1534", "employeeId": "862", "startDate": "2021-06-14", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1535", "employeeId": "863", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1536", "employeeId": "370", "startDate": "2021-01-01", "rate": {"currency": "GBP", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1537", "employeeId": "636", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1538", "employeeId": "864", "startDate": "2020-06-26", "rate": {"currency": "EUR", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Cap of EUR 2,000 per calendar month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1539", "employeeId": "865", "startDate": "2021-04-26", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1540", "employeeId": "664", "startDate": "2021-04-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Eff. 4/1 Promotion to Director, CRM", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1541", "employeeId": "866", "startDate": "2021-05-17", "rate": {"currency": "GBP", "value": "63000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1542", "employeeId": "705", "startDate": "2021-05-03", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1543", "employeeId": "867", "startDate": "2021-07-01", "rate": {"currency": "INR", "value": "4500000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1544", "employeeId": "119", "startDate": "2021-04-01", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1546", "employeeId": "869", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1547", "employeeId": "533", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1548", "employeeId": "635", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1549", "employeeId": "388", "startDate": "2021-05-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583660}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1550", "employeeId": "662", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1551", "employeeId": "383", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "57000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1552", "employeeId": "330", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1553", "employeeId": "668", "startDate": "2021-05-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1554", "employeeId": "870", "startDate": "2021-06-28", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1555", "employeeId": "871", "startDate": "2021-05-17", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1556", "employeeId": "872", "startDate": "2021-08-30", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1557", "employeeId": "873", "startDate": "2021-05-10", "rate": {"currency": "EUR", "value": "3.90"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1558", "employeeId": "874", "startDate": "2021-05-17", "rate": {"currency": "INR", "value": "4400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1559", "employeeId": "336", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1561", "employeeId": "875", "startDate": "2021-08-16", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1562", "employeeId": "756", "startDate": "2021-05-17", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1563", "employeeId": "878", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1564", "employeeId": "879", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1565", "employeeId": "877", "startDate": "2021-07-26", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583661}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1566", "employeeId": "880", "startDate": "2021-06-30", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1567", "employeeId": "882", "startDate": "2021-08-02", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1568", "employeeId": "881", "startDate": "2021-08-23", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1569", "employeeId": "883", "startDate": "2021-07-26", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1570", "employeeId": "884", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1571", "employeeId": "736", "startDate": "2021-06-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1572", "employeeId": "885", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1573", "employeeId": "886", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "25.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1574", "employeeId": "887", "startDate": "2021-05-24", "rate": {"currency": "EUR", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "Cap of 50 hours/ calendar month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1576", "employeeId": "888", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1578", "employeeId": "889", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1579", "employeeId": "890", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1581", "employeeId": "892", "startDate": "2021-06-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1582", "employeeId": "891", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1583", "employeeId": "893", "startDate": "2021-08-30", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583662}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1584", "employeeId": "894", "startDate": "2021-08-09", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1585", "employeeId": "895", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "1620000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1586", "employeeId": "895", "startDate": "2014-02-24", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1588", "employeeId": "896", "startDate": "2021-06-07", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1590", "employeeId": "897", "startDate": "2021-07-05", "rate": {"currency": "SGD", "value": "70000.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": "SOW: Monthly Bill Rate of US $ 5980.46", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1591", "employeeId": "396", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "444000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1593", "employeeId": "899", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1594", "employeeId": "898", "startDate": "2021-07-05", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1595", "employeeId": "324", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1596", "employeeId": "351", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1597", "employeeId": "421", "startDate": "2021-06-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1599", "employeeId": "900", "startDate": "2021-07-06", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1601", "employeeId": "901", "startDate": "2021-06-16", "rate": {"currency": "INR", "value": "3771000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$50,000 USD / Annual", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1602", "employeeId": "722", "startDate": "2021-06-14", "rate": {"currency": "USD", "value": "197000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1603", "employeeId": "902", "startDate": "2021-08-16", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583663}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1605", "employeeId": "903", "startDate": "2021-08-02", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1607", "employeeId": "904", "startDate": "2021-07-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1608", "employeeId": "854", "startDate": "2021-06-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": "15 hours of work / week (during 14 weeks, total sum of EUR 14,700)", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1611", "employeeId": "905", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1612", "employeeId": "907", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1613", "employeeId": "908", "startDate": "2021-06-28", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1614", "employeeId": "697", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1615", "employeeId": "343", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1600000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1616", "employeeId": "651", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1618", "employeeId": "911", "startDate": "2021-08-02", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1619", "employeeId": "646", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1620", "employeeId": "395", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1621", "employeeId": "398", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "708000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1622", "employeeId": "311", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "588000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1623", "employeeId": "354", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1624", "employeeId": "679", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583664}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1625", "employeeId": "307", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 504 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1626", "employeeId": "772", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Intern to FTE Conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1627", "employeeId": "645", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1628", "employeeId": "799", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1631", "employeeId": "915", "startDate": "2021-09-01", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1633", "employeeId": "912", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1634", "employeeId": "914", "startDate": "2021-09-13", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1635", "employeeId": "916", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1636", "employeeId": "910", "startDate": "2021-10-25", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1637", "employeeId": "913", "startDate": "2021-08-02", "rate": {"currency": "EUR", "value": "38000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1638", "employeeId": "909", "startDate": "2021-10-04", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1640", "employeeId": "918", "startDate": "2021-07-26", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1641", "employeeId": "280", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1643", "employeeId": "919", "startDate": "2021-08-11", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1645", "employeeId": "920", "startDate": "2021-07-19", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583665}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1646", "employeeId": "170", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase to base Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1647", "employeeId": "181", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1648", "employeeId": "257", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase Eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1649", "employeeId": "251", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "94000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1650", "employeeId": "359", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1651", "employeeId": "718", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1652", "employeeId": "300", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "990000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1653", "employeeId": "245", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1654", "employeeId": "682", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1655", "employeeId": "633", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "133385.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1656", "employeeId": "616", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "134930.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1657", "employeeId": "144", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "181500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1658", "employeeId": "322", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "115500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1659", "employeeId": "637", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1660", "employeeId": "190", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583666}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1661", "employeeId": "607", "startDate": "2021-07-01", "rate": {"currency": "SEK", "value": "1000000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1662", "employeeId": "287", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "108500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "This amount is including 8% Holiday allowance", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1663", "employeeId": "150", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1664", "employeeId": "153", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Increase eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1665", "employeeId": "922", "startDate": "2021-07-15", "rate": {"currency": "EUR", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": "20 hours of work / month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1666", "employeeId": "309", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1667", "employeeId": "289", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1668", "employeeId": "924", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1669", "employeeId": "331", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1670", "employeeId": "400", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1671", "employeeId": "355", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1672", "employeeId": "392", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1673", "employeeId": "659", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1674", "employeeId": "316", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1675", "employeeId": "358", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583667}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1676", "employeeId": "304", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "93750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021. 80% salary = 75 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1677", "employeeId": "923", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1678", "employeeId": "925", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "40000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1679", "employeeId": "921", "startDate": "2021-09-20", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1680", "employeeId": "927", "startDate": "2021-09-07", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1681", "employeeId": "926", "startDate": "2021-09-02", "rate": {"currency": "GBP", "value": "165000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1683", "employeeId": "928", "startDate": "2021-07-26", "rate": {"currency": "CNY", "value": "647000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1684", "employeeId": "582", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1685", "employeeId": "929", "startDate": "2021-09-27", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1686", "employeeId": "320", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac75 EUR / hour (75 EUR x 2080 hours)", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1687", "employeeId": "290", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1688", "employeeId": "376", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1689", "employeeId": "665", "startDate": "2021-07-21", "rate": {"currency": "AUD", "value": "766.28"}, "type": "Contract", "exempt": null, "reason": "Merit", "comment": "Base Salary: 200,000 / 261 days = 766.28", "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1691", "employeeId": "930", "startDate": "2021-08-09", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1692", "employeeId": "162", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583668}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1693", "employeeId": "629", "startDate": "2021-07-30", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1694", "employeeId": "353", "startDate": "2010-09-01", "rate": {"currency": "USD", "value": "60000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1695", "employeeId": "154", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "227800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1696", "employeeId": "159", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "239500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1697", "employeeId": "250", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "101000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1698", "employeeId": "241", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "99000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1699", "employeeId": "199", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1700", "employeeId": "127", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1701", "employeeId": "292", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1702", "employeeId": "332", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1703", "employeeId": "931", "startDate": "2021-08-30", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1704", "employeeId": "932", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1705", "employeeId": "600", "startDate": "2021-07-26", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1706", "employeeId": "806", "startDate": "2021-07-28", "rate": {"currency": "USD", "value": "40.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "end date extended to 10/31/21", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1707", "employeeId": "808", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "67500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1708", "employeeId": "759", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "210000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583669}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1709", "employeeId": "775", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "348845.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1710", "employeeId": "827", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1711", "employeeId": "897", "startDate": "2021-08-01", "rate": {"currency": "SGD", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Conversion from Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1713", "employeeId": "934", "startDate": "2021-08-17", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1715", "employeeId": "935", "startDate": "2021-08-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1716", "employeeId": "305", "startDate": "2021-07-01", "rate": {"currency": "EUR", "value": "97500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1718", "employeeId": "936", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1719", "employeeId": "236", "startDate": "2021-07-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1720", "employeeId": "278", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer Department", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1721", "employeeId": "117", "startDate": "2021-03-17", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Equity award only w/Promotion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1722", "employeeId": "281", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1723", "employeeId": "297", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1724", "employeeId": "301", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "708000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1725", "employeeId": "335", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1726", "employeeId": "337", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583670}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1727", "employeeId": "327", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1728", "employeeId": "317", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "117000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1730", "employeeId": "937", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1732", "employeeId": "351", "startDate": "2021-08-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1733", "employeeId": "933", "startDate": "2022-02-01", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1735", "employeeId": "938", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1737", "employeeId": "939", "startDate": "2021-08-30", "rate": {"currency": "AUD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Monthly Rate: $12,500 AUD", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1739", "employeeId": "940", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "R$530,000.00 BRL per year\nMonthly: 40.769,23 BRL", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1740", "employeeId": "364", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from SWE to US", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1742", "employeeId": "941", "startDate": "2021-08-30", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1743", "employeeId": "942", "startDate": "2021-09-13", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1744", "employeeId": "943", "startDate": "2021-08-30", "rate": {"currency": "GBP", "value": "48000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1745", "employeeId": "944", "startDate": "2021-09-15", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1746", "employeeId": "945", "startDate": "2021-08-23", "rate": {"currency": "USD", "value": "36.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "New Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1747", "employeeId": "946", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "New Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583671}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1748", "employeeId": "742", "startDate": "2021-08-21", "rate": {"currency": "EUR", "value": "75.00"}, "type": "Hourly", "exempt": null, "reason": "Full-Time to Part-Time", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1749", "employeeId": "294", "startDate": "2021-08-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1750", "employeeId": "947", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1751", "employeeId": "948", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "147000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1752", "employeeId": "698", "startDate": "2021-07-01", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1753", "employeeId": "315", "startDate": "2021-08-01", "rate": {"currency": "GBP", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "\u00a375 GBP / hour. Transfer to UK Ltd from Sweden AB. Maximum fee 15 000 GBP per month. Works average 4 days /week", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1755", "employeeId": "951", "startDate": "2021-08-30", "rate": {"currency": "CNY", "value": "745108.01"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Monthly payment of CNY 62,092.334", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1757", "employeeId": "952", "startDate": "2021-09-13", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1758", "employeeId": "953", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "87000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1760", "employeeId": "954", "startDate": "2021-10-04", "rate": {"currency": "INR", "value": "8172715.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1761", "employeeId": "299", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1762", "employeeId": "684", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1764", "employeeId": "955", "startDate": "2021-09-27", "rate": {"currency": "INR", "value": "2964401.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1765", "employeeId": "958", "startDate": "2021-10-11", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1766", "employeeId": "957", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583672}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1767", "employeeId": "283", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1768", "employeeId": "314", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1769", "employeeId": "647", "startDate": "2021-09-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1770", "employeeId": "678", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1771", "employeeId": "403", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1772", "employeeId": "674", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1773", "employeeId": "962", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1774", "employeeId": "961", "startDate": "2021-11-22", "rate": {"currency": "GBP", "value": "62000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1775", "employeeId": "960", "startDate": "2022-01-03", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1776", "employeeId": "546", "startDate": "2021-09-06", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1778", "employeeId": "963", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1779", "employeeId": "735", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1780", "employeeId": "687", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "624000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1781", "employeeId": "291", "startDate": "2021-09-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1782", "employeeId": "268", "startDate": "2021-09-01", "rate": {"currency": "EUR", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1784", "employeeId": "964", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583673}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1785", "employeeId": "965", "startDate": "2021-09-07", "rate": {"currency": "USD", "value": "125.00"}, "type": "Contract", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1786", "employeeId": "966", "startDate": "2021-09-08", "rate": {"currency": "USD", "value": "38.00"}, "type": "Contract", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1787", "employeeId": "326", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "64000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1789", "employeeId": "967", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "70000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1791", "employeeId": "968", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1793", "employeeId": "969", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1794", "employeeId": "970", "startDate": "2021-09-08", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1795", "employeeId": "804", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "22.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": "Bill rate to Infotree: $23.76", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1796", "employeeId": "226", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "270000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Comp Adj. Effective 9/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1797", "employeeId": "823", "startDate": "2021-09-09", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "Hired back as consultant", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1798", "employeeId": "383", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1801", "employeeId": "972", "startDate": "2021-12-13", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1803", "employeeId": "639", "startDate": "2021-09-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1804", "employeeId": "686", "startDate": "2021-10-28", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1806", "employeeId": "974", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583674}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1807", "employeeId": "973", "startDate": "2021-11-08", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1809", "employeeId": "975", "startDate": "2021-10-04", "rate": {"currency": "SGD", "value": "261000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1811", "employeeId": "976", "startDate": "2021-09-28", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1813", "employeeId": "977", "startDate": "2021-10-20", "rate": {"currency": "AUD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1815", "employeeId": "978", "startDate": "2021-09-21", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "S$16,666.67 per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1816", "employeeId": "979", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1817", "employeeId": "980", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "152375.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Excluding 8% Holiday allowance of 12,190 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1819", "employeeId": "981", "startDate": "2021-10-11", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1820", "employeeId": "982", "startDate": "2021-11-22", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1821", "employeeId": "366", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1823", "employeeId": "983", "startDate": "2021-12-01", "rate": {"currency": "INR", "value": "2964401.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1825", "employeeId": "984", "startDate": "2021-10-17", "rate": {"currency": "INR", "value": "6006580.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1827", "employeeId": "985", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1828", "employeeId": "763", "startDate": "2021-09-20", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1829", "employeeId": "795", "startDate": "2021-09-17", "rate": {"currency": "SGD", "value": "312000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "Converted to Singapore FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1830", "employeeId": "362", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583675}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1832", "employeeId": "987", "startDate": "2021-11-30", "rate": {"currency": "INR", "value": "2719954.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1834", "employeeId": "989", "startDate": "2021-11-01", "rate": {"currency": "SGD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1836", "employeeId": "990", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1838", "employeeId": "991", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "164000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1839", "employeeId": "205", "startDate": "2021-10-04", "rate": {"currency": "USD", "value": "86399.04"}, "type": "Salary", "exempt": "Exempt", "reason": "Full-Time to Part-Time", "comment": "Employment Status change from FT exempt to PT exempt, working 24 hours per week", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1840", "employeeId": "876", "startDate": "2021-06-01", "rate": {"currency": "CAD", "value": "184496.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Updating to annual salary for ChartHop\nPer contract agreement - $88.70 CAD / hour\nOffer Approval - $150,000 USD/year", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1841", "employeeId": "971", "startDate": "2021-09-13", "rate": {"currency": "CAD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": "Updating to annual salary for ChartHop\nPer contract agreement - $16,667.00 CAD / Month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1843", "employeeId": "630", "startDate": "2021-01-01", "rate": {"currency": "USD", "value": "160160.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": "Updating to annual salary for ChartHop\n$77.00 USD / hour", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1845", "employeeId": "744", "startDate": "2021-04-05", "rate": {"currency": "CAD", "value": "139692.80"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "Updating to annual salary for ChartHop\nPer contract - $67.16 CAD / Hour", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1846", "employeeId": "627", "startDate": "2021-07-01", "rate": {"currency": "AUD", "value": "250000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": "Updating to annual salary for ChartHop\nBase salary: 250,000 / 261 = $957.85 AUD / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1847", "employeeId": "992", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "109500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1848", "employeeId": "986", "startDate": "2021-11-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1850", "employeeId": "993", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1851", "employeeId": "994", "startDate": "2021-11-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1853", "employeeId": "995", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583676}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1855", "employeeId": "996", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1856", "employeeId": "988", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "60.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1857", "employeeId": "671", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "1176000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1858", "employeeId": "713", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1859", "employeeId": "712", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1860", "employeeId": "347", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1861", "employeeId": "721", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1862", "employeeId": "679", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "92000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1863", "employeeId": "751", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1864", "employeeId": "298", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1866", "employeeId": "997", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1868", "employeeId": "998", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1870", "employeeId": "999", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1871", "employeeId": "334", "startDate": "2021-10-01", "rate": {"currency": "GBP", "value": "99000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1872", "employeeId": "361", "startDate": "2021-10-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583677}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1873", "employeeId": "363", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1874", "employeeId": "411", "startDate": "2021-10-01", "rate": {"currency": "EUR", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1876", "employeeId": "1000", "startDate": "2022-01-05", "rate": {"currency": "INR", "value": "3712190.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1878", "employeeId": "1001", "startDate": "2021-10-11", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1880", "employeeId": "1002", "startDate": "2021-10-18", "rate": {"currency": "AUD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1882", "employeeId": "1003", "startDate": "2021-10-18", "rate": {"currency": "IDR", "value": "1250000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1883", "employeeId": "1004", "startDate": "2021-10-18", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1884", "employeeId": "198", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1885", "employeeId": "415", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "156000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac75 EUR / hour", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1886", "employeeId": "365", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "804000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1888", "employeeId": "1005", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "55.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1889", "employeeId": "1006", "startDate": "2022-01-24", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1892", "employeeId": "1007", "startDate": "2021-10-18", "rate": {"currency": "IDR", "value": "1026582000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1894", "employeeId": "1008", "startDate": "2021-10-18", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1896", "employeeId": "1009", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "285000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1897", "employeeId": "729", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac5,000 EUR / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583678}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1898", "employeeId": "728", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1899", "employeeId": "1010", "startDate": "2021-11-08", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1900", "employeeId": "703", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1901", "employeeId": "367", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1903", "employeeId": "1011", "startDate": "2021-10-25", "rate": {"currency": "AUD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1904", "employeeId": "1012", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1906", "employeeId": "1013", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1907", "employeeId": "739", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Retention", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1908", "employeeId": "421", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1910", "employeeId": "1015", "startDate": "2021-11-08", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1912", "employeeId": "1016", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1913", "employeeId": "1014", "startDate": "2021-11-29", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1914", "employeeId": "1017", "startDate": "2022-01-03", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1916", "employeeId": "1018", "startDate": "2021-11-01", "rate": {"currency": "CNY", "value": "850000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1918", "employeeId": "1019", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "48.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583679}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1919", "employeeId": "197", "startDate": "2021-10-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Base/Variable Adjustment (OTE remaining the same)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1920", "employeeId": "389", "startDate": "2021-11-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1921", "employeeId": "710", "startDate": "2021-11-01", "rate": {"currency": "EUR", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1922", "employeeId": "707", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1923", "employeeId": "260", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "876000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1924", "employeeId": "321", "startDate": "2021-11-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1925", "employeeId": "866", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1926", "employeeId": "590", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1927", "employeeId": "182", "startDate": "2021-10-15", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1928", "employeeId": "1020", "startDate": "2022-04-04", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1929", "employeeId": "1021", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1930", "employeeId": "1022", "startDate": "2022-01-10", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1931", "employeeId": "1023", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "42.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1932", "employeeId": "1024", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "192000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1933", "employeeId": "1025", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583680}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1934", "employeeId": "1026", "startDate": "2021-11-15", "rate": {"currency": "USD", "value": "15.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "INR 89,952 / month", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1935", "employeeId": "1028", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, USD 14,220.18", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1936", "employeeId": "1027", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1937", "employeeId": "1029", "startDate": "2022-01-03", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $20,629.09/monthly\n\nR$780,472.00 / year\nExchange rate R$ - 5,5748", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1938", "employeeId": "1030", "startDate": "2021-11-15", "rate": {"currency": "AUD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1939", "employeeId": "1031", "startDate": "2022-01-04", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1940", "employeeId": "1032", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1941", "employeeId": "1033", "startDate": "2021-11-22", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1942", "employeeId": "1034", "startDate": "2022-01-17", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1943", "employeeId": "1035", "startDate": "2022-04-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1944", "employeeId": "1036", "startDate": "2021-12-09", "rate": {"currency": "AUD", "value": "88000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1945", "employeeId": "1037", "startDate": "2021-12-13", "rate": {"currency": "AUD", "value": "255500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1946", "employeeId": "1038", "startDate": "2022-02-01", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1947", "employeeId": "410", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1948", "employeeId": "569", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583681}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1949", "employeeId": "748", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1950", "employeeId": "752", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1951", "employeeId": "1039", "startDate": "2022-01-15", "rate": {"currency": "EUR", "value": "53000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1952", "employeeId": "1040", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "255000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1953", "employeeId": "1041", "startDate": "2022-02-07", "rate": {"currency": "AUD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1954", "employeeId": "1042", "startDate": "2021-12-15", "rate": {"currency": "EUR", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1955", "employeeId": "1043", "startDate": "2021-12-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1956", "employeeId": "1044", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "325000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1957", "employeeId": "694", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "45.00"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": "Up to a maximum of EUR 5,000 per month.", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1958", "employeeId": "1045", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1959", "employeeId": "1046", "startDate": "2021-12-09", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1960", "employeeId": "1047", "startDate": "2021-12-13", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1961", "employeeId": "416", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1962", "employeeId": "578", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "81000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1963", "employeeId": "576", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583682}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1964", "employeeId": "747", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1965", "employeeId": "339", "startDate": "2021-12-01", "rate": {"currency": "EUR", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1966", "employeeId": "734", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1967", "employeeId": "1048", "startDate": "2022-01-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1968", "employeeId": "1049", "startDate": "2021-12-13", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1969", "employeeId": "1050", "startDate": "2021-12-28", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1970", "employeeId": "783", "startDate": "2021-12-06", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1971", "employeeId": "1051", "startDate": "2021-12-13", "rate": {"currency": "GBP", "value": "97000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1972", "employeeId": "1052", "startDate": "2022-01-10", "rate": {"currency": "BRL", "value": "278030.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$50,000.00 USD / year\n1 USD = 5.5606 BRL currency conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1973", "employeeId": "264", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1974", "employeeId": "419", "startDate": "2021-12-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1975", "employeeId": "386", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "1212000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1976", "employeeId": "328", "startDate": "2021-12-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1977", "employeeId": "821", "startDate": "2021-11-23", "rate": {"currency": "INR", "value": "7285000.00"}, "type": "Salary", "exempt": null, "reason": "Conversion", "comment": "PT to FT contractor conversion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1978", "employeeId": "1053", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1979", "employeeId": "1054", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583683}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1980", "employeeId": "374", "startDate": "2021-12-29", "rate": {"currency": "AUD", "value": "145000.08"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from UK to AUS.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1981", "employeeId": "1055", "startDate": "2022-01-10", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1982", "employeeId": "1056", "startDate": "2022-02-07", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1983", "employeeId": "1057", "startDate": "2022-01-05", "rate": {"currency": "USD", "value": "340000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1984", "employeeId": "213", "startDate": "2021-11-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1985", "employeeId": "342", "startDate": "2021-12-01", "rate": {"currency": "SEK", "value": "1680000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1986", "employeeId": "1058", "startDate": "2022-02-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1987", "employeeId": "587", "startDate": "2021-12-16", "rate": {"currency": "CAD", "value": "140004.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transfer from UK to Canada", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1988", "employeeId": "763", "startDate": "2022-01-24", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "Previously an intern. Hired as FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1989", "employeeId": "786", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1990", "employeeId": "1059", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1991", "employeeId": "1060", "startDate": "2022-01-17", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1992", "employeeId": "1061", "startDate": "2022-01-17", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1993", "employeeId": "329", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1994", "employeeId": "1062", "startDate": "2022-01-24", "rate": {"currency": "EUR", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583684}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1995", "employeeId": "1063", "startDate": "2022-02-07", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1996", "employeeId": "1064", "startDate": "2022-03-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 129,231 EUR/year + 1 extra 13th pay of 10,769 EUR paid in December = 140,000 EUR/year. This amount is excluding 8% Holiday allowance of 10,338,48 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1997", "employeeId": "1065", "startDate": "2022-01-03", "rate": {"currency": "GBP", "value": "252000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1998", "employeeId": "1066", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "1999", "employeeId": "1067", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2000", "employeeId": "1068", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2001", "employeeId": "1069", "startDate": "2022-02-07", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2002", "employeeId": "846", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2003", "employeeId": "806", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FTE conversion", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2007", "employeeId": "1072", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2008", "employeeId": "1073", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2009", "employeeId": "829", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2010", "employeeId": "704", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2011", "employeeId": "1076", "startDate": "2022-01-04", "rate": {"currency": "INR", "value": "2649292.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2012", "employeeId": "1077", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2013", "employeeId": "965", "startDate": "2022-01-04", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583685}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2014", "employeeId": "1074", "startDate": "2022-01-10", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2015", "employeeId": "1078", "startDate": "2022-02-07", "rate": {"currency": "AUD", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2016", "employeeId": "1080", "startDate": "2022-01-10", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2017", "employeeId": "1081", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2019", "employeeId": "1083", "startDate": "2022-06-01", "rate": {"currency": "SGD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2020", "employeeId": "1075", "startDate": "2022-02-15", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Annual base salary 83,077 EUR/year + 1 extra 13th pay of 6,923 EUR paid in December = 90,000 EUR/year. This amount is excluding 8% Holiday allowance of 6,646,16 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2021", "employeeId": "1084", "startDate": "2022-01-24", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2022", "employeeId": "1085", "startDate": "2022-01-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2023", "employeeId": "1079", "startDate": "2022-03-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2024", "employeeId": "1086", "startDate": "2022-01-17", "rate": {"currency": "USD", "value": "400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2026", "employeeId": "1088", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2027", "employeeId": "1089", "startDate": "2022-02-28", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2028", "employeeId": "1090", "startDate": "2022-01-24", "rate": {"currency": "BRL", "value": "277310.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2029", "employeeId": "1092", "startDate": "2022-02-14", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2030", "employeeId": "1091", "startDate": "2022-04-19", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583686}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2031", "employeeId": "1093", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2033", "employeeId": "1097", "startDate": "2022-04-04", "rate": {"currency": "SGD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2034", "employeeId": "1098", "startDate": "2022-01-17", "rate": {"currency": "USD", "value": "3000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Monthly payment: $3000 USD", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2035", "employeeId": "1099", "startDate": "2022-01-31", "rate": {"currency": "USD", "value": "144000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2036", "employeeId": "854", "startDate": "2022-02-01", "rate": {"currency": "EUR", "value": "70.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": "15 hours of work / week\nTotal sum of \u20ac1050 EUR for 15 hours of actual work per week", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2037", "employeeId": "1101", "startDate": "2022-02-07", "rate": {"currency": "CNY", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "CNY 75,000 / Month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2038", "employeeId": "1100", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2039", "employeeId": "1102", "startDate": "2022-02-14", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2040", "employeeId": "1103", "startDate": "2022-05-10", "rate": {"currency": "SEK", "value": "912000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2042", "employeeId": "1104", "startDate": "2022-04-01", "rate": {"currency": "EUR", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2044", "employeeId": "1105", "startDate": "2022-02-22", "rate": {"currency": "USD", "value": "177000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2046", "employeeId": "1107", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2047", "employeeId": "1109", "startDate": "2022-02-15", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2048", "employeeId": "1110", "startDate": "2022-03-21", "rate": {"currency": "SGD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2049", "employeeId": "1111", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2050", "employeeId": "1114", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583687}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2051", "employeeId": "1115", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2052", "employeeId": "1116", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2053", "employeeId": "1095", "startDate": "2022-03-28", "rate": {"currency": "GBP", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2054", "employeeId": "1112", "startDate": "2022-05-16", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2055", "employeeId": "1118", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2056", "employeeId": "1119", "startDate": "2022-03-21", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2057", "employeeId": "1120", "startDate": "2022-02-28", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2058", "employeeId": "1121", "startDate": "2022-04-01", "rate": {"currency": "JPY", "value": "19200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2059", "employeeId": "1113", "startDate": "2022-03-21", "rate": {"currency": "EUR", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2060", "employeeId": "209", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2061", "employeeId": "773", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "70000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2062", "employeeId": "231", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "46.15"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2063", "employeeId": "374", "startDate": "2022-01-01", "rate": {"currency": "AUD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2064", "employeeId": "136", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2065", "employeeId": "124", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "231000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583688}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2066", "employeeId": "191", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2067", "employeeId": "863", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "123000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2068", "employeeId": "843", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "100000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2069", "employeeId": "222", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "78000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2070", "employeeId": "253", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "214000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2071", "employeeId": "240", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "254400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2072", "employeeId": "114", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "258110"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2073", "employeeId": "715", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "110000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2074", "employeeId": "859", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2075", "employeeId": "865", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "73000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2076", "employeeId": "173", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2077", "employeeId": "652", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2078", "employeeId": "807", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "66000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2079", "employeeId": "897", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2080", "employeeId": "808", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "69500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2081", "employeeId": "774", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583689}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2082", "employeeId": "155", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "71000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2083", "employeeId": "791", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "68000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2084", "employeeId": "165", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "133150"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2085", "employeeId": "620", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "148000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2086", "employeeId": "711", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2087", "employeeId": "242", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2088", "employeeId": "798", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2089", "employeeId": "756", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2090", "employeeId": "801", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2091", "employeeId": "245", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "135000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2092", "employeeId": "614", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2093", "employeeId": "200", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "201500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2094", "employeeId": "676", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "265000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2095", "employeeId": "163", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "173000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2096", "employeeId": "682", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583690}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2097", "employeeId": "199", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2098", "employeeId": "158", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "82000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2099", "employeeId": "705", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2100", "employeeId": "176", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "250000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2101", "employeeId": "651", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "83000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2102", "employeeId": "583", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "179000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2103", "employeeId": "738", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2104", "employeeId": "876", "startDate": "2022-01-01", "rate": {"currency": "CAD", "value": "190030"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2105", "employeeId": "835", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "147000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2106", "employeeId": "206", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "300000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2107", "employeeId": "364", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "290000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2108", "employeeId": "226", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "280000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2109", "employeeId": "978", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "206000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2110", "employeeId": "192", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130292"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2111", "employeeId": "818", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "168000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2112", "employeeId": "143", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "174900"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583691}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2113", "employeeId": "951", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "782363"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2114", "employeeId": "138", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "137550"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2115", "employeeId": "761", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2116", "employeeId": "205", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "89854"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2117", "employeeId": "719", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "210000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2118", "employeeId": "737", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "144200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2119", "employeeId": "762", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "204750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2120", "employeeId": "236", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2121", "employeeId": "600", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "87500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2122", "employeeId": "820", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2123", "employeeId": "584", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "192500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2124", "employeeId": "149", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2125", "employeeId": "178", "startDate": "2022-02-01", "rate": {"currency": "USD", "value": "48.50"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2126", "employeeId": "255", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2127", "employeeId": "217", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "177469"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583692}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2128", "employeeId": "202", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "208000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2129", "employeeId": "243", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "178190"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2130", "employeeId": "233", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180960"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2131", "employeeId": "219", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "132000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2132", "employeeId": "210", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "182574"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2133", "employeeId": "247", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "189000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2134", "employeeId": "235", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "120450."}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2135", "employeeId": "638", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "134000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2136", "employeeId": "229", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "143290"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2137", "employeeId": "146", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "186675.84"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2138", "employeeId": "250", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "105000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2139", "employeeId": "194", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2140", "employeeId": "164", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "160500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2141", "employeeId": "147", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "166400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2142", "employeeId": "714", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2143", "employeeId": "252", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "144900"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583693}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2144", "employeeId": "741", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "122400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2145", "employeeId": "207", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "184591.58"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2146", "employeeId": "727", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "156000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2147", "employeeId": "186", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170565.20"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2148", "employeeId": "187", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "162750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2149", "employeeId": "141", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "185726.84"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2150", "employeeId": "174", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "222853.68"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2151", "employeeId": "816", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "115000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2152", "employeeId": "792", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "153000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2153", "employeeId": "629", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2154", "employeeId": "619", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "231000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2155", "employeeId": "227", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "171600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2156", "employeeId": "716", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "154500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2157", "employeeId": "135", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "183980.16"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2158", "employeeId": "755", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2159", "employeeId": "699", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583694}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2160", "employeeId": "234", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2161", "employeeId": "594", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "175000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2162", "employeeId": "599", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2163", "employeeId": "770", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2164", "employeeId": "180", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2165", "employeeId": "232", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2166", "employeeId": "257", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2167", "employeeId": "170", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2168", "employeeId": "622", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2169", "employeeId": "656", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2170", "employeeId": "130", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2171", "employeeId": "499", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "140000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2172", "employeeId": "189", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2173", "employeeId": "184", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "210000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2174", "employeeId": "228", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2175", "employeeId": "185", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583695}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2176", "employeeId": "672", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2177", "employeeId": "197", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "148000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2178", "employeeId": "725", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "129000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2179", "employeeId": "134", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Moving variable to base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2180", "employeeId": "783", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "125000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2181", "employeeId": "1047", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2182", "employeeId": "1046", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "137500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2183", "employeeId": "621", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "160950"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2184", "employeeId": "156", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "114180"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2185", "employeeId": "615", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "121786"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2187", "employeeId": "618", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2188", "employeeId": "212", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "224070"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2189", "employeeId": "145", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "189000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2190", "employeeId": "150", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2191", "employeeId": "160", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2192", "employeeId": "179", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583696}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2193", "employeeId": "152", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2194", "employeeId": "153", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2195", "employeeId": "126", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2197", "employeeId": "769", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2198", "employeeId": "695", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2199", "employeeId": "824", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2200", "employeeId": "592", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2201", "employeeId": "132", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "155000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2202", "employeeId": "159", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2203", "employeeId": "580", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "265000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2204", "employeeId": "595", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "275000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2205", "employeeId": "119", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "280000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2206", "employeeId": "171", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "300000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2207", "employeeId": "172", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "250000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2208", "employeeId": "826", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "310000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2209", "employeeId": "626", "startDate": "2022-01-01", "rate": {"currency": "AUD", "value": "265000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583697}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2210", "employeeId": "177", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2211", "employeeId": "754", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3143025"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2212", "employeeId": "809", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3157980"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2213", "employeeId": "625", "startDate": "2022-01-01", "rate": {"currency": "INR", "value": "3277500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2214", "employeeId": "771", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "675000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2215", "employeeId": "849", "startDate": "2022-01-01", "rate": {"currency": "CNY", "value": "952000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2216", "employeeId": "827", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "187000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2217", "employeeId": "795", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "332000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2218", "employeeId": "775", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "358845"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2219", "employeeId": "363", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 85% effective 12/01/2022. 85% salary = 63 750 EUR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2220", "employeeId": "324", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2221", "employeeId": "351", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2222", "employeeId": "327", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2223", "employeeId": "304", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "112500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80 % salary = 90 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2224", "employeeId": "850", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u00a3500 GBP / day", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2225", "employeeId": "837", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583698}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2226", "employeeId": "830", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2227", "employeeId": "894", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2228", "employeeId": "648", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2229", "employeeId": "647", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2230", "employeeId": "355", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "127000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2231", "employeeId": "668", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2232", "employeeId": "912", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2233", "employeeId": "927", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2234", "employeeId": "395", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2235", "employeeId": "604", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2236", "employeeId": "334", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2237", "employeeId": "856", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2238", "employeeId": "383", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2239", "employeeId": "916", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "84000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2240", "employeeId": "796", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2241", "employeeId": "400", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583699}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2242", "employeeId": "833", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2243", "employeeId": "747", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2244", "employeeId": "576", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2245", "employeeId": "734", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2246", "employeeId": "839", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2247", "employeeId": "751", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2248", "employeeId": "758", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "101000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2249", "employeeId": "679", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2250", "employeeId": "578", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2251", "employeeId": "697", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2252", "employeeId": "921", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "135000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2253", "employeeId": "712", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2254", "employeeId": "883", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "122000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2255", "employeeId": "347", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2256", "employeeId": "286", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583700}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2257", "employeeId": "914", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2258", "employeeId": "942", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "66000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2259", "employeeId": "332", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "78000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2260", "employeeId": "331", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "118000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2261", "employeeId": "831", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2262", "employeeId": "943", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "60000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2263", "employeeId": "662", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2264", "employeeId": "385", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "114000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2265", "employeeId": "328", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2266", "employeeId": "752", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2267", "employeeId": "872", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2268", "employeeId": "389", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2269", "employeeId": "748", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2270", "employeeId": "299", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2271", "employeeId": "264", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "185000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2272", "employeeId": "1032", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583701}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2273", "employeeId": "1051", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2274", "employeeId": "994", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "96000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2275", "employeeId": "957", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2276", "employeeId": "947", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2277", "employeeId": "961", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2278", "employeeId": "953", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2279", "employeeId": "1012", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2280", "employeeId": "828", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2281", "employeeId": "853", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2282", "employeeId": "925", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2283", "employeeId": "924", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2284", "employeeId": "923", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "41000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2285", "employeeId": "842", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "42000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2286", "employeeId": "698", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "47000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583702}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2287", "employeeId": "296", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "68500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2288", "employeeId": "663", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2289", "employeeId": "369", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "113550.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2290", "employeeId": "650", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "141750.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2291", "employeeId": "834", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "162000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2292", "employeeId": "658", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2293", "employeeId": "409", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "153000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2294", "employeeId": "760", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "131500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2295", "employeeId": "292", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2296", "employeeId": "353", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2297", "employeeId": "381", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2298", "employeeId": "361", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "570000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2299", "employeeId": "802", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "846000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2300", "employeeId": "403", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2301", "employeeId": "813", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583703}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2302", "employeeId": "570", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2303", "employeeId": "803", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2304", "employeeId": "891", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2305", "employeeId": "574", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2306", "employeeId": "421", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "820800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2307", "employeeId": "836", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2308", "employeeId": "398", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2309", "employeeId": "365", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1085400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2310", "employeeId": "684", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "924000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2311", "employeeId": "602", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2312", "employeeId": "678", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2313", "employeeId": "728", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "690000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2314", "employeeId": "707", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2315", "employeeId": "396", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2316", "employeeId": "293", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2317", "employeeId": "297", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1029600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583704}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2318", "employeeId": "298", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2319", "employeeId": "848", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2320", "employeeId": "291", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%.\n80% salary = 816 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2321", "employeeId": "785", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2322", "employeeId": "787", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2323", "employeeId": "314", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2324", "employeeId": "635", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2325", "employeeId": "740", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2326", "employeeId": "281", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1117800.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2327", "employeeId": "310", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2328", "employeeId": "311", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/22/2022.\n80% salary = 576 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2329", "employeeId": "335", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "873600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/06/2022. \n80% salary = 698 880 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2330", "employeeId": "611", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "735000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2331", "employeeId": "659", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2332", "employeeId": "337", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2333", "employeeId": "269", "startDate": "2022-01-01", "rate": {"currency": "DKK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583705}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2334", "employeeId": "294", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1020000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2335", "employeeId": "735", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2336", "employeeId": "410", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2337", "employeeId": "646", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2338", "employeeId": "687", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "811200.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2339", "employeeId": "674", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "816000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2340", "employeeId": "613", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "984000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2341", "employeeId": "358", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "600000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2342", "employeeId": "392", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2343", "employeeId": "569", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2344", "employeeId": "875", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2345", "employeeId": "944", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2346", "employeeId": "307", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 600 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2347", "employeeId": "812", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2348", "employeeId": "260", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2349", "employeeId": "575", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583706}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2350", "employeeId": "703", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2351", "employeeId": "847", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2352", "employeeId": "368", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2353", "employeeId": "386", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2354", "employeeId": "869", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2355", "employeeId": "366", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2356", "employeeId": "533", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2357", "employeeId": "301", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2358", "employeeId": "302", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2359", "employeeId": "893", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "552000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2360", "employeeId": "373", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "696000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2361", "employeeId": "372", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2362", "employeeId": "881", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2363", "employeeId": "388", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "864000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2364", "employeeId": "321", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "936000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2365", "employeeId": "342", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "2100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583707}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2366", "employeeId": "890", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2367", "employeeId": "671", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2368", "employeeId": "418", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1284000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2369", "employeeId": "799", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1260000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2370", "employeeId": "972", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2371", "employeeId": "979", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1560000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2372", "employeeId": "973", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "732000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2373", "employeeId": "723", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "402000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2374", "employeeId": "318", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1446000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2375", "employeeId": "375", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "828000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2376", "employeeId": "610", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "661500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 08/01/2021 until 02/01/2022. 80% salary = 529 200 SEK / year\nWorks 90% effective 02/01/2022 until 07/31/2022. 90% salary = 595 350 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2377", "employeeId": "384", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "632400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2378", "employeeId": "644", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "687000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2379", "employeeId": "313", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "465000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2380", "employeeId": "319", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "453600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2381", "employeeId": "117", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583708}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2382", "employeeId": "116", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1385600.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2383", "employeeId": "268", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2384", "employeeId": "713", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2385", "employeeId": "262", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "178500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2386", "employeeId": "326", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "76000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2387", "employeeId": "317", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2388", "employeeId": "710", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2389", "employeeId": "316", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2390", "employeeId": "339", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2391", "employeeId": "346", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2392", "employeeId": "411", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2393", "employeeId": "354", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "127000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2394", "employeeId": "822", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "181000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2395", "employeeId": "605", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "70350.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2396", "employeeId": "768", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "126000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2397", "employeeId": "352", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "257500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583709}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2398", "employeeId": "729", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2399", "employeeId": "362", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2400", "employeeId": "280", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2401", "employeeId": "416", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2402", "employeeId": "645", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "612000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2403", "employeeId": "909", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2404", "employeeId": "330", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2405", "employeeId": "757", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "620340.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2406", "employeeId": "356", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1291490.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2407", "employeeId": "636", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2408", "employeeId": "685", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2409", "employeeId": "670", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2410", "employeeId": "603", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2411", "employeeId": "312", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88477.33"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2412", "employeeId": "341", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "113000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2413", "employeeId": "402", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "89500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583710}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2414", "employeeId": "295", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "158000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2415", "employeeId": "696", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "101500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2416", "employeeId": "736", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "102500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2417", "employeeId": "357", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "165000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2418", "employeeId": "649", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "88700.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2419", "employeeId": "399", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "84500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2420", "employeeId": "845", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "79500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2421", "employeeId": "572", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2422", "employeeId": "413", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "95500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2423", "employeeId": "852", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "67100.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2424", "employeeId": "322", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "124163.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2425", "employeeId": "766", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "107793.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2426", "employeeId": "391", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "86000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2427", "employeeId": "609", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1380000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2428", "employeeId": "359", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1230000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2429", "employeeId": "401", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583711}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2430", "employeeId": "382", "startDate": "2022-01-01", "rate": {"currency": "ILS", "value": "799500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "To be paid in monthly instalments of 66,625 NIS per month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2431", "employeeId": "406", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2432", "employeeId": "753", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "114450.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2433", "employeeId": "300", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1300000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2434", "employeeId": "606", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "1100000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2435", "employeeId": "634", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "152500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2436", "employeeId": "290", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2437", "employeeId": "265", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2438", "employeeId": "588", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2439", "employeeId": "309", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "190000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2440", "employeeId": "289", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "210000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2441", "employeeId": "653", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "185000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583712}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2442", "employeeId": "267", "startDate": "2022-01-01", "rate": {"currency": "EUR", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2443", "employeeId": "759", "startDate": "2022-01-01", "rate": {"currency": "SGD", "value": "270000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Eff. 1/1/22", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2445", "employeeId": "1124", "startDate": "2022-02-28", "rate": {"currency": "INR", "value": "3760250.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2446", "employeeId": "1117", "startDate": "2022-03-01", "rate": {"currency": "USD", "value": "440000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2447", "employeeId": "1126", "startDate": "2022-03-07", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2448", "employeeId": "1127", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2449", "employeeId": "393", "startDate": "2022-03-01", "rate": {"currency": "AUD", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2450", "employeeId": "1128", "startDate": "2022-03-21", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2451", "employeeId": "295", "startDate": "2022-03-01", "rate": {"currency": "GBP", "value": "166000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2452", "employeeId": "1129", "startDate": "2022-04-04", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2453", "employeeId": "1122", "startDate": "2022-03-14", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2454", "employeeId": "1131", "startDate": "2022-05-23", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2455", "employeeId": "1134", "startDate": "2022-02-22", "rate": {"currency": "INR", "value": "1150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$14/hr is the pay rate to InfoTree\nPer contract - 11,50,000 INR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2457", "employeeId": "1133", "startDate": "2022-05-23", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2460", "employeeId": "1096", "startDate": "2022-05-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583713}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2461", "employeeId": "1136", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2462", "employeeId": "1130", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "94000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2463", "employeeId": "1138", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2464", "employeeId": "380", "startDate": "2022-01-01", "rate": {"currency": "ILS", "value": "564000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "No base change, only variable change", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2465", "employeeId": "1139", "startDate": "2022-03-05", "rate": {"currency": "IDR", "value": "1571427750.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2466", "employeeId": "1140", "startDate": "2022-03-21", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2467", "employeeId": "1141", "startDate": "2022-03-28", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2468", "employeeId": "1143", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2469", "employeeId": "1144", "startDate": "2022-04-04", "rate": {"currency": "CAD", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Please note that we are paying him in Canadian dollars as he is from Canada and has a Canadian corp\n\n+ Christmas bonus (one month's base salary paid in December annually)", "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2470", "employeeId": "1145", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2471", "employeeId": "1146", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2473", "employeeId": "1147", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2474", "employeeId": "832", "startDate": "2022-03-16", "rate": {"currency": "USD", "value": "105.00"}, "type": "Hourly", "exempt": null, "reason": "Comp Adjustment", "comment": "Contractor via KForce\nend date is 9/15/22", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2475", "employeeId": "1149", "startDate": "2022-06-27", "rate": {"currency": "SGD", "value": "211000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2476", "employeeId": "1150", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "195000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583714}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2477", "employeeId": "1060", "startDate": "2022-06-20", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2479", "employeeId": "1154", "startDate": "2022-04-11", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2480", "employeeId": "1155", "startDate": "2022-04-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2481", "employeeId": "1156", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2482", "employeeId": "1151", "startDate": "2022-03-28", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2483", "employeeId": "691", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2484", "employeeId": "1132", "startDate": "2022-05-16", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2485", "employeeId": "1158", "startDate": "2022-04-26", "rate": {"currency": "USD", "value": "310000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2486", "employeeId": "907", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2487", "employeeId": "1142", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2488", "employeeId": "1152", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2489", "employeeId": "1148", "startDate": "2022-05-16", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2490", "employeeId": "1157", "startDate": "2022-06-20", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2491", "employeeId": "1159", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "95.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2492", "employeeId": "1160", "startDate": "2022-06-01", "rate": {"currency": "SGD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2493", "employeeId": "1161", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583715}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2494", "employeeId": "1162", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2495", "employeeId": "1163", "startDate": "2022-03-28", "rate": {"currency": "USD", "value": "13.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "FT Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2497", "employeeId": "1164", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2498", "employeeId": "1165", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2499", "employeeId": "1166", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2500", "employeeId": "1167", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2501", "employeeId": "1168", "startDate": "2022-08-01", "rate": {"currency": "SEK", "value": "480000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2502", "employeeId": "1169", "startDate": "2022-04-19", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2503", "employeeId": "1170", "startDate": "2022-04-04", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": "PT Contractor", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2504", "employeeId": "1171", "startDate": "2022-04-04", "rate": {"currency": "MXN", "value": "2379178.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "+ Christmas bonus (one month's base salary paid in December annually)\n\n13 month pay schedule, $8,204.56/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2505", "employeeId": "1172", "startDate": "2022-04-18", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2506", "employeeId": "1173", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2507", "employeeId": "1174", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "250.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2508", "employeeId": "865", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promo Eff. 4/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2510", "employeeId": "1175", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583716}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2511", "employeeId": "144", "startDate": "2022-04-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2512", "employeeId": "1176", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "960000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2513", "employeeId": "1178", "startDate": "2022-05-09", "rate": {"currency": "AUD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2514", "employeeId": "1179", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2515", "employeeId": "1180", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2516", "employeeId": "1181", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2518", "employeeId": "1182", "startDate": "2022-05-01", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2519", "employeeId": "1183", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2520", "employeeId": "1186", "startDate": "2022-05-02", "rate": {"currency": "BRL", "value": "783705.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $20,714.54/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2521", "employeeId": "908", "startDate": "2022-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2522", "employeeId": "1185", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2523", "employeeId": "778", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2524", "employeeId": "208", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "435000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2525", "employeeId": "1061", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2526", "employeeId": "261", "startDate": "2022-01-01", "rate": {"currency": "GBP", "value": "196000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583717}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2527", "employeeId": "273", "startDate": "2022-01-01", "rate": {"currency": "DKK", "value": "1705473.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2528", "employeeId": "1190", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2529", "employeeId": "1184", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2530", "employeeId": "1191", "startDate": "2022-06-20", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2531", "employeeId": "1193", "startDate": "2022-04-25", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2532", "employeeId": "1188", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2533", "employeeId": "1195", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "756000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2534", "employeeId": "1194", "startDate": "2022-05-30", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2537", "employeeId": "1196", "startDate": "2022-05-02", "rate": {"currency": "BRL", "value": "558000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2538", "employeeId": "1197", "startDate": "2022-05-02", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2539", "employeeId": "1198", "startDate": "2022-06-01", "rate": {"currency": "EUR", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2540", "employeeId": "1199", "startDate": "2022-04-25", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2541", "employeeId": "1200", "startDate": "2022-05-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2542", "employeeId": "1201", "startDate": "2022-05-30", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2543", "employeeId": "1204", "startDate": "2022-04-25", "rate": {"currency": "CNY", "value": "700500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583718}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2544", "employeeId": "1205", "startDate": "2022-05-23", "rate": {"currency": "EUR", "value": "154000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 12,320 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2546", "employeeId": "1203", "startDate": "2022-05-30", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2547", "employeeId": "214", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "162500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Initial comp adjustment 152,500 effective 1/1/22. Additional adjustment approved 4/25 to 162,500 retroactive to 1/1/22.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2548", "employeeId": "195", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Initial comp adjustment 165,000 effective 1/1/22. Additional adjustment approved 4/25 to 175,000 retroactive to 1/1/22.", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2549", "employeeId": "1207", "startDate": "2022-05-16", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2550", "employeeId": "1208", "startDate": "2022-05-23", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2551", "employeeId": "1209", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2552", "employeeId": "1210", "startDate": "2022-05-09", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2553", "employeeId": "1211", "startDate": "2022-06-01", "rate": {"currency": "AUD", "value": "192000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2554", "employeeId": "1212", "startDate": "2022-06-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2555", "employeeId": "120", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "3000000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2556", "employeeId": "1213", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "95004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "EUR 7917 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2557", "employeeId": "1214", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2558", "employeeId": "1215", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2559", "employeeId": "1216", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2560", "employeeId": "117", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583719}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2561", "employeeId": "1217", "startDate": "2022-05-23", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2562", "employeeId": "1206", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2563", "employeeId": "263", "startDate": "2022-01-01", "rate": {"currency": "SEK", "value": "2953700.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2564", "employeeId": "1219", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2565", "employeeId": "1220", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2567", "employeeId": "1222", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2568", "employeeId": "1223", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2569", "employeeId": "1224", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "88400.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2570", "employeeId": "1225", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2571", "employeeId": "1228", "startDate": "2022-06-01", "rate": {"currency": "CNY", "value": "807204.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2572", "employeeId": "1230", "startDate": "2022-06-06", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2573", "employeeId": "1231", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2574", "employeeId": "1232", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2575", "employeeId": "1227", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2576", "employeeId": "677", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583720}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2577", "employeeId": "1229", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2578", "employeeId": "753", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "138000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2579", "employeeId": "1233", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "112500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 9,000 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2580", "employeeId": "1234", "startDate": "2022-06-01", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2581", "employeeId": "1235", "startDate": "2022-05-31", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2583", "employeeId": "121", "startDate": "2022-01-01", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Additional retro adjustment (comp was previously 340,000 eff 1/1/22)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2584", "employeeId": "1237", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2585", "employeeId": "1238", "startDate": "2022-07-25", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2586", "employeeId": "1239", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "115000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2587", "employeeId": "318", "startDate": "2022-06-01", "rate": {"currency": "SEK", "value": "1656000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2588", "employeeId": "1240", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2589", "employeeId": "1241", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "1000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Working 20 hours per week", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2590", "employeeId": "1242", "startDate": "2022-06-06", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2591", "employeeId": "1243", "startDate": "2022-06-13", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2592", "employeeId": "1244", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583721}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2594", "employeeId": "1245", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2596", "employeeId": "1247", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "176000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2597", "employeeId": "1248", "startDate": "2022-06-13", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2600", "employeeId": "1250", "startDate": "2022-08-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2601", "employeeId": "1251", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2602", "employeeId": "1252", "startDate": "2022-08-15", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2603", "employeeId": "1246", "startDate": "2022-07-04", "rate": {"currency": "EUR", "value": "45000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2604", "employeeId": "1254", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "176000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2605", "employeeId": "1255", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2606", "employeeId": "1256", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2608", "employeeId": "1258", "startDate": "2022-07-18", "rate": {"currency": "INR", "value": "6900000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2609", "employeeId": "1260", "startDate": "2022-07-25", "rate": {"currency": "INR", "value": "2488752.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2610", "employeeId": "1261", "startDate": "2022-06-27", "rate": {"currency": "BRL", "value": "612000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2611", "employeeId": "1262", "startDate": "2023-01-03", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2613", "employeeId": "1264", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "290000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583722}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2614", "employeeId": "546", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "468000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2615", "employeeId": "1265", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "172200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2616", "employeeId": "1266", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2617", "employeeId": "1267", "startDate": "2022-07-11", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2618", "employeeId": "1268", "startDate": "2022-08-29", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2619", "employeeId": "832", "startDate": "2022-06-27", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converted from KForce Contractor to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2620", "employeeId": "187", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "177000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2621", "employeeId": "405", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Relocating to Spain", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2622", "employeeId": "1269", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2623", "employeeId": "1270", "startDate": "2022-08-22", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2624", "employeeId": "1271", "startDate": "2022-08-15", "rate": {"currency": "GBP", "value": "82000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2625", "employeeId": "1272", "startDate": "2022-06-28", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2626", "employeeId": "1273", "startDate": "2022-09-26", "rate": {"currency": "GBP", "value": "83000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2627", "employeeId": "937", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Internal Transfer / Comp Adjustment eff. 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2629", "employeeId": "1274", "startDate": "2022-09-01", "rate": {"currency": "EUR", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583723}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2630", "employeeId": "1275", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "22.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2631", "employeeId": "1276", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2632", "employeeId": "1277", "startDate": "2022-06-30", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2633", "employeeId": "1278", "startDate": "2022-08-08", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2634", "employeeId": "1108", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "33.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Conversion", "comment": "Converted to paid intern", "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2636", "employeeId": "1062", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Contractor to FTE", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2637", "employeeId": "924", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2638", "employeeId": "1010", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2639", "employeeId": "827", "startDate": "2022-04-01", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2641", "employeeId": "408", "startDate": "2022-09-01", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2642", "employeeId": "1281", "startDate": "2022-10-10", "rate": {"currency": "EUR", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2644", "employeeId": "1283", "startDate": "2022-08-31", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2645", "employeeId": "1284", "startDate": "2022-10-01", "rate": {"currency": "EUR", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2646", "employeeId": "1280", "startDate": "2022-07-05", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2647", "employeeId": "813", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "780000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583724}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2648", "employeeId": "1285", "startDate": "2022-10-10", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2651", "employeeId": "1286", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2652", "employeeId": "1287", "startDate": "2022-07-11", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2653", "employeeId": "912", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2654", "employeeId": "1017", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2655", "employeeId": "1288", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2656", "employeeId": "1289", "startDate": "2022-10-01", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2657", "employeeId": "1290", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2658", "employeeId": "1291", "startDate": "2022-07-18", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2659", "employeeId": "1292", "startDate": "2022-08-01", "rate": {"currency": "SGD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2660", "employeeId": "1293", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "1380000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2661", "employeeId": "1294", "startDate": "2022-08-22", "rate": {"currency": "SGD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2662", "employeeId": "1295", "startDate": "2022-08-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2663", "employeeId": "1296", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "2184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2664", "employeeId": "1297", "startDate": "2022-08-22", "rate": {"currency": "SEK", "value": "2400000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2665", "employeeId": "1298", "startDate": "2022-09-26", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583725}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2666", "employeeId": "1299", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "112000"}, "type": "Salary", "exempt": "Exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2667", "employeeId": "1300", "startDate": "2022-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2668", "employeeId": "1301", "startDate": "2022-08-28", "rate": {"currency": "ILS", "value": "500004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2669", "employeeId": "1302", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "95000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2670", "employeeId": "1303", "startDate": "2022-12-01", "rate": {"currency": "EUR", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2671", "employeeId": "1304", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "672000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2672", "employeeId": "629", "startDate": "2022-07-01", "rate": {"currency": "CAD", "value": "212500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion/ Relo from FTE to Contractor", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2673", "employeeId": "978", "startDate": "2022-07-01", "rate": {"currency": "SGD", "value": "273000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion to Head of Channels & Alliances APAC", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2674", "employeeId": "1305", "startDate": "2022-08-08", "rate": {"currency": "INR", "value": "6000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2675", "employeeId": "165", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion to $155k base + comp adjustment - moving variable ($20k) into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2676", "employeeId": "1155", "startDate": "2022-10-19", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2677", "employeeId": "1307", "startDate": "2022-11-01", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2678", "employeeId": "792", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "Promotion Eff. 7/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2679", "employeeId": "1306", "startDate": "2022-08-16", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2680", "employeeId": "736", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2681", "employeeId": "1308", "startDate": "2022-09-12", "rate": {"currency": "SGD", "value": "103200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583726}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2682", "employeeId": "1309", "startDate": "2022-05-03", "rate": {"currency": "USD", "value": "65.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2683", "employeeId": "1310", "startDate": "2022-08-08", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Base fee EUR 8,333.33 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2684", "employeeId": "910", "startDate": "2022-08-01", "rate": {"currency": "GBP", "value": "187500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2685", "employeeId": "1311", "startDate": "2022-08-22", "rate": {"currency": "USD", "value": "143250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2686", "employeeId": "592", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "Comp Adj - 7/1", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2687", "employeeId": "1312", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1320000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2688", "employeeId": "1313", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2689", "employeeId": "1314", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2690", "employeeId": "1315", "startDate": "2022-08-22", "rate": {"currency": "GBP", "value": "45000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2691", "employeeId": "1316", "startDate": "2022-10-03", "rate": {"currency": "SEK", "value": "1100004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2692", "employeeId": "1317", "startDate": "2022-09-12", "rate": {"currency": "SGD", "value": "86520.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2693", "employeeId": "1318", "startDate": "2022-08-30", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2694", "employeeId": "1319", "startDate": "2022-10-25", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2695", "employeeId": "1320", "startDate": "2022-09-19", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2696", "employeeId": "805", "startDate": "2022-07-01", "rate": {"currency": "EUR", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2697", "employeeId": "573", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "75000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583727}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2698", "employeeId": "1321", "startDate": "2022-09-05", "rate": {"currency": "GBP", "value": "50000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2699", "employeeId": "1322", "startDate": "2022-10-03", "rate": {"currency": "GBP", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2700", "employeeId": "340", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "64717.40"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2701", "employeeId": "296", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "71000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2702", "employeeId": "1004", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructre", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2703", "employeeId": "1034", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2704", "employeeId": "1323", "startDate": "2022-08-29", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2706", "employeeId": "1103", "startDate": "2022-07-01", "rate": {"currency": "SEK", "value": "1032000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": "Marketing Restructure", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2707", "employeeId": "1324", "startDate": "2022-08-15", "rate": {"currency": "BRL", "value": "272400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2708", "employeeId": "1325", "startDate": "2022-09-19", "rate": {"currency": "USD", "value": "182000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2709", "employeeId": "1111", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2710", "employeeId": "620", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "158000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2711", "employeeId": "941", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "198000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2712", "employeeId": "715", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "127560.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2713", "employeeId": "691", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2714", "employeeId": "711", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583728}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2715", "employeeId": "818", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "188000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2716", "employeeId": "878", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "147750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base (to $143k)\nMerit (+3.3%)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2717", "employeeId": "903", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "212750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2718", "employeeId": "163", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "197000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2719", "employeeId": "1183", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2720", "employeeId": "1150", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2721", "employeeId": "705", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2722", "employeeId": "682", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "198000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2723", "employeeId": "1105", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "203550.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2724", "employeeId": "1043", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2725", "employeeId": "669", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "119500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base (to $115,500)\nMerit increase (+3.4%)", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2726", "employeeId": "797", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2727", "employeeId": "1162", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2728", "employeeId": "1119", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2729", "employeeId": "143", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "194900.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2730", "employeeId": "1145", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583729}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2731", "employeeId": "242", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2732", "employeeId": "806", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "126500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2733", "employeeId": "936", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "172500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2734", "employeeId": "801", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "181000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2735", "employeeId": "798", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2736", "employeeId": "205", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "104854.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2737", "employeeId": "952", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "216000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2738", "employeeId": "1025", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2739", "employeeId": "1050", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2740", "employeeId": "846", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "143750.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Comp restructure - moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2741", "employeeId": "1326", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2742", "employeeId": "1327", "startDate": "2022-08-29", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2743", "employeeId": "1328", "startDate": "2022-09-19", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2744", "employeeId": "1329", "startDate": "2022-09-06", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2745", "employeeId": "850", "startDate": "2022-09-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Contractor to Full Time", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2746", "employeeId": "1331", "startDate": "2022-09-12", "rate": {"currency": "BRL", "value": "412000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583730}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2747", "employeeId": "1333", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "576000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2748", "employeeId": "1140", "startDate": "2022-09-01", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Internal Transfer Eff. 9/1/22", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2749", "employeeId": "1334", "startDate": "2022-09-09", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2750", "employeeId": "1335", "startDate": "2022-09-12", "rate": {"currency": "USD", "value": "164000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2751", "employeeId": "1336", "startDate": "2022-09-09", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2753", "employeeId": "412", "startDate": "2022-11-14", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2754", "employeeId": "1338", "startDate": "2022-09-19", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2756", "employeeId": "1339", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "500004.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2757", "employeeId": "1340", "startDate": "2022-10-03", "rate": {"currency": "USD", "value": "208000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2758", "employeeId": "1341", "startDate": "2022-11-15", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2759", "employeeId": "1342", "startDate": "2022-09-26", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2760", "employeeId": "1343", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2761", "employeeId": "767", "startDate": "2022-10-01", "rate": {"currency": "SEK", "value": "504996.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2762", "employeeId": "1344", "startDate": "2022-10-10", "rate": {"currency": "SGD", "value": "264000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2764", "employeeId": "1345", "startDate": "2022-09-26", "rate": {"currency": "SEK", "value": "3500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2765", "employeeId": "706", "startDate": "2022-08-26", "rate": {"currency": "USD", "value": "112310.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": "$54.00/hour", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2766", "employeeId": "1346", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583731}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2767", "employeeId": "1067", "startDate": "2022-10-01", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2768", "employeeId": "1347", "startDate": "2022-10-17", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2769", "employeeId": "1348", "startDate": "2022-10-03", "rate": {"currency": "BRL", "value": "700000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2770", "employeeId": "1349", "startDate": "2022-12-19", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2771", "employeeId": "730", "startDate": "2022-09-26", "rate": {"currency": "USD", "value": "1050.00"}, "type": "Contract", "exempt": null, "reason": "Re-hire", "comment": "$150 per hour", "paidPer": "Week", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2772", "employeeId": "1350", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2773", "employeeId": "1351", "startDate": "2021-09-27", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2774", "employeeId": "858", "startDate": "2022-07-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2775", "employeeId": "1352", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2776", "employeeId": "1353", "startDate": "2022-10-10", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2777", "employeeId": "1354", "startDate": "2023-01-30", "rate": {"currency": "GBP", "value": "107000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2778", "employeeId": "1109", "startDate": "2022-07-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "Moving variable into base", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2779", "employeeId": "1355", "startDate": "2022-11-14", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2780", "employeeId": "928", "startDate": "2022-07-01", "rate": {"currency": "CNY", "value": "767000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": "+ 3% merit increase", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2781", "employeeId": "954", "startDate": "2022-07-01", "rate": {"currency": "INR", "value": "9398545.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2782", "employeeId": "1356", "startDate": "2022-09-05", "rate": {"currency": "USD", "value": "0.00"}, "type": "Commission", "exempt": "Exempt", "reason": "", "comment": "Contract for $80,000 from 9/1/2022-12/30/2022", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583732}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2783", "employeeId": "1357", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "50.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2784", "employeeId": "401", "startDate": "2022-10-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2785", "employeeId": "1358", "startDate": "2022-11-07", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2787", "employeeId": "1360", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2788", "employeeId": "1361", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72000"}, "type": "Salary", "exempt": "Non-exempt", "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2789", "employeeId": "157", "startDate": "2022-10-17", "rate": {"currency": "USD", "value": "135000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2790", "employeeId": "1362", "startDate": "2022-10-31", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2791", "employeeId": "1363", "startDate": "2022-10-31", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2792", "employeeId": "1364", "startDate": "2022-11-07", "rate": {"currency": "SEK", "value": "456000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2793", "employeeId": "1365", "startDate": "2022-12-01", "rate": {"currency": "GBP", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2794", "employeeId": "1366", "startDate": "2022-11-07", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2795", "employeeId": "1367", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2797", "employeeId": "1368", "startDate": "2022-11-28", "rate": {"currency": "USD", "value": "196000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2798", "employeeId": "1369", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2799", "employeeId": "671", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "1524000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2800", "employeeId": "366", "startDate": "2022-11-01", "rate": {"currency": "SEK", "value": "1320000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583733}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2801", "employeeId": "1371", "startDate": "2022-12-01", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2802", "employeeId": "979", "startDate": "2022-11-14", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2803", "employeeId": "1372", "startDate": "2022-12-12", "rate": {"currency": "AUD", "value": "204000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2804", "employeeId": "1373", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "265000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2805", "employeeId": "1374", "startDate": "2023-02-01", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2806", "employeeId": "1375", "startDate": "2022-11-21", "rate": {"currency": "USD", "value": "205000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2807", "employeeId": "1376", "startDate": "2023-01-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2809", "employeeId": "1378", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2810", "employeeId": "1379", "startDate": "2023-01-05", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Excluding 8% Holiday allowance of 10,560 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2812", "employeeId": "1381", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2813", "employeeId": "587", "startDate": "2022-12-01", "rate": {"currency": "CAD", "value": "196198.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2814", "employeeId": "1382", "startDate": "2023-01-05", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2815", "employeeId": "353", "startDate": "2022-12-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583734}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2816", "employeeId": "1383", "startDate": "2022-12-12", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2818", "employeeId": "1384", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2819", "employeeId": "1385", "startDate": "2023-02-06", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2821", "employeeId": "1387", "startDate": "2022-12-19", "rate": {"currency": "USD", "value": "95000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2822", "employeeId": "1389", "startDate": "2022-12-05", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2823", "employeeId": "1390", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2824", "employeeId": "1391", "startDate": "2023-02-06", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2825", "employeeId": "381", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "70000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Transferred from Sweden entity to German entity", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2827", "employeeId": "1392", "startDate": "2022-12-27", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2828", "employeeId": "1393", "startDate": "2023-01-03", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2829", "employeeId": "1394", "startDate": "2023-01-23", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2830", "employeeId": "1395", "startDate": "2023-01-11", "rate": {"currency": "AUD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2831", "employeeId": "1397", "startDate": "2023-02-09", "rate": {"currency": "AUD", "value": "191250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2833", "employeeId": "1398", "startDate": "2023-01-09", "rate": {"currency": "BRL", "value": "538000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $14,220.18/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2834", "employeeId": "135", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "192875"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583735}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2835", "employeeId": "1400", "startDate": "2023-01-16", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2836", "employeeId": "1239", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2837", "employeeId": "1068", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2838", "employeeId": "1401", "startDate": "2023-01-16", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2839", "employeeId": "1402", "startDate": "2023-01-17", "rate": {"currency": "USD", "value": "125000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2840", "employeeId": "1399", "startDate": "2023-02-21", "rate": {"currency": "USD", "value": "332000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2841", "employeeId": "1403", "startDate": "2023-01-23", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2842", "employeeId": "1241", "startDate": "2023-01-26", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2843", "employeeId": "291", "startDate": "2021-09-23", "rate": {"currency": "SEK", "value": "855000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 09/23/2021. Stays on the same salary level.\n\n80% salary = 684 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2844", "employeeId": "1405", "startDate": "2023-01-30", "rate": {"currency": "USD", "value": "30000.00"}, "type": "Salary", "exempt": null, "reason": "", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2845", "employeeId": "1404", "startDate": "2023-02-13", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2846", "employeeId": "1407", "startDate": "2023-02-13", "rate": {"currency": "USD", "value": "360000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2847", "employeeId": "1408", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2848", "employeeId": "1386", "startDate": "2023-03-01", "rate": {"currency": "GBP", "value": "155000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2849", "employeeId": "1409", "startDate": "2023-02-06", "rate": {"currency": "USD", "value": "26000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$26,000/month", "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583736}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2851", "employeeId": "1411", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2852", "employeeId": "1412", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "2200800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2853", "employeeId": "1413", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "2200800.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2854", "employeeId": "1414", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1630500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2855", "employeeId": "1415", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1304200.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2856", "employeeId": "1416", "startDate": "2023-02-20", "rate": {"currency": "INR", "value": "1960000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2857", "employeeId": "1419", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "110400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2858", "employeeId": "1420", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2859", "employeeId": "1421", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2860", "employeeId": "1422", "startDate": "2023-02-20", "rate": {"currency": "USD", "value": "158400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2861", "employeeId": "1207", "startDate": "2023-02-21", "rate": {"currency": "USD", "value": "87000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2862", "employeeId": "1406", "startDate": "2023-02-22", "rate": {"currency": "USD", "value": "215000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2864", "employeeId": "907", "startDate": "2023-06-19", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2865", "employeeId": "1165", "startDate": "2023-06-19", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2866", "employeeId": "1426", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2867", "employeeId": "1427", "startDate": "2023-06-16", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583737}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2868", "employeeId": "1424", "startDate": "2023-03-06", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2869", "employeeId": "1418", "startDate": "2023-03-07", "rate": {"currency": "GBP", "value": "144000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2870", "employeeId": "1008", "startDate": "2023-03-13", "rate": {"currency": "USD", "value": "161000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converting from contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2871", "employeeId": "1005", "startDate": "2023-03-13", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2872", "employeeId": "1430", "startDate": "2023-03-20", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2873", "employeeId": "1098", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "63000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2874", "employeeId": "771", "startDate": "2023-03-16", "rate": {"currency": "SGD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2875", "employeeId": "1295", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2876", "employeeId": "1445", "startDate": "2023-03-27", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2877", "employeeId": "1446", "startDate": "2023-03-27", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2880", "employeeId": "117", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "907200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2881", "employeeId": "786", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "478800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2886", "employeeId": "374", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "170400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2887", "employeeId": "1036", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "91520"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2888", "employeeId": "1037", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "263165"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2889", "employeeId": "1211", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "198000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583738}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2890", "employeeId": "977", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "226800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2891", "employeeId": "627", "startDate": "2023-01-01", "rate": {"currency": "AUD", "value": "257500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2892", "employeeId": "1090", "startDate": "2023-01-01", "rate": {"currency": "BRL", "value": "291200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2893", "employeeId": "1144", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "160500"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2894", "employeeId": "876", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "197631.2"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2895", "employeeId": "629", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "236375"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2896", "employeeId": "744", "startDate": "2023-01-01", "rate": {"currency": "CAD", "value": "148074.37"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2897", "employeeId": "1228", "startDate": "2023-01-01", "rate": {"currency": "CNY", "value": "825366.09"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2898", "employeeId": "269", "startDate": "2023-01-01", "rate": {"currency": "DKK", "value": "765600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Paid in DKK even though work location is Sweden.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2899", "employeeId": "357", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "171600.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Jan lives in Italy, contract is with company in Belgium.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2900", "employeeId": "1039", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "57000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2901", "employeeId": "316", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "72000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2902", "employeeId": "268", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "103200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2903", "employeeId": "726", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2904", "employeeId": "713", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "128750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2905", "employeeId": "822", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "185000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583739}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2906", "employeeId": "960", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "86400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2907", "employeeId": "932", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "142100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2908", "employeeId": "710", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "135600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2909", "employeeId": "278", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2910", "employeeId": "320", "startDate": "2023-04-01", "rate": {"currency": "EUR", "value": "158080.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "\u20ac76 EUR / hour (76 EUR x 2080 hours)", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2911", "employeeId": "800", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2912", "employeeId": "411", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "103000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2913", "employeeId": "262", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "200000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2914", "employeeId": "1213", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "96000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2915", "employeeId": "324", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "120000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2916", "employeeId": "327", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "93000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2917", "employeeId": "289", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "219000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2918", "employeeId": "1075", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2919", "employeeId": "1246", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "47500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2920", "employeeId": "339", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "128750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2921", "employeeId": "362", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "123000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583740}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2922", "employeeId": "326", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "77000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2923", "employeeId": "317", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2924", "employeeId": "980", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "170000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2925", "employeeId": "768", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "134000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2926", "employeeId": "1205", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "158620"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2927", "employeeId": "363", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "79000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": "Works 85% effective 12/01/2022. 85% salary = 67 150 EUR / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2928", "employeeId": "1062", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "135000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2929", "employeeId": "1042", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "47000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2930", "employeeId": "1113", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "50000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2931", "employeeId": "405", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2932", "employeeId": "354", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "130810"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2933", "employeeId": "729", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "87000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2934", "employeeId": "287", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "110127.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2935", "employeeId": "351", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2936", "employeeId": "352", "startDate": "2023-01-01", "rate": {"currency": "EUR", "value": "270000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2937", "employeeId": "994", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98880"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583741}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2938", "employeeId": "1227", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "86000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2939", "employeeId": "930", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "46620"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2940", "employeeId": "747", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2941", "employeeId": "1138", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "86700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2942", "employeeId": "1063", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2943", "employeeId": "295", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "170980"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2944", "employeeId": "1038", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2945", "employeeId": "961", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2946", "employeeId": "748", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2947", "employeeId": "395", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2948", "employeeId": "739", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "163500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2949", "employeeId": "712", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "122100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2950", "employeeId": "304", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80 % salary = 92 000 GBP / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2951", "employeeId": "1065", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "261000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2952", "employeeId": "1034", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "155000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2953", "employeeId": "856", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583742}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2954", "employeeId": "853", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "43680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2955", "employeeId": "830", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "90000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2956", "employeeId": "927", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "107700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2957", "employeeId": "1100", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "77000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2958", "employeeId": "796", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2959", "employeeId": "1328", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "140000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2960", "employeeId": "957", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2961", "employeeId": "898", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2962", "employeeId": "828", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "94000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2963", "employeeId": "766", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114857"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2964", "employeeId": "914", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2965", "employeeId": "858", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "200000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2966", "employeeId": "329", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "110250"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2967", "employeeId": "391", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92219"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2968", "employeeId": "341", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2969", "employeeId": "662", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583743}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2970", "employeeId": "648", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "128000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2971", "employeeId": "1273", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "85000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2972", "employeeId": "698", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "49350"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2973", "employeeId": "1130", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2974", "employeeId": "637", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96555"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2975", "employeeId": "385", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2976", "employeeId": "1051", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2977", "employeeId": "1251", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2978", "employeeId": "943", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "63600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2979", "employeeId": "1271", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2980", "employeeId": "347", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "125000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2981", "employeeId": "1032", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2982", "employeeId": "1199", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "91000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2983", "employeeId": "292", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "130500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2984", "employeeId": "1355", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "106500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583744}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2985", "employeeId": "894", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2986", "employeeId": "1089", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "119600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2987", "employeeId": "962", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2988", "employeeId": "1191", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2989", "employeeId": "1136", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36750"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2990", "employeeId": "1203", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2991", "employeeId": "647", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "123600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2992", "employeeId": "883", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "126200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2993", "employeeId": "942", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "67920"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2994", "employeeId": "1031", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "118000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2995", "employeeId": "383", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "75000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2996", "employeeId": "1299", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "114800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2997", "employeeId": "850", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "133500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2998", "employeeId": "370", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "59360"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "2999", "employeeId": "264", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "190000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3000", "employeeId": "668", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583745}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3001", "employeeId": "355", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3002", "employeeId": "679", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3003", "employeeId": "760", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "136000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3004", "employeeId": "1302", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3005", "employeeId": "389", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "91800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3006", "employeeId": "1322", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3007", "employeeId": "1127", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3008", "employeeId": "862", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3009", "employeeId": "1017", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "98000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3010", "employeeId": "852", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69784"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3011", "employeeId": "947", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "105000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3012", "employeeId": "312", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102875"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3013", "employeeId": "650", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3014", "employeeId": "986", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3015", "employeeId": "409", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3016", "employeeId": "979", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "160000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583746}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3017", "employeeId": "636", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96300"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3018", "employeeId": "1142", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "36400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3019", "employeeId": "331", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "122000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3020", "employeeId": "663", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3021", "employeeId": "921", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "139050"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3022", "employeeId": "923", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "42230"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3023", "employeeId": "752", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3024", "employeeId": "884", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "64800"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3025", "employeeId": "1234", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "180000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3026", "employeeId": "834", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "167000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3027", "employeeId": "340", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "69894.79"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3028", "employeeId": "653", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "195250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3029", "employeeId": "831", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "95000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3030", "employeeId": "736", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "127680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3031", "employeeId": "578", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "100000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3032", "employeeId": "866", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "74900"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583747}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3033", "employeeId": "328", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3034", "employeeId": "1201", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3035", "employeeId": "916", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3036", "employeeId": "332", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81120"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3037", "employeeId": "833", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "84500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3038", "employeeId": "299", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3039", "employeeId": "603", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3040", "employeeId": "925", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "43050"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3041", "employeeId": "926", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "175000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3042", "employeeId": "1095", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "180000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3043", "employeeId": "604", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "97250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3044", "employeeId": "1074", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "124200"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3045", "employeeId": "870", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "66950"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3046", "employeeId": "929", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "72100"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3047", "employeeId": "322", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "132000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583748}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3048", "employeeId": "1014", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "87500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3049", "employeeId": "608", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "154500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3050", "employeeId": "1321", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "51500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3051", "employeeId": "336", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "67500"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3052", "employeeId": "658", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "165000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3053", "employeeId": "1185", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "106000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3054", "employeeId": "872", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "88000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3055", "employeeId": "839", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "89000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3056", "employeeId": "1206", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3057", "employeeId": "1055", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "102000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3058", "employeeId": "958", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3059", "employeeId": "369", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3060", "employeeId": "400", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "96000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3061", "employeeId": "685", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "73500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3062", "employeeId": "912", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "109200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583749}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3063", "employeeId": "1323", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "40000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3064", "employeeId": "1096", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "76776"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3065", "employeeId": "413", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "99300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3066", "employeeId": "751", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "123600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3067", "employeeId": "1006", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "92000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3068", "employeeId": "992", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "112785"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3069", "employeeId": "758", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "104000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3070", "employeeId": "1004", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "150000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3071", "employeeId": "677", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "88000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3072", "employeeId": "576", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "117300"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3073", "employeeId": "1122", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "47700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3074", "employeeId": "837", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "81250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3075", "employeeId": "1012", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "113000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3076", "employeeId": "734", "startDate": "2023-01-01", "rate": {"currency": "GBP", "value": "128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3077", "employeeId": "1007", "startDate": "2023-01-01", "rate": {"currency": "IDR", "value": "1077911100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3078", "employeeId": "380", "startDate": "2023-01-01", "rate": {"currency": "ILS", "value": "579000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583750}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3079", "employeeId": "983", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3260841.1"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3080", "employeeId": "754", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3205885.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3081", "employeeId": "809", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3410618.4"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3082", "employeeId": "955", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3112621.05"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3083", "employeeId": "1076", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "2914751.06"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3084", "employeeId": "1000", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3823555"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3085", "employeeId": "821", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "7649250"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3086", "employeeId": "901", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3900000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3087", "employeeId": "867", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "5000000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3088", "employeeId": "1124", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3873057.5"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3089", "employeeId": "625", "startDate": "2023-01-01", "rate": {"currency": "INR", "value": "3572475"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3090", "employeeId": "982", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "602400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3091", "employeeId": "533", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3092", "employeeId": "813", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "804000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3093", "employeeId": "392", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "807240"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583751}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3094", "employeeId": "611", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3095", "employeeId": "359", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1284000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3096", "employeeId": "814", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "960000"}, "type": "Salary", "exempt": null, "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3097", "employeeId": "881", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "584400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3098", "employeeId": "944", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3099", "employeeId": "678", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "844560"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3100", "employeeId": "787", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3101", "employeeId": "403", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3102", "employeeId": "384", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "657700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3103", "employeeId": "343", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1712000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3104", "employeeId": "1194", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "469680"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3105", "employeeId": "933", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "782000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3106", "employeeId": "1364", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3107", "employeeId": "671", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1560000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3108", "employeeId": "646", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "674040"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3109", "employeeId": "293", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1308000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583752}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3110", "employeeId": "740", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "648000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3111", "employeeId": "893", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "576000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3112", "employeeId": "606", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1135000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3113", "employeeId": "1270", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3114", "employeeId": "396", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "627000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3115", "employeeId": "260", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1104000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3116", "employeeId": "802", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "888000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3117", "employeeId": "1252", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3118", "employeeId": "972", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "996000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3119", "employeeId": "418", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1333200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3120", "employeeId": "703", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "876000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3121", "employeeId": "569", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "759960"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3122", "employeeId": "891", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "588000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3123", "employeeId": "1035", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3124", "employeeId": "280", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1248000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3125", "employeeId": "799", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1308000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583753}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3126", "employeeId": "645", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "630000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "13 month pay schedule, $16,176.11/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3127", "employeeId": "1176", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1008000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3128", "employeeId": "408", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "550200"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3129", "employeeId": "659", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1130400"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3130", "employeeId": "335", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "912000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% effective 06/06/2022.\n80% salary = 729 600 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3131", "employeeId": "1129", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3132", "employeeId": "635", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "870000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3133", "employeeId": "735", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "648000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3134", "employeeId": "398", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "918000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3135", "employeeId": "812", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "654000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3136", "employeeId": "301", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "900000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3137", "employeeId": "847", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "732000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3138", "employeeId": "372", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1110000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3139", "employeeId": "1060", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3140", "employeeId": "116", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1500189"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583754}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3141", "employeeId": "365", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3142", "employeeId": "575", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3143", "employeeId": "421", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "840000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3144", "employeeId": "321", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "966000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3145", "employeeId": "1022", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "588000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3146", "employeeId": "1133", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "594000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3147", "employeeId": "386", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1421400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3148", "employeeId": "1268", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3149", "employeeId": "687", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "840000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3150", "employeeId": "602", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "870000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3151", "employeeId": "684", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "960960"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3152", "employeeId": "294", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1055700"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3153", "employeeId": "607", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1020000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3154", "employeeId": "368", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "882000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583755}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3155", "employeeId": "361", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "594000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3156", "employeeId": "574", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "633600"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3157", "employeeId": "1195", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3158", "employeeId": "1168", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3159", "employeeId": "281", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1152000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3160", "employeeId": "570", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "846000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3161", "employeeId": "803", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "684000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3162", "employeeId": "728", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "726000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3163", "employeeId": "375", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "862500"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3164", "employeeId": "869", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3165", "employeeId": "297", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1080000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3166", "employeeId": "410", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "792000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 50% effective 08/28/2023 until 10/20/2023. 50% salary = 396 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3167", "employeeId": "314", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "894000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3168", "employeeId": "318", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1710000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3169", "employeeId": "1298", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "738720"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3170", "employeeId": "973", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583756}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3171", "employeeId": "1061", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3172", "employeeId": "307", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "768000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 614 400 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3173", "employeeId": "310", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "720000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3174", "employeeId": "1232", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "613920"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3175", "employeeId": "1190", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "474000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3176", "employeeId": "674", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "834000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3177", "employeeId": "388", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "894000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3178", "employeeId": "291", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1080000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80%. 80% salary = 864 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3179", "employeeId": "836", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "696000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3180", "employeeId": "875", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "690000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3181", "employeeId": "785", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "800000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3182", "employeeId": "373", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "708000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3183", "employeeId": "882", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "600000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3184", "employeeId": "1155", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "480000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3185", "employeeId": "1231", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "549000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583757}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3186", "employeeId": "337", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "919800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3187", "employeeId": "546", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3188", "employeeId": "644", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "715800"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3189", "employeeId": "610", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "687900"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3190", "employeeId": "416", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1122000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3191", "employeeId": "311", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "750000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 80% 08/22/2022 until 08/22/2023.\n80% salary = 600 000 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3192", "employeeId": "319", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "469930"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3193", "employeeId": "723", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "442200"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3194", "employeeId": "1112", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "678000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3195", "employeeId": "909", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "869400.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Works 90% 08/22/2022 until 08/22/2023. 90% salary = 782 460 SEK / year", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3196", "employeeId": "298", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "932400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3197", "employeeId": "358", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "624000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3198", "employeeId": "707", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "780000"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3199", "employeeId": "890", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1248000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3200", "employeeId": "718", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "1128000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3201", "employeeId": "848", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "744000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583758}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3202", "employeeId": "302", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "858000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3203", "employeeId": "1128", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "504000"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3204", "employeeId": "1200", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "572400"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3205", "employeeId": "775", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "370000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3206", "employeeId": "827", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "220000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3207", "employeeId": "1149", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "217330"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3208", "employeeId": "795", "startDate": "2023-01-01", "rate": {"currency": "SGD", "value": "348000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3209", "employeeId": "639", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3210", "employeeId": "190", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3211", "employeeId": "255", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170544"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3212", "employeeId": "202", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "220480"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3213", "employeeId": "969", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "162000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3214", "employeeId": "243", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185317.6"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3215", "employeeId": "1111", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "206000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3216", "employeeId": "1033", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "105000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3217", "employeeId": "1193", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148625"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583759}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3218", "employeeId": "911", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "158000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3219", "employeeId": "755", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "156800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3220", "employeeId": "981", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "160000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3221", "employeeId": "968", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3222", "employeeId": "1245", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "257500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3223", "employeeId": "941", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "203940"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3224", "employeeId": "1181", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "72100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3225", "employeeId": "1173", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175950"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3226", "employeeId": "164", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "171735"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3227", "employeeId": "580", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "283500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3228", "employeeId": "974", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "68250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3229", "employeeId": "1044", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "341250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3230", "employeeId": "160", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3231", "employeeId": "124", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "240000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3232", "employeeId": "1156", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "132600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583760}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3233", "employeeId": "147", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "171392"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3234", "employeeId": "191", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3235", "employeeId": "233", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "188198.4"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3236", "employeeId": "1053", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "112200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3237", "employeeId": "221", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "217948"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3238", "employeeId": "1084", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "130000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3239", "employeeId": "592", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3240", "employeeId": "595", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "294000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3241", "employeeId": "170", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3242", "employeeId": "1172", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3243", "employeeId": "622", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "205000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3244", "employeeId": "711", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "197400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3245", "employeeId": "1085", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3246", "employeeId": "1016", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179740"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3247", "employeeId": "818", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "193640"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3248", "employeeId": "878", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155150"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583761}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3249", "employeeId": "727", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "164900"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3250", "employeeId": "1291", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3251", "employeeId": "189", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "205000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3252", "employeeId": "1009", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "295000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3253", "employeeId": "937", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163600"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3254", "employeeId": "126", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "170000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3255", "employeeId": "716", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "160500"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3256", "employeeId": "219", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "137500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3257", "employeeId": "583", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "186250"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3258", "employeeId": "664", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "183750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3259", "employeeId": "1102", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3260", "employeeId": "1116", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3261", "employeeId": "1269", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "152000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3262", "employeeId": "210", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "186225.48"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3263", "employeeId": "1066", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "167375"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583762}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3264", "employeeId": "1179", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3265", "employeeId": "1175", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "82000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3266", "employeeId": "791", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "70720"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3267", "employeeId": "985", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "174250"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3268", "employeeId": "688", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "154500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3269", "employeeId": "1015", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3270", "employeeId": "1114", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179350"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3271", "employeeId": "888", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "153000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3272", "employeeId": "619", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "249500"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3273", "employeeId": "630", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "165000"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": "0.00"}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3274", "employeeId": "141", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "196581.47"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3275", "employeeId": "773", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "73500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3276", "employeeId": "719", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3277", "employeeId": "997", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "252000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3278", "employeeId": "762", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "215000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3279", "employeeId": "184", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "220500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583763}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3280", "employeeId": "714", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "159900"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3281", "employeeId": "235", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "129483.75"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3282", "employeeId": "889", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "168000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3283", "employeeId": "195", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "180000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3284", "employeeId": "1184", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "158000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3285", "employeeId": "638", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "138500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3286", "employeeId": "1119", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "175100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3287", "employeeId": "143", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "200750"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3288", "employeeId": "1058", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3289", "employeeId": "772", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "116000"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3290", "employeeId": "228", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185850"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3291", "employeeId": "159", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "270000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3292", "employeeId": "1180", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3293", "employeeId": "774", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "71400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3294", "employeeId": "213", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "145000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3295", "employeeId": "618", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "162500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583764}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3296", "employeeId": "1318", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "155250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3297", "employeeId": "855", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3298", "employeeId": "843", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "104000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3299", "employeeId": "150", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "230000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3300", "employeeId": "194", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3301", "employeeId": "816", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "119000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3302", "employeeId": "1073", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "68250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3303", "employeeId": "171", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "329000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3304", "employeeId": "792", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "184000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3305", "employeeId": "940", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "13 month pay schedule, $16,781.92/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3306", "employeeId": "616", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139080"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3307", "employeeId": "806", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "132850"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3308", "employeeId": "938", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "163200"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583765}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3309", "employeeId": "1216", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "185400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3310", "employeeId": "801", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "190000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3311", "employeeId": "229", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "152603.85"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3312", "employeeId": "820", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195120"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3313", "employeeId": "798", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "157500"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3314", "employeeId": "1040", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "262650"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3315", "employeeId": "1109", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "133900.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": "13 month pay schedule, $21,245.39/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3316", "employeeId": "819", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "150800"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3317", "employeeId": "136", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "235000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3318", "employeeId": "172", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "261000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3319", "employeeId": "1086", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "412500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3320", "employeeId": "192", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "136800"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3321", "employeeId": "1107", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "166400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3322", "employeeId": "859", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "70720"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583766}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3323", "employeeId": "1056", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3324", "employeeId": "1057", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "352000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3325", "employeeId": "1311", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "146250"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3326", "employeeId": "153", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "172500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3327", "employeeId": "252", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "148522.5"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3328", "employeeId": "176", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "270000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3329", "employeeId": "963", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "179740"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3330", "employeeId": "1046", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "143000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3331", "employeeId": "794", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "107100"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3332", "employeeId": "1243", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "77500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3333", "employeeId": "206", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "325000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3334", "employeeId": "615", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "135108"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3335", "employeeId": "227", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "176748"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3336", "employeeId": "240", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "260000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3337", "employeeId": "1025", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "288400"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3338", "employeeId": "212", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "238500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583767}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3339", "employeeId": "590", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "136000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3340", "employeeId": "177", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "195000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3341", "employeeId": "633", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "137500"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3342", "employeeId": "253", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "225000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3343", "employeeId": "865", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "100000"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3344", "employeeId": "1050", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "139050"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3345", "employeeId": "114", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "266110"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3346", "employeeId": "846", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "150000"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3347", "employeeId": "217", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "183680.42"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3348", "employeeId": "146", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "192276.12"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3349", "employeeId": "1425", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "450000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3350", "employeeId": "998", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "72.80"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3351", "employeeId": "946", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "67.60"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3352", "employeeId": "1019", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "49.92"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3353", "employeeId": "804", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "22.88"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3354", "employeeId": "1444", "startDate": "2023-04-11", "rate": {"currency": "EUR", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583768}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3355", "employeeId": "1417", "startDate": "2023-05-02", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3356", "employeeId": "669", "startDate": "2023-04-03", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3357", "employeeId": "786", "startDate": "2023-05-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3358", "employeeId": "970", "startDate": "2023-03-01", "rate": {"currency": "USD", "value": "16.20"}, "type": "Hourly", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3359", "employeeId": "1449", "startDate": "2023-04-06", "rate": {"currency": "SGD", "value": "200000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "$16,666.67 / month", "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3360", "employeeId": "1451", "startDate": "2023-04-17", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3361", "employeeId": "1358", "startDate": "2023-04-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3362", "employeeId": "1448", "startDate": "2023-04-17", "rate": {"currency": "SGD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$15,000.00 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3363", "employeeId": "1357", "startDate": "2023-04-17", "rate": {"currency": "USD", "value": "110000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Contractor to FT", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3364", "employeeId": "1132", "startDate": "2023-05-30", "rate": {"currency": "USD", "value": "35.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3365", "employeeId": "1454", "startDate": "2023-04-04", "rate": {"currency": "USD", "value": "52.50"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3366", "employeeId": "1455", "startDate": "2023-04-04", "rate": {"currency": "USD", "value": "52.50"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3367", "employeeId": "1453", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3368", "employeeId": "1456", "startDate": "2023-04-24", "rate": {"currency": "GBP", "value": "2000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3369", "employeeId": "725", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3370", "employeeId": "1457", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583769}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3371", "employeeId": "1452", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "60.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3372", "employeeId": "1328", "startDate": "2023-05-01", "rate": {"currency": "GBP", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3373", "employeeId": "992", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "137000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": "Transfer from UK to USA", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3374", "employeeId": "1459", "startDate": "2023-05-03", "rate": {"currency": "USD", "value": "360.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3375", "employeeId": "1358", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3376", "employeeId": "1463", "startDate": "2023-05-29", "rate": {"currency": "GBP", "value": "225000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3377", "employeeId": "1465", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "10000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3378", "employeeId": "1461", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "30.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3379", "employeeId": "865", "startDate": "2023-05-01", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3380", "employeeId": "1460", "startDate": "2023-06-05", "rate": {"currency": "GBP", "value": "80000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3381", "employeeId": "1466", "startDate": "2023-05-29", "rate": {"currency": "USD", "value": "115.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3382", "employeeId": "1467", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3383", "employeeId": "718", "startDate": "2023-06-01", "rate": {"currency": "SEK", "value": "1250000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3384", "employeeId": "359", "startDate": "2023-06-01", "rate": {"currency": "SEK", "value": "1350000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3385", "employeeId": "1472", "startDate": "2023-06-07", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3386", "employeeId": "1248", "startDate": "2023-06-27", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583770}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3387", "employeeId": "1464", "startDate": "2023-08-21", "rate": {"currency": "SEK", "value": "648000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3388", "employeeId": "1473", "startDate": "2023-06-05", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3389", "employeeId": "580", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3390", "employeeId": "1474", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3391", "employeeId": "1476", "startDate": "2023-06-12", "rate": {"currency": "SEK", "value": "165.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3392", "employeeId": "1477", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3393", "employeeId": "1478", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3394", "employeeId": "1471", "startDate": "2023-06-26", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3395", "employeeId": "1480", "startDate": "2023-07-03", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3396", "employeeId": "1462", "startDate": "2023-07-17", "rate": {"currency": "GBP", "value": "143000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3397", "employeeId": "266", "startDate": "2021-03-07", "rate": {"currency": "EUR", "value": "175.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": "Subcontractor Fee", "paidPer": "Hour", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3398", "employeeId": "413", "startDate": "2023-06-01", "rate": {"currency": "GBP", "value": "109000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3399", "employeeId": "1496", "startDate": "2023-05-26", "rate": {"currency": "AUD", "value": "200.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3400", "employeeId": "1475", "startDate": "2023-06-05", "rate": {"currency": "USD", "value": "260000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3401", "employeeId": "1479", "startDate": "2023-09-04", "rate": {"currency": "SEK", "value": "432000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3402", "employeeId": "1210", "startDate": "2023-06-01", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Conversion to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3403", "employeeId": "1499", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583771}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3404", "employeeId": "1500", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3405", "employeeId": "1501", "startDate": "2023-05-17", "rate": {"currency": "BRL", "value": "10000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3406", "employeeId": "1502", "startDate": "2023-05-08", "rate": {"currency": "BRL", "value": "7000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3407", "employeeId": "1498", "startDate": "2023-06-14", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3408", "employeeId": "1504", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "105000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3409", "employeeId": "1505", "startDate": "2023-04-24", "rate": {"currency": "USD", "value": "75.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3410", "employeeId": "1512", "startDate": "2023-06-21", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3411", "employeeId": "1503", "startDate": "2023-06-19", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3412", "employeeId": "1507", "startDate": "2023-07-05", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3413", "employeeId": "1497", "startDate": "2023-06-26", "rate": {"currency": "USD", "value": "240000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3414", "employeeId": "1506", "startDate": "2023-06-20", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3415", "employeeId": "939", "startDate": "2023-07-01", "rate": {"currency": "AUD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Transfer", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3416", "employeeId": "590", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3417", "employeeId": "669", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": null, "reason": "Adjustment", "comment": "Transfer between departments", "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3418", "employeeId": "208", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "452400.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3419", "employeeId": "778", "startDate": "2023-01-01", "rate": {"currency": "USD", "value": "400000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583772}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3420", "employeeId": "1458", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3421", "employeeId": "800", "startDate": "2023-07-01", "rate": {"currency": "EUR", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3422", "employeeId": "336", "startDate": "2023-07-01", "rate": {"currency": "GBP", "value": "77500.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3423", "employeeId": "319", "startDate": "2023-07-01", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3424", "employeeId": "914", "startDate": "2023-07-01", "rate": {"currency": "GBP", "value": "108000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3425", "employeeId": "1518", "startDate": "2023-07-10", "rate": {"currency": "USD", "value": "115.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3426", "employeeId": "1515", "startDate": "2023-07-17", "rate": {"currency": "USD", "value": "75000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3427", "employeeId": "1222", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "235000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Job Evaluation", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3428", "employeeId": "711", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3429", "employeeId": "1245", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "275000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3430", "employeeId": "801", "startDate": "2023-07-01", "rate": {"currency": "USD", "value": "210000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3431", "employeeId": "1526", "startDate": "2023-07-24", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3432", "employeeId": "273", "startDate": "2023-01-01", "rate": {"currency": "DKK", "value": "1773691.92"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Confirmed pay is DKK even though work location is Sweden.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3433", "employeeId": "202", "startDate": "2023-08-01", "rate": {"currency": "USD", "value": "250000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3434", "employeeId": "1527", "startDate": "2023-07-31", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3435", "employeeId": "1529", "startDate": "2023-08-01", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583773}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3436", "employeeId": "1524", "startDate": "2023-07-31", "rate": {"currency": "USD", "value": "140000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3437", "employeeId": "1525", "startDate": "2023-07-31", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3438", "employeeId": "1521", "startDate": "2023-08-01", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3440", "employeeId": "1315", "startDate": "2023-08-07", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3441", "employeeId": "1522", "startDate": "2023-08-07", "rate": {"currency": "USD", "value": "285000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3442", "employeeId": "1539", "startDate": "2023-08-14", "rate": {"currency": "SEK", "value": "840000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3443", "employeeId": "1540", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3444", "employeeId": "1541", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3445", "employeeId": "1528", "startDate": "2023-08-28", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3446", "employeeId": "263", "startDate": "2023-01-01", "rate": {"currency": "SEK", "value": "3369665.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3447", "employeeId": "1543", "startDate": "2023-08-14", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3448", "employeeId": "1542", "startDate": "2023-08-09", "rate": {"currency": "SGD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "$12,500.00 / month", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3449", "employeeId": "959", "startDate": "2023-08-14", "rate": {"currency": "USD", "value": "138.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3450", "employeeId": "1457", "startDate": "2023-08-21", "rate": {"currency": "USD", "value": "87000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Conversion", "comment": "Converted to FTE", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3451", "employeeId": "1545", "startDate": "2023-09-04", "rate": {"currency": "BRL", "value": "525000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $13,876.57/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3452", "employeeId": "347", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583774}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3453", "employeeId": "1536", "startDate": "2023-08-21", "rate": {"currency": "USD", "value": "234000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3454", "employeeId": "1548", "startDate": "2023-08-28", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3455", "employeeId": "1546", "startDate": "2023-08-21", "rate": {"currency": "AUD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3456", "employeeId": "1535", "startDate": "2023-08-28", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3457", "employeeId": "1534", "startDate": "2023-08-28", "rate": {"currency": "IDR", "value": "97745156.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3458", "employeeId": "1287", "startDate": "2023-08-28", "rate": {"currency": "GBP", "value": "57500.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": "Intern to FTE conversion", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3459", "employeeId": "1550", "startDate": "2023-08-28", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3460", "employeeId": "706", "startDate": "2023-08-26", "rate": {"currency": "USD", "value": "116000.00"}, "type": "Salary", "exempt": "Non-exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3461", "employeeId": "328", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3462", "employeeId": "355", "startDate": "2023-09-01", "rate": {"currency": "GBP", "value": "140000.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3463", "employeeId": "1554", "startDate": "2023-09-01", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3464", "employeeId": "1514", "startDate": "2023-10-02", "rate": {"currency": "EUR", "value": "170000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3465", "employeeId": "1552", "startDate": "2023-09-25", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3466", "employeeId": "1551", "startDate": "2023-09-11", "rate": {"currency": "USD", "value": "270000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3467", "employeeId": "1556", "startDate": "2023-09-18", "rate": {"currency": "BRL", "value": "490000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": "13 month pay schedule, $12,951.46/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583775}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3468", "employeeId": "1553", "startDate": "2023-10-02", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3469", "employeeId": "364", "startDate": "2023-09-01", "rate": {"currency": "USD", "value": "300.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3470", "employeeId": "1385", "startDate": "2023-10-01", "rate": {"currency": "SGD", "value": "19583.34"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3471", "employeeId": "1557", "startDate": "2023-11-13", "rate": {"currency": "GBP", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3472", "employeeId": "1558", "startDate": "2023-10-16", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3473", "employeeId": "1559", "startDate": "2023-11-15", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3474", "employeeId": "1560", "startDate": "2023-09-25", "rate": {"currency": "USD", "value": "247500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3475", "employeeId": "1561", "startDate": "2023-11-01", "rate": {"currency": "EUR", "value": "132000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "This amount is excluding 8% Holiday allowance of 10,560 EUR paid in May.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3476", "employeeId": "1562", "startDate": "2023-10-09", "rate": {"currency": "GBP", "value": "98000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3477", "employeeId": "774", "startDate": "2023-09-18", "rate": {"currency": "USD", "value": "78000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3478", "employeeId": "1563", "startDate": "2024-01-02", "rate": {"currency": "SEK", "value": "744000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3479", "employeeId": "1564", "startDate": "2023-10-02", "rate": {"currency": "USD", "value": "80.00"}, "type": "Hourly", "exempt": "Non-exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3480", "employeeId": "1565", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3481", "employeeId": "1566", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3482", "employeeId": "1569", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "150000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583776}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3483", "employeeId": "1568", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "80000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3484", "employeeId": "1567", "startDate": "2023-10-16", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3485", "employeeId": "1555", "startDate": "2023-10-09", "rate": {"currency": "INR", "value": "4532000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3486", "employeeId": "1575", "startDate": "2023-10-16", "rate": {"currency": "SGD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3487", "employeeId": "1576", "startDate": "2023-10-30", "rate": {"currency": "GBP", "value": "65000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3488", "employeeId": "1578", "startDate": "2023-11-06", "rate": {"currency": "MYR", "value": "576000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3489", "employeeId": "1580", "startDate": "2023-10-30", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3490", "employeeId": "1577", "startDate": "2023-10-23", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3491", "employeeId": "1582", "startDate": "2024-02-01", "rate": {"currency": "SEK", "value": "636000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3492", "employeeId": "1583", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3493", "employeeId": "1586", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "420.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3494", "employeeId": "1587", "startDate": "2023-12-04", "rate": {"currency": "GBP", "value": "67000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3495", "employeeId": "1588", "startDate": "2023-11-06", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3496", "employeeId": "1589", "startDate": "2023-12-04", "rate": {"currency": "EUR", "value": "123000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3497", "employeeId": "1590", "startDate": "2023-11-15", "rate": {"currency": "USD", "value": "120.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3498", "employeeId": "1593", "startDate": "2023-10-30", "rate": {"currency": "USD", "value": "420.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Day", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583777}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3499", "employeeId": "177", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "220000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3500", "employeeId": "114", "startDate": "2023-11-01", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3501", "employeeId": "1356", "startDate": "2023-10-23", "rate": {"currency": "USD", "value": ""}, "type": "Commission", "exempt": "Exempt", "reason": "", "comment": "$45,000 for services performed from 10/23/2023 - 12/22/2023", "paidPer": null, "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3502", "employeeId": "261", "startDate": "2023-10-01", "rate": {"currency": "GBP", "value": "205000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3503", "employeeId": "1592", "startDate": "2023-11-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3504", "employeeId": "1591", "startDate": "2023-11-13", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3506", "employeeId": "1585", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "315000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3507", "employeeId": "1584", "startDate": "2023-11-27", "rate": {"currency": "INR", "value": "8000000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3508", "employeeId": "1579", "startDate": "2024-01-02", "rate": {"currency": "MYR", "value": "221875.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3509", "employeeId": "1295", "startDate": "2023-11-16", "rate": {"currency": "USD", "value": "184000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3510", "employeeId": "1597", "startDate": "2024-01-15", "rate": {"currency": "EUR", "value": "91000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "The Employee shall be entitled to a holiday allowance, equalling 8% of the Base Salary, while the statutory deductions shall be withheld, payable in the month of May of each calendar year.", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3511", "employeeId": "707", "startDate": "2023-12-01", "rate": {"currency": "SEK", "value": "900000.00"}, "type": "Salary", "exempt": null, "reason": "Merit", "comment": "Salary Increase Request - Thomas Wiss", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3512", "employeeId": "1600", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "225000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3513", "employeeId": "1601", "startDate": "2024-01-15", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583778}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3514", "employeeId": "1605", "startDate": "2024-01-15", "rate": {"currency": "SGD", "value": "6250.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3515", "employeeId": "1595", "startDate": "2023-11-20", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3516", "employeeId": "1602", "startDate": "2023-11-20", "rate": {"currency": "USD", "value": "100000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3517", "employeeId": "1606", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "252500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3518", "employeeId": "1607", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "310000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3519", "employeeId": "1608", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "180000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3520", "employeeId": "1609", "startDate": "2024-01-03", "rate": {"currency": "SEK", "value": "720000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3521", "employeeId": "1610", "startDate": "2023-11-27", "rate": {"currency": "USD", "value": "116000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3522", "employeeId": "1612", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3523", "employeeId": "1613", "startDate": "2024-01-02", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3524", "employeeId": "1614", "startDate": "2023-12-13", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3525", "employeeId": "1615", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "65000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3526", "employeeId": "1616", "startDate": "2023-12-04", "rate": {"currency": "USD", "value": "28.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3527", "employeeId": "1618", "startDate": "2023-12-04", "rate": {"currency": "GBP", "value": "72000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3528", "employeeId": "1619", "startDate": "2023-11-29", "rate": {"currency": "USD", "value": "85.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583779}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3529", "employeeId": "1620", "startDate": "2024-01-15", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3530", "employeeId": "1621", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3531", "employeeId": "1622", "startDate": "2024-03-07", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3532", "employeeId": "669", "startDate": "2023-11-22", "rate": {"currency": "USD", "value": "100.00"}, "type": "Hourly", "exempt": null, "reason": "", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3533", "employeeId": "968", "startDate": "2023-10-01", "rate": {"currency": "USD", "value": "75100.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3534", "employeeId": "1090", "startDate": "2023-10-01", "rate": {"currency": "BRL", "value": "305915.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Promotion", "comment": "13 month pay schedule, 23,531.92 BRL/monthly", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3535", "employeeId": "1617", "startDate": "2023-12-11", "rate": {"currency": "AUD", "value": "196000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3536", "employeeId": "1624", "startDate": "2023-12-06", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3537", "employeeId": "1628", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3538", "employeeId": "1626", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3539", "employeeId": "1625", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3540", "employeeId": "1627", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "190000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3541", "employeeId": "1623", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "70000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3542", "employeeId": "1630", "startDate": "2024-01-02", "rate": {"currency": "GBP", "value": "120000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3543", "employeeId": "1385", "startDate": "2023-11-24", "rate": {"currency": "SGD", "value": "268500.00"}, "type": "Salary", "exempt": null, "reason": "Promotion", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583780}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3544", "employeeId": "1631", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3545", "employeeId": "1632", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3546", "employeeId": "1633", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3547", "employeeId": "1634", "startDate": "2024-01-22", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3548", "employeeId": "1635", "startDate": "2024-03-18", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3549", "employeeId": "1636", "startDate": "2024-03-18", "rate": {"currency": "SEK", "value": "5000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3550", "employeeId": "1629", "startDate": "2023-12-18", "rate": {"currency": "USD", "value": "300000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3551", "employeeId": "1637", "startDate": "2023-12-18", "rate": {"currency": "BRL", "value": "728000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3552", "employeeId": "1639", "startDate": "2024-01-15", "rate": {"currency": "BRL", "value": "819000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3553", "employeeId": "1639", "startDate": "2024-01-15", "rate": {"currency": "BRL", "value": "819000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3554", "employeeId": "1640", "startDate": "2024-01-02", "rate": {"currency": "SGD", "value": "160000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3555", "employeeId": "1641", "startDate": "2024-01-02", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3556", "employeeId": "1642", "startDate": "2023-12-14", "rate": {"currency": "USD", "value": "300.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3557", "employeeId": "1644", "startDate": "2024-01-15", "rate": {"currency": "GBP", "value": "73000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3558", "employeeId": "1646", "startDate": "2024-01-29", "rate": {"currency": "GBP", "value": "130000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3559", "employeeId": "1648", "startDate": "2024-01-16", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583781}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3560", "employeeId": "1649", "startDate": "2024-01-22", "rate": {"currency": "USD", "value": "28.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3561", "employeeId": "1650", "startDate": "2024-01-16", "rate": {"currency": "USD", "value": "247500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3562", "employeeId": "1643", "startDate": "2024-01-08", "rate": {"currency": "USD", "value": "332500.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3563", "employeeId": "1651", "startDate": "2024-06-03", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3564", "employeeId": "1652", "startDate": "2024-06-03", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3565", "employeeId": "1426", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3566", "employeeId": "1477", "startDate": "2024-03-05", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Intern to Full-Time", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3567", "employeeId": "1645", "startDate": "2024-01-22", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3568", "employeeId": "1638", "startDate": "2024-01-15", "rate": {"currency": "AUD", "value": "425000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3569", "employeeId": "739", "startDate": "2024-02-12", "rate": {"currency": "GBP", "value": "190000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3570", "employeeId": "1647", "startDate": "2024-02-12", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3571", "employeeId": "1653", "startDate": "2024-03-11", "rate": {"currency": "EUR", "value": "127500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3572", "employeeId": "748", "startDate": "2024-02-01", "rate": {"currency": "GBP", "value": "104000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3574", "employeeId": "1540", "startDate": "2024-02-05", "rate": {"currency": "SEK", "value": "504000.00"}, "type": "Salary", "exempt": null, "reason": "Intern to Full-Time", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3575", "employeeId": "1028", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "643885.45"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month salary schedule, BRL 49,529.95 p/m", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583782}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3576", "employeeId": "1109", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "819864.76"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 63,066.52/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3578", "employeeId": "1348", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "732060.03"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 56,312.31/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3579", "employeeId": "1398", "startDate": "2023-09-01", "rate": {"currency": "BRL", "value": "555915.49"}, "type": "Salary", "exempt": "Exempt", "reason": "Adjustment", "comment": "13 month pay schedule, BRL 42,762.73/monthly", "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3581", "employeeId": "771", "startDate": "2024-01-01", "rate": {"currency": "SGD", "value": "192000.00"}, "type": "Salary", "exempt": null, "reason": "Comp Adjustment", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3582", "employeeId": "1654", "startDate": "2024-01-29", "rate": {"currency": "USD", "value": "242250.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3583", "employeeId": "1655", "startDate": "2024-02-01", "rate": {"currency": "AUD", "value": "320000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3584", "employeeId": "1656", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "185000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3585", "employeeId": "159", "startDate": "2024-01-01", "rate": {"currency": "USD", "value": "280000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3586", "employeeId": "1658", "startDate": "2024-02-19", "rate": {"currency": "SEK", "value": "540000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3587", "employeeId": "1657", "startDate": "2024-02-05", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3588", "employeeId": "1659", "startDate": "2024-02-12", "rate": {"currency": "USD", "value": "24.00"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3589", "employeeId": "1660", "startDate": "2024-02-19", "rate": {"currency": "CAD", "value": "180000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Bi-weekly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3590", "employeeId": "1661", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "127500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3591", "employeeId": "1662", "startDate": "2024-04-01", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3592", "employeeId": "1666", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3593", "employeeId": "1667", "startDate": "2024-03-04", "rate": {"currency": "SGD", "value": "17917.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583783}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3594", "employeeId": "1668", "startDate": "2024-03-18", "rate": {"currency": "SGD", "value": "6500.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Month", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3595", "employeeId": "1665", "startDate": "2024-03-18", "rate": {"currency": "EUR", "value": "123000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3596", "employeeId": "1669", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3597", "employeeId": "1670", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "156000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3598", "employeeId": "1671", "startDate": "2024-03-04", "rate": {"currency": "USD", "value": "160000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3599", "employeeId": "1664", "startDate": "2024-02-19", "rate": {"currency": "USD", "value": "213625.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3600", "employeeId": "1672", "startDate": "2024-03-05", "rate": {"currency": "AUD", "value": "89000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3601", "employeeId": "1673", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "200000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3602", "employeeId": "1674", "startDate": "2024-03-04", "rate": {"currency": "BRL", "value": "598000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": "Split into 13 monthly installments", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3603", "employeeId": "1675", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "350000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3604", "employeeId": "1677", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3606", "employeeId": "575", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "93000.00"}, "type": "Salary", "exempt": null, "reason": "Transfer", "comment": "Moving from Sweden to Germany", "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3607", "employeeId": "1676", "startDate": "2024-05-06", "rate": {"currency": "GBP", "value": "110000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3608", "employeeId": "1680", "startDate": "2024-04-12", "rate": {"currency": "GBP", "value": "55000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3609", "employeeId": "1682", "startDate": "2024-02-26", "rate": {"currency": "USD", "value": "120000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3610", "employeeId": "1683", "startDate": "2024-04-01", "rate": {"currency": "EUR", "value": "125000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583784}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3611", "employeeId": "1684", "startDate": "2024-02-26", "rate": {"currency": "EUR", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3612", "employeeId": "1681", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "175000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3613", "employeeId": "1686", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "74000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3614", "employeeId": "1687", "startDate": "2024-06-03", "rate": {"currency": "GBP", "value": "115000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3615", "employeeId": "1685", "startDate": "2024-03-04", "rate": {"currency": "AUD", "value": "225000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3617", "employeeId": "1689", "startDate": "2024-04-08", "rate": {"currency": "AUD", "value": "256000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3618", "employeeId": "1691", "startDate": "2024-03-01", "rate": {"currency": "SEK", "value": "684000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3619", "employeeId": "1692", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "175000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3620", "employeeId": "671", "startDate": "2024-05-05", "rate": {"currency": "SEK", "value": "1680000.00"}, "type": "Salary", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3621", "employeeId": "1694", "startDate": "2024-05-28", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3622", "employeeId": "1696", "startDate": "2024-04-08", "rate": {"currency": "GBP", "value": "102000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3623", "employeeId": "1102", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583785}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3624", "employeeId": "1697", "startDate": "2024-03-01", "rate": {"currency": "USD", "value": "20.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3625", "employeeId": "1099", "startDate": "2024-03-01", "rate": {"currency": "USD", "value": "145000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "Transfer", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3626", "employeeId": "1698", "startDate": "2024-03-18", "rate": {"currency": "USD", "value": "130000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3627", "employeeId": "1699", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "330000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3628", "employeeId": "1700", "startDate": "2024-03-11", "rate": {"currency": "USD", "value": "93.75"}, "type": "Hourly", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3629", "employeeId": "1701", "startDate": "2024-04-22", "rate": {"currency": "SEK", "value": "660000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3630", "employeeId": "1702", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3631", "employeeId": "1474", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "Re-hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3632", "employeeId": "1703", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3633", "employeeId": "1704", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3634", "employeeId": "1705", "startDate": "2024-05-20", "rate": {"currency": "GBP", "value": "68000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3635", "employeeId": "1706", "startDate": "2024-05-13", "rate": {"currency": "GBP", "value": "100000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3636", "employeeId": "1707", "startDate": "2024-03-25", "rate": {"currency": "USD", "value": "85000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3637", "employeeId": "1708", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3638", "employeeId": "1709", "startDate": "2024-04-01", "rate": {"currency": "USD", "value": "165000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583786}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3639", "employeeId": "1710", "startDate": "2024-03-12", "rate": {"currency": "USD", "value": "170000.00"}, "type": "Salary", "exempt": "Exempt", "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Semi-monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3641", "employeeId": "1711", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "85000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3642", "employeeId": "1712", "startDate": "2024-06-24", "rate": {"currency": "GBP", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3643", "employeeId": "1720", "startDate": "2024-06-17", "rate": {"currency": "EUR", "value": "105000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3644", "employeeId": "1721", "startDate": "2024-04-02", "rate": {"currency": "GBP", "value": "35000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3645", "employeeId": "1722", "startDate": "2024-05-07", "rate": {"currency": "GBP", "value": "90000.00"}, "type": "Salary", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Year", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": "3646", "employeeId": "1723", "startDate": "2024-06-10", "rate": {"currency": "SEK", "value": "180.00"}, "type": "Hourly", "exempt": null, "reason": "New Hire", "comment": null, "paidPer": "Hour", "paySchedule": "Monthly", "overtimeRate": {"currency": "USD", "value": ""}, "knoetic_table_name": "compensation"}, "emitted_at": 1710872583787}} -{"type": "LOG", "log": {"level": "WARN", "message": "Stream `tables_stream`. An error occurred, details: 404 Client Error: Not found for url: https://api.bamboohr.com/api/gateway.php/neo4j/v1/employees/all/tables/benefit_class. Skipping for now."}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"knoetic_table_name": "benefit_class"}, "emitted_at": 1710872584803}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8150, "employeeId": 114, "customDate": "2022-12-22", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1675, "employeeId": 117, "customDate": "2020-04-01", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "BambooHR Release Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4685, "employeeId": 124, "customDate": "2022-03-15", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586924}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8149, "employeeId": 124, "customDate": "2022-12-22", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 360, "employeeId": 131, "customDate": "2019-11-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 361, "employeeId": 131, "customDate": "2019-12-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 392, "employeeId": 131, "customDate": "2020-01-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586925}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1566, "employeeId": 131, "customDate": "2020-02-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1717, "employeeId": 131, "customDate": "2020-04-30", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "$500 February & $500 March bonus (04/30/2020 paydate)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1898, "employeeId": 131, "customDate": "2020-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "$500 April bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3237, "employeeId": 131, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586926}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3286, "employeeId": 131, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3356, "employeeId": 131, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3497, "employeeId": 131, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3804, "employeeId": 131, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586927}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3923, "employeeId": 131, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4066, "employeeId": 131, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4181, "employeeId": 131, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4726, "employeeId": 131, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586928}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5013, "employeeId": 141, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11235, "employeeId": 141, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5538, "employeeId": 146, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q1 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586929}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4215, "employeeId": 147, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586930}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5521, "employeeId": 147, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5523, "employeeId": 147, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5908, "employeeId": 147, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8289, "employeeId": 147, "customDate": "2023-02-06", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586931}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8362, "employeeId": 147, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9229, "employeeId": 147, "customDate": "2023-05-03", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11571, "employeeId": 147, "customDate": "2023-12-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2865, "employeeId": 162, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2870, "employeeId": 163, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586932}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4214, "employeeId": 164, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5077, "employeeId": 164, "customDate": "2022-03-16", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5086, "employeeId": 164, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5517, "employeeId": 164, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586933}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5527, "employeeId": 164, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5869, "employeeId": 164, "customDate": "2022-10-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8286, "employeeId": 164, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9130, "employeeId": 164, "customDate": "2023-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586934}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10217, "employeeId": 164, "customDate": "2023-06-28", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10422, "employeeId": 164, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11096, "employeeId": 164, "customDate": "2023-10-02", "customAmount": "375.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11266, "employeeId": 164, "customDate": "2023-11-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11570, "employeeId": 164, "customDate": "2023-12-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15924, "employeeId": 164, "customDate": "2024-01-03", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16845, "employeeId": 164, "customDate": "2024-02-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17253, "employeeId": 164, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586935}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2871, "employeeId": 165, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3303, "employeeId": 165, "customDate": "2021-08-10", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9187, "employeeId": 172, "customDate": "2023-04-28", "customAmount": "20000.00 USD", "customBonusReason": "retention", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3372, "employeeId": 177, "customDate": "2021-09-08", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Nodes 2021 - related to customer engagement (Meretidh)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5026, "employeeId": 177, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3046, "employeeId": 178, "customDate": "2021-05-07", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on the implementation of Tipalti!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3373, "employeeId": 179, "customDate": "2021-09-08", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Nodes 2021 - related to customer engagement (Todo1)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5025, "employeeId": 180, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11200, "employeeId": 184, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11201, "employeeId": 184, "customDate": "2024-01-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11243, "employeeId": 184, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5015, "employeeId": 185, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5021, "employeeId": 189, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8148, "employeeId": 191, "customDate": "2022-12-22", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10455, "employeeId": 191, "customDate": "2023-08-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4216, "employeeId": 194, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5034, "employeeId": 195, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11233, "employeeId": 195, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586936}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5024, "employeeId": 198, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11244, "employeeId": 198, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4217, "employeeId": 202, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8251, "employeeId": 221, "customDate": "2023-02-01", "customAmount": "2500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q3'22 Professional Services Booking Consistency Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4219, "employeeId": 229, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9202, "employeeId": 229, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5317, "employeeId": 240, "customDate": "2022-07-01", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2881, "employeeId": 242, "customDate": "2021-03-01", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1938, "employeeId": 245, "customDate": "2020-06-30", "customAmount": "5000.00 USD", "customBonusReason": "Sign On", "customComment": "part of conversion offer", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4220, "employeeId": 247, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2867, "employeeId": 251, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4218, "employeeId": 252, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5079, "employeeId": 252, "customDate": "2022-03-16", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5089, "employeeId": 252, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5520, "employeeId": 252, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5524, "employeeId": 252, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5767, "employeeId": 252, "customDate": "2022-08-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586937}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5870, "employeeId": 252, "customDate": "2022-10-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6810, "employeeId": 252, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Oct on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7701, "employeeId": 252, "customDate": "2022-12-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8178, "employeeId": 252, "customDate": "2023-01-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8287, "employeeId": 252, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8363, "employeeId": 252, "customDate": "2023-03-03", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9131, "employeeId": 252, "customDate": "2023-04-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9203, "employeeId": 252, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10142, "employeeId": 252, "customDate": "2023-06-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10218, "employeeId": 252, "customDate": "2023-06-28", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10425, "employeeId": 252, "customDate": "2023-08-07", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10543, "employeeId": 252, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11093, "employeeId": 252, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11269, "employeeId": 252, "customDate": "2023-11-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11574, "employeeId": 252, "customDate": "2023-12-05", "customAmount": "875.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15923, "employeeId": 252, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16846, "employeeId": 252, "customDate": "2024-02-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17255, "employeeId": 252, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5316, "employeeId": 253, "customDate": "2022-07-01", "customAmount": "15000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586938}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9206, "employeeId": 253, "customDate": "2023-04-24", "customAmount": "2500.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16049, "employeeId": 253, "customDate": "2023-12-31", "customAmount": "10000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2868, "employeeId": 256, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10513, "employeeId": 262, "customDate": "2023-09-01", "customAmount": "10000.00 EUR", "customBonusReason": "Spot Bonus", "customComment": "For new role", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1534, "employeeId": 270, "customDate": "2019-11-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES2019 Event", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 375, "employeeId": 271, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 376, "employeeId": 271, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 398, "employeeId": 271, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1590, "employeeId": 271, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1655, "employeeId": 271, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1699, "employeeId": 271, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1732, "employeeId": 271, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1912, "employeeId": 271, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1951, "employeeId": 271, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1986, "employeeId": 271, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2425, "employeeId": 271, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2526, "employeeId": 271, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2549, "employeeId": 271, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586939}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2612, "employeeId": 271, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2676, "employeeId": 271, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2840, "employeeId": 271, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2905, "employeeId": 271, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2961, "employeeId": 271, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3004, "employeeId": 274, "customDate": "2021-05-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2872, "employeeId": 278, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4613, "employeeId": 278, "customDate": "2022-03-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8201, "employeeId": 278, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "NODES effort 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2670, "employeeId": 283, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2834, "employeeId": 283, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2900, "employeeId": 283, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2956, "employeeId": 283, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3022, "employeeId": 283, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3088, "employeeId": 283, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3236, "employeeId": 283, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3285, "employeeId": 283, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3355, "employeeId": 283, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586940}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3496, "employeeId": 283, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3803, "employeeId": 283, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3922, "employeeId": 283, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4065, "employeeId": 283, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4180, "employeeId": 283, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4725, "employeeId": 283, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2807, "employeeId": 290, "customDate": "2021-02-25", "customAmount": "2000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 2x1000 USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 388, "employeeId": 292, "customDate": "2018-10-01", "customAmount": "13000.00 GBP", "customBonusReason": "Performance", "customComment": "SPIFF for the Aviva signature.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2873, "employeeId": 296, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2809, "employeeId": 300, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1561, "employeeId": 306, "customDate": "2017-01-01", "customAmount": "15000.00 GBP", "customBonusReason": "Spot Bonus", "customComment": "One time sign on bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 397, "employeeId": 311, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1217, "employeeId": 311, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1218, "employeeId": 311, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1589, "employeeId": 311, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1654, "employeeId": 311, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1698, "employeeId": 311, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1731, "employeeId": 311, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1910, "employeeId": 311, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586941}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1950, "employeeId": 311, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1985, "employeeId": 311, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2424, "employeeId": 311, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2525, "employeeId": 311, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2548, "employeeId": 311, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2611, "employeeId": 311, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2665, "employeeId": 311, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2829, "employeeId": 311, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2895, "employeeId": 311, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2951, "employeeId": 311, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3017, "employeeId": 311, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3083, "employeeId": 311, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3232, "employeeId": 311, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3281, "employeeId": 311, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8386, "employeeId": 318, "customDate": "2023-03-25", "customAmount": "150000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus for UK Tax Credit Project", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 393, "employeeId": 330, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 402, "employeeId": 330, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 403, "employeeId": 330, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586942}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1594, "employeeId": 330, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1659, "employeeId": 330, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1703, "employeeId": 330, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1736, "employeeId": 330, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1916, "employeeId": 330, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1955, "employeeId": 330, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1990, "employeeId": 330, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2429, "employeeId": 330, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2530, "employeeId": 330, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2553, "employeeId": 330, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2616, "employeeId": 330, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2674, "employeeId": 330, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2838, "employeeId": 330, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2903, "employeeId": 330, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2959, "employeeId": 330, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3025, "employeeId": 330, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3091, "employeeId": 330, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3242, "employeeId": 330, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586943}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3289, "employeeId": 330, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3360, "employeeId": 330, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3502, "employeeId": 330, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3810, "employeeId": 330, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3928, "employeeId": 330, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4073, "employeeId": 330, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4188, "employeeId": 330, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4731, "employeeId": 330, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4918, "employeeId": 330, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5110, "employeeId": 330, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5247, "employeeId": 330, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5430, "employeeId": 330, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5607, "employeeId": 330, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5753, "employeeId": 330, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5886, "employeeId": 330, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6800, "employeeId": 330, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7690, "employeeId": 330, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8220, "employeeId": 330, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8267, "employeeId": 330, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586944}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 399, "employeeId": 331, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1158, "employeeId": 331, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1159, "employeeId": 331, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1591, "employeeId": 331, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1656, "employeeId": 331, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1700, "employeeId": 331, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1733, "employeeId": 331, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1913, "employeeId": 331, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1952, "employeeId": 331, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1987, "employeeId": 331, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2426, "employeeId": 331, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2527, "employeeId": 331, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2550, "employeeId": 331, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2613, "employeeId": 331, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2671, "employeeId": 331, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2756, "employeeId": 331, "customDate": "2021-02-25", "customAmount": "2000.00 USD", "customBonusReason": "Performance", "customComment": "", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2835, "employeeId": 331, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 486, "employeeId": 333, "customDate": "2019-12-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES2019 Event Bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2677, "employeeId": 334, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2841, "employeeId": 334, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586945}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2906, "employeeId": 334, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2962, "employeeId": 334, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3027, "employeeId": 334, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3093, "employeeId": 334, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3244, "employeeId": 334, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3291, "employeeId": 334, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3362, "employeeId": 334, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3504, "employeeId": 334, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3812, "employeeId": 334, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3930, "employeeId": 334, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4075, "employeeId": 334, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4190, "employeeId": 334, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4733, "employeeId": 334, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4920, "employeeId": 334, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5112, "employeeId": 334, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5249, "employeeId": 334, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5432, "employeeId": 334, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3005, "employeeId": 336, "customDate": "2021-05-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586946}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4717, "employeeId": 340, "customDate": "2022-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4947, "employeeId": 340, "customDate": "2022-04-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation March 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5127, "employeeId": 340, "customDate": "2022-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5300, "employeeId": 340, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5447, "employeeId": 340, "customDate": "2022-07-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5582, "employeeId": 340, "customDate": "2022-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5893, "employeeId": 340, "customDate": "2022-10-25", "customAmount": "3000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6816, "employeeId": 340, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8159, "employeeId": 340, "customDate": "2023-01-25", "customAmount": "2625.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8162, "employeeId": 340, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8276, "employeeId": 340, "customDate": "2023-02-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8369, "employeeId": 340, "customDate": "2023-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9159, "employeeId": 340, "customDate": "2023-04-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9241, "employeeId": 340, "customDate": "2023-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10392, "employeeId": 340, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10393, "employeeId": 340, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10518, "employeeId": 340, "customDate": "2023-09-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11279, "employeeId": 340, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586947}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15912, "employeeId": 340, "customDate": "2024-01-25", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16973, "employeeId": 340, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17343, "employeeId": 340, "customDate": "2024-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6774, "employeeId": 343, "customDate": "2022-11-01", "customAmount": "100000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "One-time Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 405, "employeeId": 346, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1578, "employeeId": 346, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1579, "employeeId": 346, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1596, "employeeId": 346, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1661, "employeeId": 346, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1705, "employeeId": 346, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1738, "employeeId": 346, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1911, "employeeId": 346, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1957, "employeeId": 346, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1992, "employeeId": 346, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2431, "employeeId": 346, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2532, "employeeId": 346, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2555, "employeeId": 346, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2618, "employeeId": 346, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2678, "employeeId": 346, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2842, "employeeId": 346, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586948}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2907, "employeeId": 346, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2963, "employeeId": 346, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3028, "employeeId": 346, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3094, "employeeId": 346, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3239, "employeeId": 346, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3292, "employeeId": 346, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3363, "employeeId": 346, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3506, "employeeId": 346, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3814, "employeeId": 346, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3932, "employeeId": 346, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4069, "employeeId": 346, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4184, "employeeId": 346, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4736, "employeeId": 346, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4923, "employeeId": 346, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5106, "employeeId": 346, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1560, "employeeId": 347, "customDate": "2018-02-12", "customAmount": "3000.00 GBP", "customBonusReason": "Sign On", "customComment": "One time sign on bonus.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 481, "employeeId": 355, "customDate": "2018-08-06", "customAmount": "3000.00 GBP", "customBonusReason": "Sign On", "customComment": "One time bonus with the first salary payment.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3332, "employeeId": 355, "customDate": "2021-09-25", "customAmount": "20000.00 GBP", "customBonusReason": "Performance", "customComment": "One time Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9199, "employeeId": 356, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586949}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2874, "employeeId": 359, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5018, "employeeId": 359, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 396, "employeeId": 366, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1543, "employeeId": 366, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1544, "employeeId": 366, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1588, "employeeId": 366, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1653, "employeeId": 366, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1697, "employeeId": 366, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1730, "employeeId": 366, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1909, "employeeId": 366, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1949, "employeeId": 366, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1984, "employeeId": 366, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2423, "employeeId": 366, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2524, "employeeId": 366, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2547, "employeeId": 366, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2610, "employeeId": 366, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2664, "employeeId": 366, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2828, "employeeId": 366, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586950}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2894, "employeeId": 366, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2950, "employeeId": 366, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3016, "employeeId": 366, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3082, "employeeId": 366, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3231, "employeeId": 366, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3280, "employeeId": 366, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3351, "employeeId": 366, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3492, "employeeId": 366, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3799, "employeeId": 366, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3918, "employeeId": 366, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4061, "employeeId": 366, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4176, "employeeId": 366, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4721, "employeeId": 366, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4910, "employeeId": 366, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5100, "employeeId": 366, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5238, "employeeId": 366, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5422, "employeeId": 366, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5597, "employeeId": 366, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586951}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5742, "employeeId": 366, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5879, "employeeId": 366, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6768, "employeeId": 366, "customDate": "2022-11-01", "customAmount": "120000.00 SEK", "customBonusReason": "Performance", "customComment": "One-time spot bonus for great performance", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6793, "employeeId": 366, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7683, "employeeId": 366, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8213, "employeeId": 366, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8260, "employeeId": 366, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8400, "employeeId": 366, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9146, "employeeId": 366, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9991, "employeeId": 366, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10099, "employeeId": 366, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10290, "employeeId": 366, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10407, "employeeId": 366, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10579, "employeeId": 366, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11123, "employeeId": 366, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11305, "employeeId": 366, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11545, "employeeId": 366, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15972, "employeeId": 366, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17009, "employeeId": 366, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17372, "employeeId": 366, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586952}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2875, "employeeId": 367, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2876, "employeeId": 378, "customDate": "2021-03-25", "customAmount": "1000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16836, "employeeId": 380, "customDate": "2024-02-01", "customAmount": "700.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Reason: In lieu of EOY Closing SPIF for MOD Israel closed in Q4'23 (achieving deal closure during the unprecedented geopolitical situation in their region - usually only awarded to AE's).", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 404, "employeeId": 383, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 411, "employeeId": 383, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 412, "employeeId": 383, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1595, "employeeId": 383, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1660, "employeeId": 383, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1704, "employeeId": 383, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1737, "employeeId": 383, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1917, "employeeId": 383, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1956, "employeeId": 383, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1991, "employeeId": 383, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2430, "employeeId": 383, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2531, "employeeId": 383, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2554, "employeeId": 383, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2617, "employeeId": 383, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2675, "employeeId": 383, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2839, "employeeId": 383, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586953}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2904, "employeeId": 383, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2960, "employeeId": 383, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3026, "employeeId": 383, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3092, "employeeId": 383, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3243, "employeeId": 383, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3290, "employeeId": 383, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3361, "employeeId": 383, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3503, "employeeId": 383, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3811, "employeeId": 383, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3929, "employeeId": 383, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4074, "employeeId": 383, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4189, "employeeId": 383, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4732, "employeeId": 383, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4919, "employeeId": 383, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5111, "employeeId": 383, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5248, "employeeId": 383, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5431, "employeeId": 383, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5608, "employeeId": 383, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5754, "employeeId": 383, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586954}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5888, "employeeId": 383, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6802, "employeeId": 383, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7692, "employeeId": 383, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8222, "employeeId": 383, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8269, "employeeId": 383, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8407, "employeeId": 383, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9154, "employeeId": 383, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9999, "employeeId": 383, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10106, "employeeId": 383, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10297, "employeeId": 383, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10414, "employeeId": 383, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10561, "employeeId": 383, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11136, "employeeId": 383, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11313, "employeeId": 383, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11535, "employeeId": 383, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15980, "employeeId": 383, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17000, "employeeId": 383, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17380, "employeeId": 383, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586955}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 381, "employeeId": 385, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 382, "employeeId": 385, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 400, "employeeId": 385, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-Call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1592, "employeeId": 385, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1657, "employeeId": 385, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1701, "employeeId": 385, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late Payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1734, "employeeId": 385, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1914, "employeeId": 385, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1953, "employeeId": 385, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1988, "employeeId": 385, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2427, "employeeId": 385, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2528, "employeeId": 385, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2551, "employeeId": 385, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2614, "employeeId": 385, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2672, "employeeId": 385, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2836, "employeeId": 385, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2901, "employeeId": 385, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2957, "employeeId": 385, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3023, "employeeId": 385, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3089, "employeeId": 385, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586956}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3240, "employeeId": 385, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3287, "employeeId": 385, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3358, "employeeId": 385, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3500, "employeeId": 385, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3808, "employeeId": 385, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3926, "employeeId": 385, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4071, "employeeId": 385, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4186, "employeeId": 385, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4729, "employeeId": 385, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4916, "employeeId": 385, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5108, "employeeId": 385, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5245, "employeeId": 385, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5428, "employeeId": 385, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5605, "employeeId": 385, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5751, "employeeId": 385, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5883, "employeeId": 385, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6797, "employeeId": 385, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7687, "employeeId": 385, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8217, "employeeId": 385, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586957}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8264, "employeeId": 385, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8404, "employeeId": 385, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9150, "employeeId": 385, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9995, "employeeId": 385, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10103, "employeeId": 385, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10294, "employeeId": 385, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10411, "employeeId": 385, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10557, "employeeId": 385, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11132, "employeeId": 385, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11309, "employeeId": 385, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11530, "employeeId": 385, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15977, "employeeId": 385, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16997, "employeeId": 385, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17378, "employeeId": 385, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2808, "employeeId": 391, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5017, "employeeId": 391, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4248, "employeeId": 393, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 395, "employeeId": 394, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586958}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1535, "employeeId": 394, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1536, "employeeId": 394, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1587, "employeeId": 394, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1651, "employeeId": 394, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1695, "employeeId": 394, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1727, "employeeId": 394, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1905, "employeeId": 394, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1944, "employeeId": 394, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1979, "employeeId": 394, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2418, "employeeId": 394, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 369, "employeeId": 395, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 370, "employeeId": 395, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 401, "employeeId": 395, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura On-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1593, "employeeId": 395, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1658, "employeeId": 395, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1702, "employeeId": 395, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1735, "employeeId": 395, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1915, "employeeId": 395, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586959}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1954, "employeeId": 395, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1989, "employeeId": 395, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2428, "employeeId": 395, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2529, "employeeId": 395, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2552, "employeeId": 395, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2615, "employeeId": 395, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2673, "employeeId": 395, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2837, "employeeId": 395, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2902, "employeeId": 395, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2958, "employeeId": 395, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3024, "employeeId": 395, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3090, "employeeId": 395, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3241, "employeeId": 395, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3288, "employeeId": 395, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3359, "employeeId": 395, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3501, "employeeId": 395, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3809, "employeeId": 395, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3927, "employeeId": 395, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4072, "employeeId": 395, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586960}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4187, "employeeId": 395, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4730, "employeeId": 395, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4917, "employeeId": 395, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5109, "employeeId": 395, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5246, "employeeId": 395, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5429, "employeeId": 395, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5606, "employeeId": 395, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5752, "employeeId": 395, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5885, "employeeId": 395, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6799, "employeeId": 395, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7689, "employeeId": 395, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8219, "employeeId": 395, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8266, "employeeId": 395, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8406, "employeeId": 395, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9152, "employeeId": 395, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9997, "employeeId": 395, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10104, "employeeId": 395, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10295, "employeeId": 395, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10412, "employeeId": 395, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586961}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10558, "employeeId": 395, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11130, "employeeId": 395, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11308, "employeeId": 395, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11531, "employeeId": 395, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15978, "employeeId": 395, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16995, "employeeId": 395, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1968, "employeeId": 397, "customDate": "2020-08-25", "customAmount": "25000.00 SEK", "customBonusReason": "Spot Bonus", "customComment": "Ex gratia payment.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 394, "employeeId": 398, "customDate": "2020-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 439, "employeeId": 398, "customDate": "2019-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 440, "employeeId": 398, "customDate": "2019-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1586, "employeeId": 398, "customDate": "2020-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1650, "employeeId": 398, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1694, "employeeId": 398, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1726, "employeeId": 398, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1904, "employeeId": 398, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1943, "employeeId": 398, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1978, "employeeId": 398, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2417, "employeeId": 398, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586962}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2520, "employeeId": 398, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2543, "employeeId": 398, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2605, "employeeId": 398, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2663, "employeeId": 398, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2827, "employeeId": 398, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2893, "employeeId": 398, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2949, "employeeId": 398, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3015, "employeeId": 398, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3081, "employeeId": 398, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3230, "employeeId": 398, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3279, "employeeId": 398, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3350, "employeeId": 398, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3491, "employeeId": 398, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3798, "employeeId": 398, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3917, "employeeId": 398, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4060, "employeeId": 398, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4175, "employeeId": 398, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4720, "employeeId": 398, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4909, "employeeId": 398, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586963}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5099, "employeeId": 398, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5237, "employeeId": 398, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5421, "employeeId": 398, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5596, "employeeId": 398, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5741, "employeeId": 398, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5873, "employeeId": 398, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6787, "employeeId": 398, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7677, "employeeId": 398, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8207, "employeeId": 398, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8254, "employeeId": 398, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8394, "employeeId": 398, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9139, "employeeId": 398, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9984, "employeeId": 398, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10092, "employeeId": 398, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10283, "employeeId": 398, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10400, "employeeId": 398, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10550, "employeeId": 398, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11119, "employeeId": 398, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11296, "employeeId": 398, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586964}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11541, "employeeId": 398, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15965, "employeeId": 398, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17005, "employeeId": 398, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17365, "employeeId": 398, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4077, "employeeId": 400, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4192, "employeeId": 400, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4735, "employeeId": 400, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4922, "employeeId": 400, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5114, "employeeId": 400, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5251, "employeeId": 400, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5437, "employeeId": 400, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5610, "employeeId": 400, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5756, "employeeId": 400, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5889, "employeeId": 400, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6804, "employeeId": 400, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7694, "employeeId": 400, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8224, "employeeId": 400, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8271, "employeeId": 400, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8410, "employeeId": 400, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586965}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9156, "employeeId": 400, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10001, "employeeId": 400, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10108, "employeeId": 400, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10299, "employeeId": 400, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10416, "employeeId": 400, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10567, "employeeId": 400, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1652, "employeeId": 412, "customDate": "2020-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1696, "employeeId": 412, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March. Late payout", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1728, "employeeId": 412, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1906, "employeeId": 412, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1945, "employeeId": 412, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1980, "employeeId": 412, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2419, "employeeId": 412, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4249, "employeeId": 413, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3001, "employeeId": 419, "customDate": "2020-03-12", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on Bamboo launch!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3002, "employeeId": 419, "customDate": "2021-03-01", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on TriNet rolloff and ABD & Paylocity launch!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2606, "employeeId": 533, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2669, "employeeId": 533, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2833, "employeeId": 533, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586966}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2899, "employeeId": 533, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2955, "employeeId": 533, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3021, "employeeId": 533, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3087, "employeeId": 533, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3235, "employeeId": 533, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3284, "employeeId": 533, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3354, "employeeId": 533, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3495, "employeeId": 533, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3802, "employeeId": 533, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3921, "employeeId": 533, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4064, "employeeId": 533, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4179, "employeeId": 533, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4724, "employeeId": 533, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4913, "employeeId": 533, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5103, "employeeId": 533, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5241, "employeeId": 533, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5425, "employeeId": 533, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5600, "employeeId": 533, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5745, "employeeId": 533, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586967}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5875, "employeeId": 533, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6789, "employeeId": 533, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7679, "employeeId": 533, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8210, "employeeId": 533, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8257, "employeeId": 533, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8397, "employeeId": 533, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9142, "employeeId": 533, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9987, "employeeId": 533, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10095, "employeeId": 533, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10286, "employeeId": 533, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10403, "employeeId": 533, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10572, "employeeId": 533, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11125, "employeeId": 533, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11297, "employeeId": 533, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11547, "employeeId": 533, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15968, "employeeId": 533, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17011, "employeeId": 533, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17368, "employeeId": 533, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1948, "employeeId": 570, "customDate": "2020-07-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May & June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1983, "employeeId": 570, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586968}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2422, "employeeId": 570, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2523, "employeeId": 570, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2546, "employeeId": 570, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2609, "employeeId": 570, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2668, "employeeId": 570, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2832, "employeeId": 570, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2898, "employeeId": 570, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2954, "employeeId": 570, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3020, "employeeId": 570, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3086, "employeeId": 570, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3234, "employeeId": 570, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3283, "employeeId": 570, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3353, "employeeId": 570, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3494, "employeeId": 570, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3801, "employeeId": 570, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3920, "employeeId": 570, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4063, "employeeId": 570, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4178, "employeeId": 570, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4723, "employeeId": 570, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4912, "employeeId": 570, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5102, "employeeId": 570, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586969}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5240, "employeeId": 570, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5424, "employeeId": 570, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5599, "employeeId": 570, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5744, "employeeId": 570, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5878, "employeeId": 570, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6792, "employeeId": 570, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7682, "employeeId": 570, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8212, "employeeId": 570, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8259, "employeeId": 570, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8399, "employeeId": 570, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9145, "employeeId": 570, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9990, "employeeId": 570, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10098, "employeeId": 570, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10289, "employeeId": 570, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10406, "employeeId": 570, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10578, "employeeId": 570, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11122, "employeeId": 570, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11304, "employeeId": 570, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11544, "employeeId": 570, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15971, "employeeId": 570, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17008, "employeeId": 570, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586970}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17371, "employeeId": 570, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5016, "employeeId": 572, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SKO Awards 2022 Cash Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9197, "employeeId": 572, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4252, "employeeId": 573, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1729, "employeeId": 574, "customDate": "2020-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1908, "employeeId": 574, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1947, "employeeId": 574, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1982, "employeeId": 574, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2421, "employeeId": 574, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2522, "employeeId": 574, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2545, "employeeId": 574, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2608, "employeeId": 574, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2666, "employeeId": 574, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2830, "employeeId": 574, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2896, "employeeId": 574, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2952, "employeeId": 574, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3018, "employeeId": 574, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3084, "employeeId": 574, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3233, "employeeId": 574, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3282, "employeeId": 574, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586971}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3352, "employeeId": 574, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3493, "employeeId": 574, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3800, "employeeId": 574, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3919, "employeeId": 574, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4062, "employeeId": 574, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4177, "employeeId": 574, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4722, "employeeId": 574, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4911, "employeeId": 574, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5101, "employeeId": 574, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5239, "employeeId": 574, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5423, "employeeId": 574, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5598, "employeeId": 574, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5743, "employeeId": 574, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5876, "employeeId": 574, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6790, "employeeId": 574, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7680, "employeeId": 574, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8211, "employeeId": 574, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8258, "employeeId": 574, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8398, "employeeId": 574, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586972}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9144, "employeeId": 574, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9989, "employeeId": 574, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10097, "employeeId": 574, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10288, "employeeId": 574, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10405, "employeeId": 574, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10577, "employeeId": 574, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11121, "employeeId": 574, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11303, "employeeId": 574, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11543, "employeeId": 574, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15970, "employeeId": 574, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17007, "employeeId": 574, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17370, "employeeId": 574, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1907, "employeeId": 575, "customDate": "2020-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1946, "employeeId": 575, "customDate": "2020-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1981, "employeeId": 575, "customDate": "2020-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2420, "employeeId": 575, "customDate": "2020-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Aug.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2521, "employeeId": 575, "customDate": "2020-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Sep.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2544, "employeeId": 575, "customDate": "2020-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Okt.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2607, "employeeId": 575, "customDate": "2020-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Nov.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586973}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2667, "employeeId": 575, "customDate": "2021-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Dec.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2831, "employeeId": 575, "customDate": "2021-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Jan.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2897, "employeeId": 575, "customDate": "2021-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Feb.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2953, "employeeId": 575, "customDate": "2021-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Mar.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3019, "employeeId": 575, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3085, "employeeId": 575, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3499, "employeeId": 575, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3806, "employeeId": 575, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3925, "employeeId": 575, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4068, "employeeId": 575, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4183, "employeeId": 575, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4728, "employeeId": 575, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4915, "employeeId": 575, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5105, "employeeId": 575, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5243, "employeeId": 575, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5427, "employeeId": 575, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1676, "employeeId": 579, "customDate": "2020-04-01", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "BambooHR Release Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2866, "employeeId": 582, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586974}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2972, "employeeId": 590, "customDate": "2021-04-09", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17410, "employeeId": 590, "customDate": "2024-03-29", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4250, "employeeId": 603, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2810, "employeeId": 607, "customDate": "2021-02-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales award 1000USD", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11241, "employeeId": 616, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8250, "employeeId": 619, "customDate": "2023-02-01", "customAmount": "2500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q3'22 Professional Services Booking Consistency Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11249, "employeeId": 627, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2864, "employeeId": 652, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11242, "employeeId": 656, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3413, "employeeId": 663, "customDate": "2021-10-25", "customAmount": "25000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus for AsiaPac", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11227, "employeeId": 664, "customDate": "2023-10-31", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4251, "employeeId": 670, "customDate": "2022-02-25", "customAmount": "1500.00 USD", "customBonusReason": "Performance", "customComment": "Super performer 2021 bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3807, "employeeId": 674, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4714, "employeeId": 685, "customDate": "2022-02-25", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4715, "employeeId": 685, "customDate": "2022-01-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5124, "employeeId": 685, "customDate": "2022-06-25", "customAmount": "125.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus to be paid in June run 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5128, "employeeId": 685, "customDate": "2022-05-25", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5446, "employeeId": 685, "customDate": "2022-07-25", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "On Call Comp for June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5763, "employeeId": 685, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6815, "employeeId": 685, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586975}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9160, "employeeId": 685, "customDate": "2023-04-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10114, "employeeId": 685, "customDate": "2023-06-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16971, "employeeId": 685, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp for January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11232, "employeeId": 688, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5030, "employeeId": 704, "customDate": "2022-04-29", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SDR of the Year 2021", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5031, "employeeId": 705, "customDate": "2022-04-29", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Sales MVP 2021 Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3029, "employeeId": 710, "customDate": "2021-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for Apr.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3095, "employeeId": 710, "customDate": "2021-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3238, "employeeId": 710, "customDate": "2021-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3293, "employeeId": 710, "customDate": "2021-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3364, "employeeId": 710, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3507, "employeeId": 710, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3815, "employeeId": 710, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3933, "employeeId": 710, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4070, "employeeId": 710, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4185, "employeeId": 710, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4737, "employeeId": 710, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4924, "employeeId": 710, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5107, "employeeId": 710, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586976}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5254, "employeeId": 710, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5434, "employeeId": 710, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5604, "employeeId": 710, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5750, "employeeId": 710, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5882, "employeeId": 710, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6796, "employeeId": 710, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7686, "employeeId": 710, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8216, "employeeId": 710, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8263, "employeeId": 710, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8403, "employeeId": 710, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9149, "employeeId": 710, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9994, "employeeId": 710, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10102, "employeeId": 710, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10293, "employeeId": 710, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10410, "employeeId": 710, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10552, "employeeId": 710, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11131, "employeeId": 710, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11306, "employeeId": 710, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11528, "employeeId": 710, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586977}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15975, "employeeId": 710, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16991, "employeeId": 710, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17375, "employeeId": 710, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5519, "employeeId": 714, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5525, "employeeId": 714, "customDate": "2022-06-02", "customAmount": "875.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5766, "employeeId": 714, "customDate": "2022-08-13", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5871, "employeeId": 714, "customDate": "2022-10-04", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Sept on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6809, "employeeId": 714, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Oct on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7700, "employeeId": 714, "customDate": "2022-12-07", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8177, "employeeId": 714, "customDate": "2023-01-05", "customAmount": "3500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8288, "employeeId": 714, "customDate": "2023-02-06", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8361, "employeeId": 714, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9129, "employeeId": 714, "customDate": "2023-04-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9228, "employeeId": 714, "customDate": "2023-05-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10141, "employeeId": 714, "customDate": "2023-06-07", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10424, "employeeId": 714, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10542, "employeeId": 714, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11092, "employeeId": 714, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10304, "employeeId": 718, "customDate": "2023-08-25", "customAmount": "5000.00 USD", "customBonusReason": "Performance", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586978}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5029, "employeeId": 725, "customDate": "2022-04-29", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "RevOps Department Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9196, "employeeId": 726, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8247, "employeeId": 727, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9209, "employeeId": 727, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3357, "employeeId": 735, "customDate": "2021-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3498, "employeeId": 735, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3805, "employeeId": 735, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3924, "employeeId": 735, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4067, "employeeId": 735, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4182, "employeeId": 735, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4727, "employeeId": 735, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4914, "employeeId": 735, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5104, "employeeId": 735, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5242, "employeeId": 735, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5426, "employeeId": 735, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5601, "employeeId": 735, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5746, "employeeId": 735, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5872, "employeeId": 735, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6786, "employeeId": 735, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586979}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7676, "employeeId": 735, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8206, "employeeId": 735, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8253, "employeeId": 735, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8393, "employeeId": 735, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9138, "employeeId": 735, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9983, "employeeId": 735, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10091, "employeeId": 735, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10282, "employeeId": 735, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10399, "employeeId": 735, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10570, "employeeId": 735, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11118, "employeeId": 735, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11294, "employeeId": 735, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11540, "employeeId": 735, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15964, "employeeId": 735, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17004, "employeeId": 735, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17364, "employeeId": 735, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5080, "employeeId": 741, "customDate": "2022-03-17", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5083, "employeeId": 741, "customDate": "2022-03-17", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5084, "employeeId": 741, "customDate": "2022-04-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586980}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5515, "employeeId": 741, "customDate": "2022-07-05", "customAmount": "1900.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5530, "employeeId": 741, "customDate": "2022-06-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5587, "employeeId": 741, "customDate": "2022-08-04", "customAmount": "3500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5771, "employeeId": 741, "customDate": "2022-09-06", "customAmount": "3400.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6813, "employeeId": 741, "customDate": "2022-11-04", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7703, "employeeId": 741, "customDate": "2022-12-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8179, "employeeId": 741, "customDate": "2023-01-05", "customAmount": "2050.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8278, "employeeId": 741, "customDate": "2023-02-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9133, "employeeId": 741, "customDate": "2023-04-06", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9231, "employeeId": 741, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10134, "employeeId": 741, "customDate": "2023-06-06", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10232, "employeeId": 741, "customDate": "2023-07-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10427, "employeeId": 741, "customDate": "2023-08-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10537, "employeeId": 741, "customDate": "2023-09-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11089, "employeeId": 741, "customDate": "2023-10-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11272, "employeeId": 741, "customDate": "2023-11-01", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15921, "employeeId": 741, "customDate": "2024-01-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16839, "employeeId": 741, "customDate": "2024-02-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17248, "employeeId": 741, "customDate": "2024-03-01", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586981}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5011, "employeeId": 744, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5081, "employeeId": 744, "customDate": "2022-03-17", "customAmount": "3200.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5082, "employeeId": 744, "customDate": "2022-03-17", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5085, "employeeId": 744, "customDate": "2022-04-04", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5516, "employeeId": 744, "customDate": "2022-07-05", "customAmount": "3600.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5531, "employeeId": 744, "customDate": "2022-06-02", "customAmount": "4400.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5588, "employeeId": 744, "customDate": "2022-08-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5772, "employeeId": 744, "customDate": "2022-09-06", "customAmount": "3300.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6814, "employeeId": 744, "customDate": "2022-11-04", "customAmount": "2100.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7702, "employeeId": 744, "customDate": "2022-12-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8181, "employeeId": 744, "customDate": "2023-01-05", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8249, "employeeId": 744, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8280, "employeeId": 744, "customDate": "2023-02-06", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8356, "employeeId": 744, "customDate": "2023-03-02", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9132, "employeeId": 744, "customDate": "2023-04-02", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9233, "employeeId": 744, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10136, "employeeId": 744, "customDate": "2023-06-06", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10230, "employeeId": 744, "customDate": "2023-07-03", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10429, "employeeId": 744, "customDate": "2023-08-07", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586982}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11091, "employeeId": 744, "customDate": "2023-10-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11271, "employeeId": 744, "customDate": "2023-11-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11577, "employeeId": 744, "customDate": "2023-12-05", "customAmount": "3600.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15920, "employeeId": 744, "customDate": "2024-01-03", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16841, "employeeId": 744, "customDate": "2024-02-02", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17249, "employeeId": 744, "customDate": "2024-03-01", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3505, "employeeId": 748, "customDate": "2021-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3813, "employeeId": 748, "customDate": "2021-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3931, "employeeId": 748, "customDate": "2021-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4076, "employeeId": 748, "customDate": "2022-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4191, "employeeId": 748, "customDate": "2022-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4734, "employeeId": 748, "customDate": "2022-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4921, "employeeId": 748, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5113, "employeeId": 748, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5250, "employeeId": 748, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5433, "employeeId": 748, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5609, "employeeId": 748, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5755, "employeeId": 748, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5884, "employeeId": 748, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586983}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6798, "employeeId": 748, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7688, "employeeId": 748, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8218, "employeeId": 748, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8265, "employeeId": 748, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8405, "employeeId": 748, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9151, "employeeId": 748, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9996, "employeeId": 748, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4995, "employeeId": 751, "customDate": "2022-05-25", "customAmount": "20000.00 GBP", "customBonusReason": "Spot Bonus", "customComment": "One-time bonus - to be paid in May run 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5116, "employeeId": 752, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5253, "employeeId": 752, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5435, "employeeId": 752, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5612, "employeeId": 752, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5012, "employeeId": 775, "customDate": "2022-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9211, "employeeId": 775, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4213, "employeeId": 792, "customDate": "2022-02-15", "customAmount": "1500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Services Spot Bonus Award - Exceptional performance in FY21", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5536, "employeeId": 792, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5087, "employeeId": 794, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5518, "employeeId": 794, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586984}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5765, "employeeId": 794, "customDate": "2022-08-20", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6811, "employeeId": 794, "customDate": "2022-11-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10219, "employeeId": 794, "customDate": "2023-06-28", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10426, "employeeId": 794, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11094, "employeeId": 794, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11575, "employeeId": 794, "customDate": "2023-12-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15926, "employeeId": 794, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2869, "employeeId": 801, "customDate": "2021-02-28", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5602, "employeeId": 803, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5747, "employeeId": 803, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5877, "employeeId": 803, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6791, "employeeId": 803, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7681, "employeeId": 803, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2860, "employeeId": 818, "customDate": "2021-03-15", "customAmount": "10000.00 USD", "customBonusReason": "", "customComment": "You will be paid a one-time relocation bonus in the amount of $10,000 (USD) payable upon initiating relocation. If your employment is terminated by the Company for Cause or if you terminate your employment voluntarily prior to one year of your relocation date, you agree to repay the pro-rated amount of the signing bonus within 30 days following your termination date.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3013, "employeeId": 820, "customDate": "2021-04-30", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work and extra hours working on transition to ABD & Paylocity from TriNet", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5302, "employeeId": 822, "customDate": "2022-07-25", "customAmount": "15000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Mid-year bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3047, "employeeId": 823, "customDate": "2021-05-07", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Hard work on the implementation of Paylocity and Tipalti!", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11229, "employeeId": 827, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5874, "employeeId": 836, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586985}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6788, "employeeId": 836, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7678, "employeeId": 836, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8208, "employeeId": 836, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8255, "employeeId": 836, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8395, "employeeId": 836, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9140, "employeeId": 836, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9985, "employeeId": 836, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10093, "employeeId": 836, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10284, "employeeId": 836, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10401, "employeeId": 836, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10571, "employeeId": 836, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11124, "employeeId": 836, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11298, "employeeId": 836, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11546, "employeeId": 836, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15966, "employeeId": 836, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17010, "employeeId": 836, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17366, "employeeId": 836, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5647, "employeeId": 846, "customDate": "2022-08-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot bonus awarded on 8/19", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8209, "employeeId": 847, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586986}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8256, "employeeId": 847, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8396, "employeeId": 847, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9141, "employeeId": 847, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9986, "employeeId": 847, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10094, "employeeId": 847, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10285, "employeeId": 847, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10402, "employeeId": 847, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10576, "employeeId": 847, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11120, "employeeId": 847, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11302, "employeeId": 847, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11542, "employeeId": 847, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15967, "employeeId": 847, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17006, "employeeId": 847, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17367, "employeeId": 847, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3125, "employeeId": 861, "customDate": "2021-06-09", "customAmount": "60000.00 USD", "customBonusReason": "Sign On", "customComment": "One-time signing bonus in the amount of $60,000 (USD) as soon as practicable following the Start Date, and in no event more than 30 days thereafter on the first payroll date following the Start Date.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11245, "employeeId": 867, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4716, "employeeId": 870, "customDate": "2022-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5126, "employeeId": 870, "customDate": "2022-05-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5762, "employeeId": 870, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586987}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6817, "employeeId": 870, "customDate": "2022-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8160, "employeeId": 870, "customDate": "2023-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8161, "employeeId": 870, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8275, "employeeId": 870, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9242, "employeeId": 870, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10115, "employeeId": 870, "customDate": "2023-06-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10389, "employeeId": 870, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10519, "employeeId": 870, "customDate": "2023-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11111, "employeeId": 870, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16972, "employeeId": 870, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5014, "employeeId": 871, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5115, "employeeId": 883, "customDate": "2022-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5252, "employeeId": 883, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5436, "employeeId": 883, "customDate": "2022-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5611, "employeeId": 883, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5757, "employeeId": 883, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5887, "employeeId": 883, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6801, "employeeId": 883, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586988}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7691, "employeeId": 883, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8221, "employeeId": 883, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8268, "employeeId": 883, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8408, "employeeId": 883, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9153, "employeeId": 883, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9998, "employeeId": 883, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10105, "employeeId": 883, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10296, "employeeId": 883, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10413, "employeeId": 883, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10560, "employeeId": 883, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11135, "employeeId": 883, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11312, "employeeId": 883, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11534, "employeeId": 883, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15979, "employeeId": 883, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16999, "employeeId": 883, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17379, "employeeId": 883, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4713, "employeeId": 884, "customDate": "2022-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Feb 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5581, "employeeId": 884, "customDate": "2022-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5761, "employeeId": 884, "customDate": "2022-09-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation August 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586989}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5894, "employeeId": 884, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8163, "employeeId": 884, "customDate": "2023-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8277, "employeeId": 884, "customDate": "2023-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8349, "employeeId": 884, "customDate": "2023-03-25", "customAmount": "350.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Global Services Award Spot Bonus February 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8368, "employeeId": 884, "customDate": "2023-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9240, "employeeId": 884, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10113, "employeeId": 884, "customDate": "2023-06-25", "customAmount": "2250.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10391, "employeeId": 884, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10394, "employeeId": 884, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10520, "employeeId": 884, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11110, "employeeId": 884, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11280, "employeeId": 884, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11527, "employeeId": 884, "customDate": "2023-12-22", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15911, "employeeId": 884, "customDate": "2024-01-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16974, "employeeId": 884, "customDate": "2024-02-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9204, "employeeId": 888, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5244, "employeeId": 893, "customDate": "2022-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5603, "employeeId": 893, "customDate": "2022-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5748, "employeeId": 893, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586990}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5849, "employeeId": 893, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June. Late payout (October)", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5880, "employeeId": 893, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6794, "employeeId": 893, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7684, "employeeId": 893, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8214, "employeeId": 893, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8261, "employeeId": 893, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8401, "employeeId": 893, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9147, "employeeId": 893, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9992, "employeeId": 893, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10100, "employeeId": 893, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10291, "employeeId": 893, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10408, "employeeId": 893, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10574, "employeeId": 893, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11116, "employeeId": 893, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11300, "employeeId": 893, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11538, "employeeId": 893, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15973, "employeeId": 893, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17002, "employeeId": 893, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17373, "employeeId": 893, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9205, "employeeId": 901, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q1 FY23 Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5028, "employeeId": 904, "customDate": "2022-04-25", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "2022 SKO Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586991}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4775, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for Feb 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4776, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for Jan 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4905, "employeeId": 929, "customDate": "2022-04-25", "customAmount": "2500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On call comp for March 2022.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5129, "employeeId": 929, "customDate": "2022-05-25", "customAmount": "300.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot award for Support March 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5130, "employeeId": 929, "customDate": "2022-05-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5262, "employeeId": 929, "customDate": "2022-06-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5451, "employeeId": 929, "customDate": "2022-07-25", "customAmount": "3700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation June 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5707, "employeeId": 929, "customDate": "2022-08-25", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation July 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5735, "employeeId": 929, "customDate": "2022-09-25", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Aug 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5892, "employeeId": 929, "customDate": "2022-10-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Sep 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6821, "employeeId": 929, "customDate": "2022-11-25", "customAmount": "1600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Oct 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7695, "employeeId": 929, "customDate": "2022-12-25", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Nov 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8182, "employeeId": 929, "customDate": "2023-01-25", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Dec 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8273, "employeeId": 929, "customDate": "2023-02-25", "customAmount": "1800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8353, "employeeId": 929, "customDate": "2023-03-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9161, "employeeId": 929, "customDate": "2023-04-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9237, "employeeId": 929, "customDate": "2023-05-25", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10110, "employeeId": 929, "customDate": "2023-06-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10236, "employeeId": 929, "customDate": "2023-07-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10383, "employeeId": 929, "customDate": "2023-08-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10515, "employeeId": 929, "customDate": "2023-09-25", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586992}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11055, "employeeId": 929, "customDate": "2023-10-25", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11276, "employeeId": 929, "customDate": "2023-11-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15913, "employeeId": 929, "customDate": "2024-01-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16954, "employeeId": 929, "customDate": "2024-02-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On-Call Compensation January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5078, "employeeId": 938, "customDate": "2022-03-16", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5088, "employeeId": 938, "customDate": "2022-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5526, "employeeId": 938, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5764, "employeeId": 938, "customDate": "2022-08-27", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6808, "employeeId": 938, "customDate": "2022-11-04", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7699, "employeeId": 938, "customDate": "2022-12-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8176, "employeeId": 938, "customDate": "2023-01-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8285, "employeeId": 938, "customDate": "2023-02-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8360, "employeeId": 938, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9128, "employeeId": 938, "customDate": "2023-04-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9227, "employeeId": 938, "customDate": "2023-05-04", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10140, "employeeId": 938, "customDate": "2023-06-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10216, "employeeId": 938, "customDate": "2023-06-28", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10423, "employeeId": 938, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586993}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10541, "employeeId": 938, "customDate": "2023-09-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11095, "employeeId": 938, "customDate": "2023-10-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11268, "employeeId": 938, "customDate": "2023-11-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11572, "employeeId": 938, "customDate": "2023-12-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15925, "employeeId": 938, "customDate": "2024-01-03", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17252, "employeeId": 938, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5749, "employeeId": 944, "customDate": "2022-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5881, "employeeId": 944, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6795, "employeeId": 944, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7685, "employeeId": 944, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8215, "employeeId": 944, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8262, "employeeId": 944, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8402, "employeeId": 944, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9148, "employeeId": 944, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9993, "employeeId": 944, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10101, "employeeId": 944, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10292, "employeeId": 944, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10409, "employeeId": 944, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10573, "employeeId": 944, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11115, "employeeId": 944, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586994}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11299, "employeeId": 944, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11537, "employeeId": 944, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15974, "employeeId": 944, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17001, "employeeId": 944, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17374, "employeeId": 944, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5076, "employeeId": 955, "customDate": "2022-03-16", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5513, "employeeId": 955, "customDate": "2022-07-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5529, "employeeId": 955, "customDate": "2022-06-02", "customAmount": "1125.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5583, "employeeId": 955, "customDate": "2022-08-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5804, "employeeId": 955, "customDate": "2022-09-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8284, "employeeId": 955, "customDate": "2023-02-06", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8365, "employeeId": 955, "customDate": "2023-03-03", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9165, "employeeId": 955, "customDate": "2023-04-06", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9236, "employeeId": 955, "customDate": "2023-05-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10226, "employeeId": 955, "customDate": "2023-07-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10432, "employeeId": 955, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10539, "employeeId": 955, "customDate": "2023-09-05", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11085, "employeeId": 955, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11251, "employeeId": 955, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586995}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11580, "employeeId": 955, "customDate": "2023-12-05", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "November 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15916, "employeeId": 955, "customDate": "2024-01-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16837, "employeeId": 955, "customDate": "2024-02-02", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17250, "employeeId": 955, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10553, "employeeId": 961, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11129, "employeeId": 961, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11307, "employeeId": 961, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11529, "employeeId": 961, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15976, "employeeId": 961, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16994, "employeeId": 961, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17377, "employeeId": 961, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8246, "employeeId": 963, "customDate": "2023-02-28", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q4 2022 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9210, "employeeId": 963, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9208, "employeeId": 977, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11250, "employeeId": 977, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5075, "employeeId": 983, "customDate": "2022-03-16", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5514, "employeeId": 983, "customDate": "2022-07-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5528, "employeeId": 983, "customDate": "2022-06-02", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586996}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5584, "employeeId": 983, "customDate": "2022-08-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5803, "employeeId": 983, "customDate": "2022-09-05", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7706, "employeeId": 983, "customDate": "2022-12-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8283, "employeeId": 983, "customDate": "2023-02-06", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8364, "employeeId": 983, "customDate": "2023-03-03", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9166, "employeeId": 983, "customDate": "2023-04-06", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9235, "employeeId": 983, "customDate": "2023-05-05", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10143, "employeeId": 983, "customDate": "2023-06-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10227, "employeeId": 983, "customDate": "2023-07-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10540, "employeeId": 983, "customDate": "2023-09-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11086, "employeeId": 983, "customDate": "2023-10-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11270, "employeeId": 983, "customDate": "2023-11-01", "customAmount": "1750.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11581, "employeeId": 983, "customDate": "2023-12-05", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15917, "employeeId": 983, "customDate": "2024-01-03", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "December on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16838, "employeeId": 983, "customDate": "2024-02-02", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17251, "employeeId": 983, "customDate": "2024-03-01", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11236, "employeeId": 985, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8239, "employeeId": 986, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Star Global Services Award Q4 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5535, "employeeId": 1000, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586997}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5537, "employeeId": 1016, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3881, "employeeId": 1025, "customDate": "2022-01-04", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3896, "employeeId": 1040, "customDate": "2022-01-04", "customAmount": "30000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11246, "employeeId": 1041, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4059, "employeeId": 1044, "customDate": "2022-01-10", "customAmount": "25000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15962, "employeeId": 1048, "customDate": "2024-01-15", "customAmount": "1000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5890, "employeeId": 1051, "customDate": "2022-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6803, "employeeId": 1051, "customDate": "2022-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7693, "employeeId": 1051, "customDate": "2022-12-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8223, "employeeId": 1051, "customDate": "2023-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8270, "employeeId": 1051, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8409, "employeeId": 1051, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9155, "employeeId": 1051, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10000, "employeeId": 1051, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10107, "employeeId": 1051, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10298, "employeeId": 1051, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10415, "employeeId": 1051, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10559, "employeeId": 1051, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11133, "employeeId": 1051, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11310, "employeeId": 1051, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586998}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11532, "employeeId": 1051, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15981, "employeeId": 1051, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16996, "employeeId": 1051, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17381, "employeeId": 1051, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11239, "employeeId": 1066, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8238, "employeeId": 1075, "customDate": "2023-02-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Star Global Services Award Q4 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5532, "employeeId": 1076, "customDate": "2022-06-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5534, "employeeId": 1076, "customDate": "2022-07-06", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q2 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5586, "employeeId": 1076, "customDate": "2022-08-04", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5768, "employeeId": 1076, "customDate": "2022-09-06", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8281, "employeeId": 1076, "customDate": "2023-02-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "January on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8357, "employeeId": 1076, "customDate": "2023-03-02", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "February on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10137, "employeeId": 1076, "customDate": "2023-06-06", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10228, "employeeId": 1076, "customDate": "2023-07-03", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10430, "employeeId": 1076, "customDate": "2023-08-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10535, "employeeId": 1076, "customDate": "2023-09-05", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11087, "employeeId": 1076, "customDate": "2023-10-02", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11274, "employeeId": 1076, "customDate": "2023-11-01", "customAmount": "400.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872586999}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11578, "employeeId": 1076, "customDate": "2023-12-05", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15918, "employeeId": 1076, "customDate": "2024-01-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16842, "employeeId": 1076, "customDate": "2024-02-01", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17257, "employeeId": 1076, "customDate": "2024-03-01", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11205, "employeeId": 1084, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11238, "employeeId": 1085, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11247, "employeeId": 1090, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11198, "employeeId": 1092, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11199, "employeeId": 1092, "customDate": "2024-01-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "SNAP Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11237, "employeeId": 1099, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5770, "employeeId": 1102, "customDate": "2022-09-06", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6812, "employeeId": 1102, "customDate": "2022-11-04", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7704, "employeeId": 1102, "customDate": "2022-12-07", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "Nov on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8180, "employeeId": 1102, "customDate": "2023-01-05", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Dec on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8279, "employeeId": 1102, "customDate": "2023-02-06", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Jan on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8355, "employeeId": 1102, "customDate": "2023-03-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "Feb on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9134, "employeeId": 1102, "customDate": "2023-04-02", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "March on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9232, "employeeId": 1102, "customDate": "2023-05-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "April on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587000}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10135, "employeeId": 1102, "customDate": "2023-06-06", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "May on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10231, "employeeId": 1102, "customDate": "2023-07-03", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "June on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10428, "employeeId": 1102, "customDate": "2023-08-07", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "July on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10538, "employeeId": 1102, "customDate": "2023-09-05", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "August on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11090, "employeeId": 1102, "customDate": "2023-10-02", "customAmount": "900.00 USD", "customBonusReason": "On-Call Support", "customComment": "September on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11273, "employeeId": 1102, "customDate": "2023-11-01", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11576, "employeeId": 1102, "customDate": "2023-12-05", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15922, "employeeId": 1102, "customDate": "2024-01-03", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "December 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16840, "employeeId": 1102, "customDate": "2024-02-02", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17247, "employeeId": 1102, "customDate": "2024-03-01", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11240, "employeeId": 1114, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7696, "employeeId": 1122, "customDate": "2022-12-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp November 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8183, "employeeId": 1122, "customDate": "2023-01-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8274, "employeeId": 1122, "customDate": "2023-02-25", "customAmount": "2700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8354, "employeeId": 1122, "customDate": "2023-03-25", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9162, "employeeId": 1122, "customDate": "2023-04-25", "customAmount": "1700.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9239, "employeeId": 1122, "customDate": "2023-05-25", "customAmount": "1900.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10112, "employeeId": 1122, "customDate": "2023-06-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10238, "employeeId": 1122, "customDate": "2023-07-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587001}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10385, "employeeId": 1122, "customDate": "2023-08-25", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10517, "employeeId": 1122, "customDate": "2023-09-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11053, "employeeId": 1122, "customDate": "2023-10-25", "customAmount": "200.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11278, "employeeId": 1122, "customDate": "2023-11-25", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15915, "employeeId": 1122, "customDate": "2024-01-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16953, "employeeId": 1122, "customDate": "2024-02-25", "customAmount": "2800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17345, "employeeId": 1122, "customDate": "2024-03-25", "customAmount": "800.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8145, "employeeId": 1124, "customDate": "2022-12-07", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Nov 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8282, "employeeId": 1124, "customDate": "2023-02-06", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Jan 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8358, "employeeId": 1124, "customDate": "2023-03-02", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota Feb 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9164, "employeeId": 1124, "customDate": "2023-04-06", "customAmount": "600.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota March 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9234, "employeeId": 1124, "customDate": "2023-05-05", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10138, "employeeId": 1124, "customDate": "2023-06-06", "customAmount": "2000.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10229, "employeeId": 1124, "customDate": "2023-07-03", "customAmount": "800.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10431, "employeeId": 1124, "customDate": "2023-08-07", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10536, "employeeId": 1124, "customDate": "2023-09-05", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11088, "employeeId": 1124, "customDate": "2023-10-02", "customAmount": "2200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11275, "employeeId": 1124, "customDate": "2023-11-01", "customAmount": "2300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11579, "employeeId": 1124, "customDate": "2023-12-05", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15919, "employeeId": 1124, "customDate": "2024-01-03", "customAmount": "3900.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587002}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16843, "employeeId": 1124, "customDate": "2024-02-01", "customAmount": "1100.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota January 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17256, "employeeId": 1124, "customDate": "2024-03-01", "customAmount": "1200.00 USD", "customBonusReason": "On-Call Support", "customComment": "on-call rota February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10390, "employeeId": 1138, "customDate": "2023-08-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11109, "employeeId": 1138, "customDate": "2023-10-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11281, "employeeId": 1138, "customDate": "2023-11-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11526, "employeeId": 1138, "customDate": "2023-12-22", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation November 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15910, "employeeId": 1138, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17342, "employeeId": 1138, "customDate": "2024-03-25", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Compensation February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5907, "employeeId": 1143, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5906, "employeeId": 1147, "customDate": "2022-10-07", "customAmount": "500.00 USD", "customBonusReason": "Performance", "customComment": "Q3 Global Services Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5123, "employeeId": 1151, "customDate": "2022-06-25", "customAmount": "125.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Spot Bonus May 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11267, "employeeId": 1156, "customDate": "2023-11-01", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "October on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11573, "employeeId": 1156, "customDate": "2023-12-05", "customAmount": "375.00 USD", "customBonusReason": "On-Call Support", "customComment": "November on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16844, "employeeId": 1156, "customDate": "2024-02-01", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "January 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17254, "employeeId": 1156, "customDate": "2024-03-01", "customAmount": "1250.00 USD", "customBonusReason": "On-Call Support", "customComment": "February 2024 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9124, "employeeId": 1157, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q123 Global Services Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11226, "employeeId": 1176, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8147, "employeeId": 1209, "customDate": "2022-12-22", "customAmount": "3000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9221, "employeeId": 1209, "customDate": "2023-05-15", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587003}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5377, "employeeId": 1219, "customDate": "2022-07-05", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10433, "employeeId": 1228, "customDate": "2023-08-07", "customAmount": "750.00 USD", "customBonusReason": "On-Call Support", "customComment": "July 2023 on-call rota", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5418, "employeeId": 1230, "customDate": "2022-06-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8411, "employeeId": 1252, "customDate": "2023-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9143, "employeeId": 1252, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9988, "employeeId": 1252, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10096, "employeeId": 1252, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10287, "employeeId": 1252, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10404, "employeeId": 1252, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10575, "employeeId": 1252, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11117, "employeeId": 1252, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11301, "employeeId": 1252, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11539, "employeeId": 1252, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15969, "employeeId": 1252, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17003, "employeeId": 1252, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17369, "employeeId": 1252, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11225, "employeeId": 1272, "customDate": "2023-10-31", "customAmount": "10000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9198, "employeeId": 1274, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Prize for NODES attendee referrals competition 2022", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587004}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5445, "employeeId": 1280, "customDate": "2022-07-05", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11248, "employeeId": 1293, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9157, "employeeId": 1302, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for March.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10002, "employeeId": 1302, "customDate": "2023-05-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for April.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10109, "employeeId": 1302, "customDate": "2023-06-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for May.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10300, "employeeId": 1302, "customDate": "2023-07-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for June.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10417, "employeeId": 1302, "customDate": "2023-08-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for July.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10569, "employeeId": 1302, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11137, "employeeId": 1302, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11314, "employeeId": 1302, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11536, "employeeId": 1302, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15983, "employeeId": 1302, "customDate": "2024-01-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16993, "employeeId": 1302, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17383, "employeeId": 1302, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9212, "employeeId": 1305, "customDate": "2023-04-24", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9123, "employeeId": 1306, "customDate": "2023-04-25", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q123 Global Services Star Awards", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11230, "employeeId": 1308, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Star Award", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11234, "employeeId": 1313, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587005}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9238, "employeeId": 1320, "customDate": "2023-05-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp April 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10111, "employeeId": 1320, "customDate": "2023-06-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp May 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10237, "employeeId": 1320, "customDate": "2023-07-25", "customAmount": "1600.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp June 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10384, "employeeId": 1320, "customDate": "2023-08-25", "customAmount": "1400.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp July 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10516, "employeeId": 1320, "customDate": "2023-09-25", "customAmount": "1300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp August 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11054, "employeeId": 1320, "customDate": "2023-10-25", "customAmount": "3350.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp September 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11277, "employeeId": 1320, "customDate": "2023-11-25", "customAmount": "950.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp October 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15914, "employeeId": 1320, "customDate": "2024-01-25", "customAmount": "300.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp December 2023", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17344, "employeeId": 1320, "customDate": "2024-03-25", "customAmount": "1500.00 USD", "customBonusReason": "On-Call Support", "customComment": "On Call Comp February 2024", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5705, "employeeId": 1329, "customDate": "2022-09-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5807, "employeeId": 1343, "customDate": "2022-10-17", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11231, "employeeId": 1344, "customDate": "2023-10-31", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "Q2 Spot Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10568, "employeeId": 1355, "customDate": "2023-09-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for August.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11134, "employeeId": 1355, "customDate": "2023-10-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for September.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11311, "employeeId": 1355, "customDate": "2023-11-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for October.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11533, "employeeId": 1355, "customDate": "2023-12-22", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for November.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15982, "employeeId": 1355, "customDate": "2024-01-25", "customAmount": "1000.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for December.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16998, "employeeId": 1355, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17382, "employeeId": 1355, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6715, "employeeId": 1362, "customDate": "2022-10-31", "customAmount": "15000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9207, "employeeId": 1363, "customDate": "2023-05-15", "customAmount": "500.00 USD", "customBonusReason": "Spot Bonus", "customComment": "NODES Competition", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16992, "employeeId": 1374, "customDate": "2024-02-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for January.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17376, "employeeId": 1374, "customDate": "2024-03-25", "customAmount": "500.00 USD", "customBonusReason": "On-Call Support", "customComment": "Aura on-call, bonus for February.", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6832, "employeeId": 1375, "customDate": "2022-11-21", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9222, "employeeId": 1392, "customDate": "2023-05-15", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7740, "employeeId": 1394, "customDate": "2023-01-23", "customAmount": "150000.00 USD", "customBonusReason": "Sign On", "customComment": "He will receive $75,000 on his first paycheck with a 12 month claw back and $75,000 on his 1 year anniversary with a 12 month clawback", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8329, "employeeId": 1406, "customDate": "2023-02-22", "customAmount": "5000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11228, "employeeId": 1497, "customDate": "2023-10-31", "customAmount": "5000.00 USD", "customBonusReason": "Spot Bonus", "customComment": "CPQ Bonus", "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10366, "employeeId": 1522, "customDate": "2023-08-07", "customAmount": "20000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11524, "employeeId": 1624, "customDate": "2023-12-06", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11562, "employeeId": 1627, "customDate": "2024-01-08", "customAmount": "10000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16040, "employeeId": 1656, "customDate": "2024-02-26", "customAmount": "15000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17276, "employeeId": 1699, "customDate": "2024-04-01", "customAmount": "50000.00 USD", "customBonusReason": "Sign On", "customComment": null, "knoetic_table_name": "customBonus"}, "emitted_at": 1710872587007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 213, "employeeId": 114, "customDate1": "2019-09-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11192, "employeeId": 114, "customDate1": "2023-10-23", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11286, "employeeId": 114, "customDate1": "2023-11-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3653, "employeeId": 116, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4446, "employeeId": 116, "customDate1": "2022-01-01", "customAmount1": "92000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11185, "employeeId": 116, "customDate1": "2023-10-23", "customAmount1": "92000.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3554, "employeeId": 117, "customDate1": "2021-03-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 147, "employeeId": 118, "customDate1": "2019-05-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 148, "employeeId": 118, "customDate1": "2018-04-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 149, "employeeId": 119, "customDate1": "2019-01-01", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 150, "employeeId": 119, "customDate1": "2018-01-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 151, "employeeId": 119, "customDate1": "2016-04-01", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 152, "employeeId": 119, "customDate1": "2012-02-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3010, "employeeId": 119, "customDate1": "2021-04-01", "customAmount1": "220000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 153, "employeeId": 120, "customDate1": "2016-01-01", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 154, "employeeId": 120, "customDate1": "2011-04-04", "customAmount1": "175000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1649, "employeeId": 120, "customDate1": "2020-01-01", "customAmount1": "250000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Per Mike Asher 3/1/2020 Slack message, the Comp Committee approved a $50K increase to Lars 2020 variable plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1937, "employeeId": 120, "customDate1": "2020-05-01", "customAmount1": "1892727.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Transferred from Neo4j Inc to Neo4j AB", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5090, "employeeId": 120, "customDate1": "2022-01-01", "customAmount1": "2500000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5185, "employeeId": 121, "customDate1": "2022-01-01", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Prev variable eff 1/1/22 was $20,000", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11175, "employeeId": 121, "customDate1": null, "customAmount1": null, "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11188, "employeeId": 121, "customDate1": "2023-10-23", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 155, "employeeId": 125, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 156, "employeeId": 125, "customDate1": "2017-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 474, "employeeId": 125, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 50, "employeeId": 126, "customDate1": "2018-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 51, "employeeId": 126, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 52, "employeeId": 126, "customDate1": "2016-04-01", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 53, "employeeId": 126, "customDate1": "2013-11-04", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2748, "employeeId": 126, "customDate1": "2021-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4423, "employeeId": 126, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9023, "employeeId": 126, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 157, "employeeId": 127, "customDate1": "2019-01-01", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 158, "employeeId": 127, "customDate1": "2018-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 159, "employeeId": 127, "customDate1": "2017-07-01", "customAmount1": "22500 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion (increase in base, decrease in variable)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 160, "employeeId": 127, "customDate1": "2017-01-01", "customAmount1": "37500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 161, "employeeId": 127, "customDate1": "2014-02-25", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3148, "employeeId": 127, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3210, "employeeId": 127, "customDate1": "2021-07-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase to Variable Eff. 7/1", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 162, "employeeId": 128, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 163, "employeeId": 128, "customDate1": "2014-03-10", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 453, "employeeId": 128, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 54, "employeeId": 129, "customDate1": "2019-07-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 55, "employeeId": 129, "customDate1": "2017-05-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 56, "employeeId": 129, "customDate1": "2014-10-25", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2728, "employeeId": 129, "customDate1": "2021-01-01", "customAmount1": "24000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 57, "employeeId": 130, "customDate1": "2019-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 58, "employeeId": 130, "customDate1": "2016-01-01", "customAmount1": "31000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 59, "employeeId": 130, "customDate1": "2014-08-18", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3146, "employeeId": 130, "customDate1": "2021-06-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3218, "employeeId": 130, "customDate1": "2021-07-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3596, "employeeId": 131, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 164, "employeeId": 132, "customDate1": "2018-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 165, "employeeId": 132, "customDate1": "2017-01-01", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 166, "employeeId": 132, "customDate1": "2014-12-01", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4429, "employeeId": 132, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 167, "employeeId": 133, "customDate1": "2014-12-08", "customAmount1": "125000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 168, "employeeId": 134, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 169, "employeeId": 134, "customDate1": "2017-03-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 170, "employeeId": 134, "customDate1": "2014-12-15", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4405, "employeeId": 134, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 60, "employeeId": 135, "customDate1": "2019-01-01", "customAmount1": "23000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 61, "employeeId": 135, "customDate1": "2015-04-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 465, "employeeId": 135, "customDate1": "2020-01-01", "customAmount1": "43000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2789, "employeeId": 135, "customDate1": "2021-01-01", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4393, "employeeId": 135, "customDate1": "2022-01-01", "customAmount1": "47840 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8168, "employeeId": 135, "customDate1": "2023-01-01", "customAmount1": "47840.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9052, "employeeId": 135, "customDate1": "2023-01-01", "customAmount1": "48219 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 172, "employeeId": 138, "customDate1": "2016-04-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 173, "employeeId": 138, "customDate1": "2015-05-04", "customAmount1": "12000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1620, "employeeId": 138, "customDate1": "2017-02-16", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Title & Comp Change to align to new team transfer", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2171, "employeeId": 138, "customDate1": "2020-02-16", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Title & Comp Change to align to new team transfer to Bus Dev", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 174, "employeeId": 139, "customDate1": "2019-07-01", "customAmount1": "9200 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 62, "employeeId": 141, "customDate1": "2019-01-01", "customAmount1": "27500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 63, "employeeId": 141, "customDate1": "2015-06-29", "customAmount1": "22500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 466, "employeeId": 141, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2792, "employeeId": 141, "customDate1": "2021-01-01", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4385, "employeeId": 141, "customDate1": "2022-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9053, "employeeId": 141, "customDate1": "2023-01-01", "customAmount1": "49145.37 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 64, "employeeId": 142, "customDate1": "2019-04-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 455, "employeeId": 142, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2752, "employeeId": 142, "customDate1": "2021-01-01", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 65, "employeeId": 143, "customDate1": "2018-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5680, "employeeId": 143, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 175, "employeeId": 145, "customDate1": "2018-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 176, "employeeId": 145, "customDate1": "2015-10-05", "customAmount1": "110000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1599, "employeeId": 145, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 66, "employeeId": 146, "customDate1": "2019-01-01", "customAmount1": "33000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 67, "employeeId": 146, "customDate1": "2015-10-05", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 456, "employeeId": 146, "customDate1": "2020-01-01", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4373, "employeeId": 146, "customDate1": "2022-01-01", "customAmount1": "37440 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 68, "employeeId": 147, "customDate1": "2019-01-01", "customAmount1": "19000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 69, "employeeId": 147, "customDate1": "2017-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 70, "employeeId": 147, "customDate1": "2015-11-02", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 467, "employeeId": 147, "customDate1": "2020-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2741, "employeeId": 147, "customDate1": "2021-01-01", "customAmount1": "22000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4378, "employeeId": 147, "customDate1": "2022-01-01", "customAmount1": "23100 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9037, "employeeId": 147, "customDate1": "2023-01-01", "customAmount1": "23850 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 177, "employeeId": 148, "customDate1": "2019-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 71, "employeeId": 150, "customDate1": "2019-01-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 72, "employeeId": 150, "customDate1": "2018-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 73, "employeeId": 150, "customDate1": "2017-07-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 74, "employeeId": 150, "customDate1": "2016-05-09", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1598, "employeeId": 150, "customDate1": "2020-01-01", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2977, "employeeId": 150, "customDate1": "2021-01-01", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Retro adjustment (1/1/21) for Promotion on 4/1/21", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4415, "employeeId": 150, "customDate1": "2022-01-01", "customAmount1": "225000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9035, "employeeId": 150, "customDate1": "2023-01-01", "customAmount1": "230000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 75, "employeeId": 152, "customDate1": "2019-04-01", "customAmount1": "160000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 76, "employeeId": 152, "customDate1": "2019-01-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 77, "employeeId": 152, "customDate1": "2018-01-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 78, "employeeId": 152, "customDate1": "2016-10-05", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4418, "employeeId": 152, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 79, "employeeId": 153, "customDate1": "2019-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 80, "employeeId": 153, "customDate1": "2016-11-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4419, "employeeId": 153, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9027, "employeeId": 153, "customDate1": "2023-01-01", "customAmount1": "172500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 178, "employeeId": 154, "customDate1": "2019-01-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 179, "employeeId": 154, "customDate1": "2018-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2733, "employeeId": 154, "customDate1": "2021-01-01", "customAmount1": "28000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 180, "employeeId": 155, "customDate1": "2016-12-19", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3130, "employeeId": 155, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4352, "employeeId": 155, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 181, "employeeId": 156, "customDate1": "2019-01-01", "customAmount1": "85000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 182, "employeeId": 156, "customDate1": "2017-01-03", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4410, "employeeId": 156, "customDate1": "2022-01-01", "customAmount1": "88230 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 81, "employeeId": 157, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 82, "employeeId": 157, "customDate1": "2017-01-11", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2408, "employeeId": 157, "customDate1": "2020-10-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6710, "employeeId": 157, "customDate1": "2022-10-17", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 183, "employeeId": 158, "customDate1": "2019-01-01", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 184, "employeeId": 158, "customDate1": "2017-01-17", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3143, "employeeId": 158, "customDate1": "2021-06-07", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4357, "employeeId": 158, "customDate1": "2022-01-01", "customAmount1": "44000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 185, "employeeId": 159, "customDate1": "2019-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 186, "employeeId": 159, "customDate1": "2017-01-25", "customAmount1": "65000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 463, "employeeId": 159, "customDate1": "2020-01-01", "customAmount1": "77000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2793, "employeeId": 159, "customDate1": "2021-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3267, "employeeId": 159, "customDate1": "2021-07-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4430, "employeeId": 159, "customDate1": "2022-01-01", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9013, "employeeId": 159, "customDate1": "2023-01-01", "customAmount1": "110000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16045, "employeeId": 159, "customDate1": "2024-01-01", "customAmount1": "130000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 83, "employeeId": 160, "customDate1": "2017-02-01", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1604, "employeeId": 160, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4416, "employeeId": 160, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9026, "employeeId": 160, "customDate1": "2023-01-01", "customAmount1": "170500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 84, "employeeId": 161, "customDate1": "2017-02-06", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 457, "employeeId": 161, "customDate1": "2020-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 85, "employeeId": 162, "customDate1": "2019-07-01", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2184, "employeeId": 162, "customDate1": "2020-07-01", "customAmount1": "35000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3211, "employeeId": 162, "customDate1": "2017-03-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3264, "employeeId": 162, "customDate1": "2021-07-01", "customAmount1": "41000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 187, "employeeId": 163, "customDate1": "2019-07-01", "customAmount1": "6000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2185, "employeeId": 163, "customDate1": "2020-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2723, "employeeId": 163, "customDate1": "2021-01-01", "customAmount1": "24000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5669, "employeeId": 163, "customDate1": "2021-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 188, "employeeId": 164, "customDate1": "2019-01-01", "customAmount1": "8000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 189, "employeeId": 164, "customDate1": "2017-05-01", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 468, "employeeId": 164, "customDate1": "2020-01-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2740, "employeeId": 164, "customDate1": "2021-01-01", "customAmount1": "12000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4377, "employeeId": 164, "customDate1": "2022-01-01", "customAmount1": "13200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9020, "employeeId": 164, "customDate1": "2023-01-01", "customAmount1": "15600 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 86, "employeeId": 165, "customDate1": "2019-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 87, "employeeId": 165, "customDate1": "2017-05-15", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2722, "employeeId": 165, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2882, "employeeId": 165, "customDate1": "2021-03-01", "customAmount1": "17000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5556, "employeeId": 165, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 190, "employeeId": 166, "customDate1": "2018-06-04", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 191, "employeeId": 167, "customDate1": "2019-06-01", "customAmount1": "90000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 192, "employeeId": 167, "customDate1": "2017-06-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2847, "employeeId": 167, "customDate1": "2021-01-01", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 193, "employeeId": 168, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 194, "employeeId": 168, "customDate1": "2018-06-25", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 88, "employeeId": 169, "customDate1": "2017-07-01", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1603, "employeeId": 169, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 89, "employeeId": 170, "customDate1": "2017-07-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3160, "employeeId": 170, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 90, "employeeId": 171, "customDate1": "2017-07-19", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "new hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 458, "employeeId": 171, "customDate1": "2020-01-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4432, "employeeId": 171, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9015, "employeeId": 171, "customDate1": "2023-01-01", "customAmount1": "141000 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 91, "employeeId": 172, "customDate1": "2017-08-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3145, "employeeId": 172, "customDate1": "2021-06-07", "customAmount1": "150000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4433, "employeeId": 172, "customDate1": "2022-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9028, "employeeId": 172, "customDate1": "2023-01-01", "customAmount1": "174000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 195, "employeeId": 173, "customDate1": "2017-08-24", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3133, "employeeId": 173, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4346, "employeeId": 173, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 196, "employeeId": 174, "customDate1": "2017-08-28", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2734, "employeeId": 174, "customDate1": "2021-01-01", "customAmount1": "32500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4386, "employeeId": 174, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 92, "employeeId": 176, "customDate1": "2019-05-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 93, "employeeId": 176, "customDate1": "2017-09-18", "customAmount1": "32000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1681, "employeeId": 176, "customDate1": "2020-03-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Retention (base, job title, & variable)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9060, "employeeId": 176, "customDate1": "2023-01-01", "customAmount1": "65000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 94, "employeeId": 177, "customDate1": "2017-09-18", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1602, "employeeId": 177, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2754, "employeeId": 177, "customDate1": "2021-01-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4437, "employeeId": 177, "customDate1": "2022-01-01", "customAmount1": "190000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9030, "employeeId": 177, "customDate1": "2023-01-01", "customAmount1": "195000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11283, "employeeId": 177, "customDate1": "2023-11-01", "customAmount1": "220000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 95, "employeeId": 179, "customDate1": "2017-10-23", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 454, "employeeId": 179, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Annual merit increase - base and variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4417, "employeeId": 179, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 96, "employeeId": 180, "customDate1": "2019-01-01", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 97, "employeeId": 180, "customDate1": "2017-10-23", "customAmount1": "55000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3165, "employeeId": 180, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4398, "employeeId": 180, "customDate1": "2022-01-01", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 98, "employeeId": 181, "customDate1": "2017-10-25", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3161, "employeeId": 181, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4397, "employeeId": 181, "customDate1": "2022-01-01", "customAmount1": "90000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 99, "employeeId": 182, "customDate1": "2017-11-06", "customAmount1": "42000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1723, "employeeId": 182, "customDate1": "2020-07-01", "customAmount1": "45000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Merit", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3796, "employeeId": 182, "customDate1": "2021-10-15", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 197, "employeeId": 184, "customDate1": "2017-12-18", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2749, "employeeId": 184, "customDate1": "2021-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3156, "employeeId": 184, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 100, "employeeId": 185, "customDate1": "2017-12-18", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2751, "employeeId": 185, "customDate1": "2021-01-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3154, "employeeId": 185, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 101, "employeeId": 186, "customDate1": "2019-01-01", "customAmount1": "27000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 102, "employeeId": 186, "customDate1": "2018-01-02", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 459, "employeeId": 186, "customDate1": "2020-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2790, "employeeId": 186, "customDate1": "2021-01-01", "customAmount1": "32000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4383, "employeeId": 186, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 103, "employeeId": 187, "customDate1": "2019-04-01", "customAmount1": "23000 USD", "customTargetVariableReason": "MBO", "customComment1": "Transfer from consulting engineer to Account Manager", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 104, "employeeId": 187, "customDate1": "2019-01-01", "customAmount1": "18000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 105, "employeeId": 187, "customDate1": "2018-01-08", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4384, "employeeId": 187, "customDate1": "2022-01-01", "customAmount1": "27500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5288, "employeeId": 187, "customDate1": "2022-08-01", "customAmount1": "21000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 198, "employeeId": 188, "customDate1": "2018-01-22", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1597, "employeeId": 188, "customDate1": "2020-01-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 106, "employeeId": 189, "customDate1": "2018-02-05", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3151, "employeeId": 189, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 199, "employeeId": 190, "customDate1": "2018-02-20", "customAmount1": "200000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3222, "employeeId": 190, "customDate1": "2021-07-01", "customAmount1": "225000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion eff. 7/1", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9036, "employeeId": 190, "customDate1": "2023-01-01", "customAmount1": "230000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 107, "employeeId": 194, "customDate1": "2018-02-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "new hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 464, "employeeId": 194, "customDate1": "2020-01-01", "customAmount1": "39000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3174, "employeeId": 194, "customDate1": "2021-01-01", "customAmount1": "42000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4376, "employeeId": 194, "customDate1": "2022-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9055, "employeeId": 194, "customDate1": "2023-01-01", "customAmount1": "55000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 200, "employeeId": 195, "customDate1": "2018-04-09", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5020, "employeeId": 195, "customDate1": "2022-01-01", "customAmount1": "175000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Initial comp adjustment 165,000 effective 1/1/22. Additional adjustment approved 4/25 to 175,000 retroactive to 1/1/22.", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9029, "employeeId": 195, "customDate1": "2023-01-01", "customAmount1": "180000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 108, "employeeId": 197, "customDate1": "2018-04-30", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2720, "employeeId": 197, "customDate1": "2021-01-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3785, "employeeId": 197, "customDate1": "2021-10-01", "customAmount1": "13000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Base/Variable Adjustment (OTE remaining the same)", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4403, "employeeId": 197, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 109, "employeeId": 198, "customDate1": "2018-05-07", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3166, "employeeId": 198, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3512, "employeeId": 198, "customDate1": "2021-10-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 110, "employeeId": 199, "customDate1": "2019-07-01", "customAmount1": "7000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 111, "employeeId": 199, "customDate1": "2018-05-16", "customAmount1": "6300 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2725, "employeeId": 199, "customDate1": "2021-01-01", "customAmount1": "10700.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4356, "employeeId": 199, "customDate1": "2022-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 201, "employeeId": 200, "customDate1": "2018-05-21", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2721, "employeeId": 200, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4355, "employeeId": 200, "customDate1": "2022-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 202, "employeeId": 201, "customDate1": "2018-06-18", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 112, "employeeId": 202, "customDate1": "2019-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 113, "employeeId": 202, "customDate1": "2018-06-25", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 470, "employeeId": 202, "customDate1": "2020-01-01", "customAmount1": "23000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2732, "employeeId": 202, "customDate1": "2021-01-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4362, "employeeId": 202, "customDate1": "2022-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10311, "employeeId": 202, "customDate1": "2023-08-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 203, "employeeId": 204, "customDate1": "2018-07-09", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 114, "employeeId": 205, "customDate1": "2018-07-16", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5687, "employeeId": 205, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 115, "employeeId": 207, "customDate1": "2018-07-23", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 469, "employeeId": 207, "customDate1": "2020-01-01", "customAmount1": "42800.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4381, "employeeId": 207, "customDate1": "2022-01-01", "customAmount1": "45000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 204, "employeeId": 208, "customDate1": "2018-07-30", "customAmount1": "100000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4944, "employeeId": 208, "customDate1": "2022-01-01", "customAmount1": "110000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10224, "employeeId": 208, "customDate1": "2023-01-01", "customAmount1": "113190.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11178, "employeeId": 208, "customDate1": "2023-10-23", "customAmount1": "113190.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 116, "employeeId": 210, "customDate1": "2018-09-10", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 471, "employeeId": 210, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2801, "employeeId": 210, "customDate1": "2021-01-01", "customAmount1": "19800.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4367, "employeeId": 210, "customDate1": "2022-01-01", "customAmount1": "20493 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 117, "employeeId": 211, "customDate1": "2018-09-20", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 118, "employeeId": 212, "customDate1": "2018-10-15", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 460, "employeeId": 212, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2737, "employeeId": 212, "customDate1": "2021-01-01", "customAmount1": "20700.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4414, "employeeId": 212, "customDate1": "2022-01-01", "customAmount1": "21735 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 119, "employeeId": 213, "customDate1": "2018-10-29", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2750, "employeeId": 213, "customDate1": "2021-01-01", "customAmount1": "110000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3223, "employeeId": 213, "customDate1": "2021-07-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3962, "employeeId": 213, "customDate1": "2021-11-01", "customAmount1": "137500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9016, "employeeId": 213, "customDate1": "2023-01-01", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 120, "employeeId": 214, "customDate1": "2018-11-12", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1601, "employeeId": 214, "customDate1": "2020-01-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2742, "employeeId": 214, "customDate1": "2021-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5019, "employeeId": 214, "customDate1": "2022-01-01", "customAmount1": "162500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Initial comp adjustment 152,500 effective 1/1/22. Additional adjustment approved 4/25 to 162,500 retroactive to 1/1/22.", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 205, "employeeId": 215, "customDate1": "2018-11-27", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 206, "employeeId": 216, "customDate1": "2018-12-03", "customAmount1": "80000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3152, "employeeId": 216, "customDate1": "2021-06-07", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 121, "employeeId": 217, "customDate1": "2019-01-07", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 472, "employeeId": 217, "customDate1": "2020-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2731, "employeeId": 217, "customDate1": "2021-01-01", "customAmount1": "22000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4361, "employeeId": 217, "customDate1": "2022-01-01", "customAmount1": "22880 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 207, "employeeId": 218, "customDate1": "2019-01-07", "customAmount1": "63000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 122, "employeeId": 219, "customDate1": "2019-01-11", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 461, "employeeId": 219, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2794, "employeeId": 219, "customDate1": "2021-01-01", "customAmount1": "19000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4366, "employeeId": 219, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 208, "employeeId": 220, "customDate1": "2019-01-14", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 123, "employeeId": 221, "customDate1": "2019-01-14", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 473, "employeeId": 221, "customDate1": "2020-01-01", "customAmount1": "29000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promo - job title, base, and target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2745, "employeeId": 221, "customDate1": "2021-01-01", "customAmount1": "32500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 124, "employeeId": 223, "customDate1": "2019-01-28", "customAmount1": "145000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 125, "employeeId": 225, "customDate1": "2019-02-04", "customAmount1": "140000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1600, "employeeId": 225, "customDate1": "2020-01-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2798, "employeeId": 225, "customDate1": "2021-01-25", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4422, "employeeId": 225, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 126, "employeeId": 227, "customDate1": "2019-03-18", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2787, "employeeId": 227, "customDate1": "2021-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4391, "employeeId": 227, "customDate1": "2022-01-01", "customAmount1": "19800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9032, "employeeId": 227, "customDate1": "2023-01-01", "customAmount1": "20500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 127, "employeeId": 228, "customDate1": "2019-03-25", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3155, "employeeId": 228, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4401, "employeeId": 228, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 128, "employeeId": 229, "customDate1": "2019-04-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 462, "employeeId": 229, "customDate1": "2020-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Annual merit - base & target variable", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4372, "employeeId": 229, "customDate1": "2022-01-01", "customAmount1": "20700 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 129, "employeeId": 230, "customDate1": "2019-04-08", "customAmount1": "130000 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 130, "employeeId": 232, "customDate1": "2019-04-16", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3168, "employeeId": 232, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4399, "employeeId": 232, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 131, "employeeId": 233, "customDate1": "2019-04-22", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2744, "employeeId": 233, "customDate1": "2021-01-01", "customAmount1": "17500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4364, "employeeId": 233, "customDate1": "2022-01-01", "customAmount1": "18200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 132, "employeeId": 234, "customDate1": "2019-04-29", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3162, "employeeId": 234, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4395, "employeeId": 234, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 133, "employeeId": 235, "customDate1": "2019-04-29", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2803, "employeeId": 235, "customDate1": "2021-01-01", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4370, "employeeId": 235, "customDate1": "2022-01-01", "customAmount1": "20160 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 209, "employeeId": 236, "customDate1": "2019-04-29", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2172, "employeeId": 236, "customDate1": "2020-07-01", "customAmount1": "34000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2719, "employeeId": 236, "customDate1": "2021-01-01", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3294, "employeeId": 236, "customDate1": "2021-07-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 210, "employeeId": 237, "customDate1": "2019-05-01", "customAmount1": "64500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2783, "employeeId": 237, "customDate1": "2021-01-01", "customAmount1": "72500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 134, "employeeId": 238, "customDate1": "2019-05-20", "customAmount1": "25000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 135, "employeeId": 239, "customDate1": "2019-05-20", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 136, "employeeId": 241, "customDate1": "2019-10-04", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2739, "employeeId": 241, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 137, "employeeId": 242, "customDate1": "2019-06-03", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2727, "employeeId": 242, "customDate1": "2021-01-01", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5682, "employeeId": 242, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 138, "employeeId": 243, "customDate1": "2019-06-10", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2738, "employeeId": 243, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4363, "employeeId": 243, "customDate1": "2022-01-01", "customAmount1": "19055 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3213, "employeeId": 245, "customDate1": "2021-07-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 211, "employeeId": 246, "customDate1": "2019-06-24", "customAmount1": "60000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 139, "employeeId": 247, "customDate1": "2019-07-22", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2802, "employeeId": 247, "customDate1": "2021-01-01", "customAmount1": "17000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4368, "employeeId": 247, "customDate1": "2022-01-01", "customAmount1": "18360 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 140, "employeeId": 248, "customDate1": "2019-07-22", "customAmount1": "40000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 212, "employeeId": 249, "customDate1": "2019-07-29", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2785, "employeeId": 249, "customDate1": "2021-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 658, "employeeId": 250, "customDate1": "2020-01-27", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE conversion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4375, "employeeId": 250, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 141, "employeeId": 251, "customDate1": "2019-08-12", "customAmount1": "6000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3219, "employeeId": 251, "customDate1": "2021-07-01", "customAmount1": "8000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 142, "employeeId": 252, "customDate1": "2019-08-19", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2804, "employeeId": 252, "customDate1": "2021-01-01", "customAmount1": "12000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4380, "employeeId": 252, "customDate1": "2022-01-01", "customAmount1": "13200 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9017, "employeeId": 252, "customDate1": "2023-01-01", "customAmount1": "14800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 143, "employeeId": 254, "customDate1": "2019-08-28", "customAmount1": "10000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 144, "employeeId": 255, "customDate1": "2019-09-03", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2730, "employeeId": 255, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4360, "employeeId": 255, "customDate1": "2022-01-01", "customAmount1": "20720 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 145, "employeeId": 256, "customDate1": "2019-09-30", "customAmount1": "13500 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2726, "employeeId": 256, "customDate1": "2021-01-01", "customAmount1": "18500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 146, "employeeId": 257, "customDate1": "2019-10-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2788, "employeeId": 257, "customDate1": "2021-01-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3164, "employeeId": 257, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4400, "employeeId": 257, "customDate1": "2022-01-01", "customAmount1": "80000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 214, "employeeId": 258, "customDate1": "2019-10-14", "customAmount1": "5000 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2743, "employeeId": 258, "customDate1": "2021-01-01", "customAmount1": "8000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3609, "employeeId": 260, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2412, "employeeId": 261, "customDate1": "2020-07-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4948, "employeeId": 261, "customDate1": "2022-01-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No Variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11191, "employeeId": 261, "customDate1": "2023-10-23", "customAmount1": "41000.00 GBP", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11290, "employeeId": 261, "customDate1": "2023-10-01", "customAmount1": "41000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 24, "employeeId": 262, "customDate1": "2018-01-01", "customAmount1": "10000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2687, "employeeId": 262, "customDate1": "2021-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8944, "employeeId": 262, "customDate1": "2023-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2848, "employeeId": 263, "customDate1": "2021-01-01", "customAmount1": "492000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5135, "employeeId": 263, "customDate1": "2022-01-01", "customAmount1": "738400.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10420, "employeeId": 263, "customDate1": "2023-01-01", "customAmount1": "777615.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11182, "employeeId": 263, "customDate1": "2023-10-23", "customAmount1": "777615.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3655, "employeeId": 264, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 20, "employeeId": 265, "customDate1": "2019-01-01", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 383, "employeeId": 265, "customDate1": "2012-07-03", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 384, "employeeId": 265, "customDate1": "2017-01-01", "customAmount1": "69500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 413, "employeeId": 265, "customDate1": "2020-01-01", "customAmount1": "94300.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4477, "employeeId": 265, "customDate1": "2022-01-01", "customAmount1": "110000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6, "employeeId": 266, "customDate1": "2019-01-01", "customAmount1": "18000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 366, "employeeId": 266, "customDate1": "2018-01-01", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 420, "employeeId": 266, "customDate1": "2020-01-01", "customAmount1": "23000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10064, "employeeId": 266, "customDate1": "2021-03-07", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 47, "employeeId": 267, "customDate1": "2018-01-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2437, "employeeId": 267, "customDate1": "2016-01-01", "customAmount1": "129250.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2438, "employeeId": 267, "customDate1": "2012-08-01", "customAmount1": "117500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4483, "employeeId": 267, "customDate1": "2022-01-01", "customAmount1": "170000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3563, "employeeId": 268, "customDate1": "2021-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3754, "employeeId": 269, "customDate1": "2019-01-01", "customAmount1": "0.00 DKK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3753, "employeeId": 273, "customDate1": "2021-01-01", "customAmount1": "0.00 DKK", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4949, "employeeId": 273, "customDate1": "2022-01-01", "customAmount1": "324852.00 DKK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10309, "employeeId": 273, "customDate1": "2023-01-01", "customAmount1": "354738.38 DKK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11190, "employeeId": 273, "customDate1": "2023-10-23", "customAmount1": "354738.38 DKK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 37, "employeeId": 274, "customDate1": "2019-05-01", "customAmount1": "25000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1557, "employeeId": 274, "customDate1": "2017-05-01", "customAmount1": "21000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2591, "employeeId": 274, "customDate1": "2020-01-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2682, "employeeId": 274, "customDate1": "2021-01-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 33, "employeeId": 275, "customDate1": "2016-01-01", "customAmount1": "50000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Paid quarterly based on comp plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12, "employeeId": 276, "customDate1": "2018-01-01", "customAmount1": "100000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 378, "employeeId": 276, "customDate1": "2014-05-19", "customAmount1": "95000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 22, "employeeId": 277, "customDate1": "2014-05-19", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 19, "employeeId": 278, "customDate1": "2016-10-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Paid quarterly.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2683, "employeeId": 278, "customDate1": "2021-01-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3296, "employeeId": 278, "customDate1": "2021-11-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role and salary", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3633, "employeeId": 280, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3687, "employeeId": 281, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3749, "employeeId": 283, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3730, "employeeId": 286, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 48, "employeeId": 287, "customDate1": "2019-01-01", "customAmount1": "28000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 421, "employeeId": 287, "customDate1": "2020-01-01", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1580, "employeeId": 287, "customDate1": "2017-07-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Moved to MBO plan and no long on a comp plan.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1581, "employeeId": 287, "customDate1": "2017-01-01", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3121, "employeeId": 287, "customDate1": "2021-06-07", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3320, "employeeId": 287, "customDate1": "2021-07-01", "customAmount1": "30500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8954, "employeeId": 287, "customDate1": "2023-01-01", "customAmount1": "31110 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8, "employeeId": 288, "customDate1": "2019-07-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 371, "employeeId": 288, "customDate1": "2015-01-01", "customAmount1": "75000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 372, "employeeId": 288, "customDate1": "2017-01-01", "customAmount1": "82500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 373, "employeeId": 288, "customDate1": "2019-01-01", "customAmount1": "85000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2627, "employeeId": 288, "customDate1": "2018-01-01", "customAmount1": "82500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable/base change. Only adding 5K Stock", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 28, "employeeId": 289, "customDate1": "2018-01-01", "customAmount1": "80000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 422, "employeeId": 289, "customDate1": "2020-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 482, "employeeId": 289, "customDate1": "2017-07-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Promotion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 483, "employeeId": 289, "customDate1": "2015-01-01", "customAmount1": "68000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 484, "employeeId": 289, "customDate1": "2017-01-01", "customAmount1": "70340.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "Annually paid out in four installments.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3110, "employeeId": 289, "customDate1": "2021-06-07", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3226, "employeeId": 289, "customDate1": "2021-07-01", "customAmount1": "110000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4481, "employeeId": 289, "customDate1": "2022-01-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8949, "employeeId": 289, "customDate1": "2023-01-01", "customAmount1": "146000 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 46, "employeeId": 290, "customDate1": "2018-01-01", "customAmount1": "108000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 414, "employeeId": 290, "customDate1": "2020-01-01", "customAmount1": "118000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1577, "employeeId": 290, "customDate1": "2015-01-07", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3256, "employeeId": 290, "customDate1": "2021-07-01", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4476, "employeeId": 290, "customDate1": "2022-01-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3725, "employeeId": 291, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 385, "employeeId": 292, "customDate1": "2015-05-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 386, "employeeId": 292, "customDate1": "2017-07-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 387, "employeeId": 292, "customDate1": "2018-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1611, "employeeId": 292, "customDate1": "2019-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role and salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3597, "employeeId": 293, "customDate1": "2021-02-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3676, "employeeId": 294, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7, "employeeId": 295, "customDate1": "2017-01-01", "customAmount1": "14500 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 365, "employeeId": 295, "customDate1": "2020-01-01", "customAmount1": "32500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 367, "employeeId": 295, "customDate1": "2015-07-01", "customAmount1": "14000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2639, "employeeId": 295, "customDate1": "2021-01-01", "customAmount1": "66000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Retention", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3099, "employeeId": 295, "customDate1": "2021-06-07", "customAmount1": "66000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4456, "employeeId": 295, "customDate1": "2022-01-01", "customAmount1": "73500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4642, "employeeId": 295, "customDate1": "2022-03-01", "customAmount1": "77500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17, "employeeId": 296, "customDate1": "2016-10-01", "customAmount1": "2500 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2684, "employeeId": 296, "customDate1": "2021-01-01", "customAmount1": "2500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5648, "employeeId": 296, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3698, "employeeId": 297, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3763, "employeeId": 298, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3710, "employeeId": 299, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 27, "employeeId": 300, "customDate1": "2015-10-01", "customAmount1": "720000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 476, "employeeId": 300, "customDate1": "2018-01-01", "customAmount1": "820000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2690, "employeeId": 300, "customDate1": "2021-01-01", "customAmount1": "900000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3212, "employeeId": 300, "customDate1": "2021-07-01", "customAmount1": "990000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4473, "employeeId": 300, "customDate1": "2022-01-01", "customAmount1": "1300000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3649, "employeeId": 301, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3771, "employeeId": 302, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3582, "employeeId": 304, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 26, "employeeId": 305, "customDate1": "2019-01-01", "customAmount1": "13000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 418, "employeeId": 305, "customDate1": "2020-01-01", "customAmount1": "15500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 441, "employeeId": 305, "customDate1": "2016-03-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 442, "employeeId": 305, "customDate1": "2018-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3321, "employeeId": 305, "customDate1": "2021-07-01", "customAmount1": "15500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3713, "employeeId": 307, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 32, "employeeId": 309, "customDate1": "2019-07-01", "customAmount1": "140000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 417, "employeeId": 309, "customDate1": "2020-01-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1372, "employeeId": 309, "customDate1": "2016-10-03", "customAmount1": "120000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3225, "employeeId": 309, "customDate1": "2021-07-01", "customAmount1": "160000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4479, "employeeId": 309, "customDate1": "2022-01-01", "customAmount1": "190000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3719, "employeeId": 310, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3746, "employeeId": 311, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 34, "employeeId": 312, "customDate1": "2016-12-05", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 428, "employeeId": 312, "customDate1": "2020-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2691, "employeeId": 312, "customDate1": "2021-01-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4452, "employeeId": 312, "customDate1": "2022-01-01", "customAmount1": "25000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8984, "employeeId": 312, "customDate1": "2023-01-01", "customAmount1": "26000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3665, "employeeId": 313, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3701, "employeeId": 314, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 423, "employeeId": 315, "customDate1": "2020-01-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3119, "employeeId": 315, "customDate1": "2021-06-07", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3552, "employeeId": 316, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3715, "employeeId": 317, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3703, "employeeId": 318, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3750, "employeeId": 319, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 424, "employeeId": 320, "customDate1": "2020-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3106, "employeeId": 320, "customDate1": "2021-06-07", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3319, "employeeId": 320, "customDate1": "2021-07-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3667, "employeeId": 321, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 41, "employeeId": 322, "customDate1": "2019-01-01", "customAmount1": "55000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 416, "employeeId": 322, "customDate1": "2020-01-01", "customAmount1": "60500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1564, "employeeId": 322, "customDate1": "2017-05-01", "customAmount1": "50000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2587, "employeeId": 322, "customDate1": "2021-01-01", "customAmount1": "59400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3220, "employeeId": 322, "customDate1": "2021-07-01", "customAmount1": "49500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Re-balancing base/Variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4467, "employeeId": 322, "customDate1": "2022-01-01", "customAmount1": "53213.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8990, "employeeId": 322, "customDate1": "2023-01-01", "customAmount1": "57000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10, "employeeId": 323, "customDate1": "2019-10-01", "customAmount1": "30000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 377, "employeeId": 323, "customDate1": "2017-05-08", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3656, "employeeId": 324, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3714, "employeeId": 326, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3663, "employeeId": 327, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3702, "employeeId": 328, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14, "employeeId": 329, "customDate1": "2019-01-01", "customAmount1": "8000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 379, "employeeId": 329, "customDate1": "2017-07-15", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 419, "employeeId": 329, "customDate1": "2020-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1623, "employeeId": 329, "customDate1": "2020-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new role", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3631, "employeeId": 330, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3684, "employeeId": 331, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3705, "employeeId": 332, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 489, "employeeId": 333, "customDate1": "2017-08-01", "customAmount1": "12600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 490, "employeeId": 333, "customDate1": "2019-01-01", "customAmount1": "20600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 491, "employeeId": 333, "customDate1": "2019-10-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "New role, Variable changed", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2688, "employeeId": 333, "customDate1": "2021-01-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2689, "employeeId": 333, "customDate1": "2020-07-01", "customAmount1": "10600.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3664, "employeeId": 334, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3640, "employeeId": 335, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 44, "employeeId": 336, "customDate1": "2017-08-21", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2681, "employeeId": 336, "customDate1": "2021-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3038, "employeeId": 336, "customDate1": "2021-07-01", "customAmount1": "40000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3118, "employeeId": 336, "customDate1": "2021-06-07", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5575, "employeeId": 336, "customDate1": "2022-07-01", "customAmount1": "60000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8992, "employeeId": 336, "customDate1": "2023-01-01", "customAmount1": "67500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10242, "employeeId": 336, "customDate1": "2023-07-01", "customAmount1": "77500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3736, "employeeId": 337, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3685, "employeeId": 339, "customDate1": "2020-12-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 31, "employeeId": 340, "customDate1": "2019-01-01", "customAmount1": "6000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 429, "employeeId": 340, "customDate1": "2020-01-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1563, "employeeId": 340, "customDate1": "2017-09-05", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2692, "employeeId": 340, "customDate1": "2021-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8969, "employeeId": 340, "customDate1": "2023-01-01", "customAmount1": "11800 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 18, "employeeId": 341, "customDate1": "2019-01-01", "customAmount1": "25400 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 380, "employeeId": 341, "customDate1": "2017-09-18", "customAmount1": "21400.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 425, "employeeId": 341, "customDate1": "2020-01-01", "customAmount1": "28400.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3103, "employeeId": 341, "customDate1": "2021-06-07", "customAmount1": "28400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4453, "employeeId": 341, "customDate1": "2022-01-01", "customAmount1": "33400.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3629, "employeeId": 342, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1721, "employeeId": 343, "customDate1": "2020-01-01", "customAmount1": "104000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3186, "employeeId": 343, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "Variable removed, incorporated in salary instead.", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4480, "employeeId": 343, "customDate1": "2022-01-01", "customAmount1": "200000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11179, "employeeId": 343, "customDate1": "2023-10-23", "customAmount1": "200000.00 SEK", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3752, "employeeId": 346, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3610, "employeeId": 347, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11, "employeeId": 348, "customDate1": "2019-01-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 426, "employeeId": 348, "customDate1": "2020-01-01", "customAmount1": "12000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2693, "employeeId": 348, "customDate1": "2021-01-01", "customAmount1": "17000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 30, "employeeId": 349, "customDate1": "2018-05-07", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4, "employeeId": 350, "customDate1": "2018-05-14", "customAmount1": "80000 SEK", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3758, "employeeId": 351, "customDate1": "2021-08-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3747, "employeeId": 352, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3668, "employeeId": 353, "customDate1": "2018-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8234, "employeeId": 353, "customDate1": "2022-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3733, "employeeId": 354, "customDate1": "2021-07-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3659, "employeeId": 355, "customDate1": "2021-08-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 427, "employeeId": 356, "customDate1": "2020-01-01", "customAmount1": "100000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2694, "employeeId": 356, "customDate1": "2021-01-01", "customAmount1": "127000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4447, "employeeId": 356, "customDate1": "2022-01-01", "customAmount1": "130810.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5, "employeeId": 357, "customDate1": "2018-09-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2695, "employeeId": 357, "customDate1": "2021-01-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4460, "employeeId": 357, "customDate1": "2022-01-01", "customAmount1": "70000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change, only base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3764, "employeeId": 358, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3561, "employeeId": 359, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3, "employeeId": 360, "customDate1": "2018-09-24", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3680, "employeeId": 361, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3707, "employeeId": 362, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3722, "employeeId": 363, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3654, "employeeId": 365, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3712, "employeeId": 366, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 43, "employeeId": 367, "customDate1": "2018-11-27", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3547, "employeeId": 367, "customDate1": "2021-11-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3678, "employeeId": 368, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3740, "employeeId": 369, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 25, "employeeId": 370, "customDate1": "2019-01-07", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2685, "employeeId": 370, "customDate1": "2021-01-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2941, "employeeId": 370, "customDate1": "2021-04-01", "customAmount1": "24000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8983, "employeeId": 370, "customDate1": "2023-01-01", "customAmount1": "25440 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3585, "employeeId": 371, "customDate1": "2019-01-14", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3652, "employeeId": 372, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3732, "employeeId": 373, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3559, "employeeId": 374, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3955, "employeeId": 374, "customDate1": "2021-12-29", "customAmount1": "0.00 AUD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3729, "employeeId": 375, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 38, "employeeId": 376, "customDate1": "2019-02-01", "customAmount1": "92000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3257, "employeeId": 376, "customDate1": "2021-07-01", "customAmount1": "105000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 42, "employeeId": 378, "customDate1": "2019-02-11", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3117, "employeeId": 378, "customDate1": "2021-06-07", "customAmount1": "15000 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 35, "employeeId": 379, "customDate1": "2019-02-18", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2696, "employeeId": 380, "customDate1": "2021-01-01", "customAmount1": "48100.00 ILS", "customTargetVariableReason": "MBO", "customComment1": "Added variable", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3100, "employeeId": 380, "customDate1": "2021-06-07", "customAmount1": "48100.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4454, "employeeId": 380, "customDate1": "2022-01-01", "customAmount1": "80100.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3601, "employeeId": 381, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7731, "employeeId": 381, "customDate1": "2023-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 49, "employeeId": 382, "customDate1": "2019-05-01", "customAmount1": "427540.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 485, "employeeId": 382, "customDate1": "2019-03-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4470, "employeeId": 382, "customDate1": "2022-01-01", "customAmount1": "470294.00 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8996, "employeeId": 382, "customDate1": "2023-01-01", "customAmount1": "484402.82 ILS", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3645, "employeeId": 383, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3573, "employeeId": 384, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3604, "employeeId": 385, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3671, "employeeId": 386, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 23, "employeeId": 387, "customDate1": "2019-04-08", "customAmount1": "5000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3724, "employeeId": 388, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3669, "employeeId": 389, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15, "employeeId": 391, "customDate1": "2019-05-07", "customAmount1": "40000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2717, "employeeId": 391, "customDate1": "2021-01-01", "customAmount1": "35000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Modification to 70/30 base/commission split", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4469, "employeeId": 391, "customDate1": "2022-01-01", "customAmount1": "37625.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8986, "employeeId": 391, "customDate1": "2023-01-01", "customAmount1": "39521 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3556, "employeeId": 392, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9, "employeeId": 393, "customDate1": "2019-05-13", "customAmount1": "19000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4637, "employeeId": 393, "customDate1": "2022-03-01", "customAmount1": "30000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8939, "employeeId": 393, "customDate1": "2023-01-01", "customAmount1": "36000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3577, "employeeId": 395, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3608, "employeeId": 396, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3647, "employeeId": 398, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 36, "employeeId": 399, "customDate1": "2019-07-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4462, "employeeId": 399, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8945, "employeeId": 399, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3741, "employeeId": 400, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3711, "employeeId": 401, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 39, "employeeId": 402, "customDate1": "2019-09-01", "customAmount1": "20000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2697, "employeeId": 402, "customDate1": "2021-01-01", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3115, "employeeId": 402, "customDate1": "2021-06-07", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4455, "employeeId": 402, "customDate1": "2022-01-01", "customAmount1": "34500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3571, "employeeId": 403, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 40, "employeeId": 405, "customDate1": "2019-09-09", "customAmount1": "15000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2735, "employeeId": 405, "customDate1": "2021-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3116, "employeeId": 405, "customDate1": "2021-06-07", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5290, "employeeId": 405, "customDate1": "2022-07-01", "customAmount1": "23800.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Relocating to Spain", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8953, "employeeId": 405, "customDate1": "2023-01-01", "customAmount1": "24514 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13, "employeeId": 406, "customDate1": "2019-10-01", "customAmount1": "90000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2698, "employeeId": 406, "customDate1": "2021-01-01", "customAmount1": "90000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4471, "employeeId": 406, "customDate1": "2022-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5414, "employeeId": 408, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3682, "employeeId": 409, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3699, "employeeId": 410, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3643, "employeeId": 411, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5779, "employeeId": 412, "customDate1": "2022-11-14", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 45, "employeeId": 413, "customDate1": "2019-10-14", "customAmount1": "10000 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2699, "employeeId": 413, "customDate1": "2021-01-01", "customAmount1": "11000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4465, "employeeId": 413, "customDate1": "2022-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new base salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3662, "employeeId": 414, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 21, "employeeId": 415, "customDate1": "2019-11-01", "customAmount1": "15000 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3105, "employeeId": 415, "customDate1": "2021-06-07", "customAmount1": "15000 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3745, "employeeId": 416, "customDate1": "2020-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3624, "employeeId": 418, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3661, "employeeId": 421, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1901, "employeeId": 452, "customDate1": "2017-05-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1540, "employeeId": 499, "customDate1": "2020-02-03", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2747, "employeeId": 499, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3551, "employeeId": 533, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3737, "employeeId": 546, "customDate1": "2021-09-06", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3626, "employeeId": 569, "customDate1": "2020-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3688, "employeeId": 570, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16, "employeeId": 572, "customDate1": "2019-11-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2701, "employeeId": 572, "customDate1": "2021-01-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4464, "employeeId": 572, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8946, "employeeId": 572, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1565, "employeeId": 573, "customDate1": "2019-10-21", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2700, "employeeId": 573, "customDate1": "2021-01-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5639, "employeeId": 573, "customDate1": "2022-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8970, "employeeId": 573, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3681, "employeeId": 574, "customDate1": "2021-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3658, "employeeId": 575, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3768, "employeeId": 576, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3670, "employeeId": 577, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3696, "employeeId": 578, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1662, "employeeId": 580, "customDate1": "2019-11-18", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4431, "employeeId": 580, "customDate1": "2022-01-01", "customAmount1": "120000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9014, "employeeId": 580, "customDate1": "2023-01-01", "customAmount1": "121500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10026, "employeeId": 580, "customDate1": "2023-07-01", "customAmount1": "125000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 659, "employeeId": 581, "customDate1": "2019-10-29", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 364, "employeeId": 582, "customDate1": "2019-10-21", "customAmount1": "37500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3253, "employeeId": 582, "customDate1": "2021-07-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 390, "employeeId": 583, "customDate1": "2019-11-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2620, "employeeId": 583, "customDate1": "2020-12-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "No target variable", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3634, "employeeId": 587, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3973, "employeeId": 587, "customDate1": "2021-12-16", "customAmount1": "35000.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Transfer from UK to Canada", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8359, "employeeId": 587, "customDate1": "2022-12-01", "customAmount1": "0.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Moved variable into base", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 430, "employeeId": 588, "customDate1": "2020-01-13", "customAmount1": "87500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4478, "employeeId": 588, "customDate1": "2022-01-01", "customAmount1": "100000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 432, "employeeId": 589, "customDate1": "2019-11-11", "customAmount1": "130000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 434, "employeeId": 591, "customDate1": "2020-01-21", "customAmount1": "130000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 435, "employeeId": 592, "customDate1": "2020-01-13", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Your first 2 quota carrying quarters are considered ramping quarters. For these quarters you will have a cap of 150% and floor of 50% for your variable payout. All bookings will be paid at the standard base payout rate.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4428, "employeeId": 592, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5615, "employeeId": 592, "customDate1": "2022-07-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Comp Adj 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9024, "employeeId": 592, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 436, "employeeId": 593, "customDate1": "2020-01-13", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 437, "employeeId": 594, "customDate1": "2020-01-13", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3171, "employeeId": 594, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 438, "employeeId": 595, "customDate1": "2020-01-07", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9031, "employeeId": 595, "customDate1": "2023-01-01", "customAmount1": "196000 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 448, "employeeId": 599, "customDate1": "2019-12-09", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3169, "employeeId": 599, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4396, "employeeId": 599, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9063, "employeeId": 599, "customDate1": "2023-01-01", "customAmount1": "75000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 451, "employeeId": 601, "customDate1": "2019-12-30", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "New Hire", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3150, "employeeId": 601, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3673, "employeeId": 602, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 475, "employeeId": 603, "customDate1": "2019-12-12", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2702, "employeeId": 603, "customDate1": "2021-01-01", "customAmount1": "13000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4451, "employeeId": 603, "customDate1": "2022-01-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8980, "employeeId": 603, "customDate1": "2023-01-01", "customAmount1": "22500 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3717, "employeeId": 604, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3720, "employeeId": 605, "customDate1": "2021-05-03", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 477, "employeeId": 606, "customDate1": "2020-02-01", "customAmount1": "720000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4474, "employeeId": 606, "customDate1": "2022-01-01", "customAmount1": "900000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 478, "employeeId": 607, "customDate1": "2020-02-01", "customAmount1": "168000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3111, "employeeId": 607, "customDate1": "2021-06-07", "customAmount1": "168000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3258, "employeeId": 607, "customDate1": "2021-07-01", "customAmount1": "250000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 479, "employeeId": 608, "customDate1": "2020-03-01", "customAmount1": "110000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3574, "employeeId": 609, "customDate1": "2020-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3742, "employeeId": 610, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3557, "employeeId": 611, "customDate1": "2021-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3765, "employeeId": 613, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 480, "employeeId": 614, "customDate1": "2020-01-20", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3144, "employeeId": 614, "customDate1": "2021-06-07", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 492, "employeeId": 615, "customDate1": "2020-01-27", "customAmount1": "46500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2753, "employeeId": 615, "customDate1": "2021-01-01", "customAmount1": "56500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4411, "employeeId": 615, "customDate1": "2022-01-01", "customAmount1": "60625 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9056, "employeeId": 615, "customDate1": "2023-01-01", "customAmount1": "57903 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1075, "employeeId": 616, "customDate1": "2020-02-03", "customAmount1": "54000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3216, "employeeId": 616, "customDate1": "2021-07-01", "customAmount1": "55620.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9058, "employeeId": 616, "customDate1": "2023-01-01", "customAmount1": "58500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1076, "employeeId": 617, "customDate1": "2020-02-03", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1077, "employeeId": 618, "customDate1": "2020-02-03", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3227, "employeeId": 618, "customDate1": "2021-07-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4413, "employeeId": 618, "customDate1": "2022-01-01", "customAmount1": "157500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9022, "employeeId": 618, "customDate1": "2023-01-01", "customAmount1": "162500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1078, "employeeId": 619, "customDate1": "2020-02-24", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2791, "employeeId": 619, "customDate1": "2021-01-01", "customAmount1": "53000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4390, "employeeId": 619, "customDate1": "2022-01-01", "customAmount1": "57240 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9059, "employeeId": 619, "customDate1": "2023-01-01", "customAmount1": "60674.4 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1537, "employeeId": 620, "customDate1": "2020-02-10", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5661, "employeeId": 620, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1538, "employeeId": 621, "customDate1": "2020-02-24", "customAmount1": "55500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4409, "employeeId": 621, "customDate1": "2022-01-01", "customAmount1": "59552 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1542, "employeeId": 622, "customDate1": "2020-02-24", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2746, "employeeId": 622, "customDate1": "2021-01-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9054, "employeeId": 622, "customDate1": "2023-01-01", "customAmount1": "50000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1548, "employeeId": 625, "customDate1": "2020-01-02", "customAmount1": "700000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2800, "employeeId": 625, "customDate1": "2021-01-01", "customAmount1": "765000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4374, "employeeId": 625, "customDate1": "2022-01-01", "customAmount1": "879750 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1550, "employeeId": 626, "customDate1": "2020-01-06", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2619, "employeeId": 626, "customDate1": "2021-01-01", "customAmount1": "202000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": "updating salary and variable from USD to AUD per new change order.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4436, "employeeId": 626, "customDate1": "2022-01-01", "customAmount1": "265000 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1619, "employeeId": 627, "customDate1": "2020-01-01", "customAmount1": "15000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2799, "employeeId": 627, "customDate1": "2021-01-01", "customAmount1": "65000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3262, "employeeId": 627, "customDate1": "2021-07-01", "customAmount1": "95000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1554, "employeeId": 629, "customDate1": "2017-01-10", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1605, "employeeId": 629, "customDate1": "2020-01-01", "customAmount1": "35000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1606, "employeeId": 629, "customDate1": "2019-01-01", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2786, "employeeId": 629, "customDate1": "2021-01-01", "customAmount1": "37500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4389, "employeeId": 629, "customDate1": "2022-01-01", "customAmount1": "45000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5553, "employeeId": 629, "customDate1": "2022-07-01", "customAmount1": "56250.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Conversion/ Relo from FTE to Contractor", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8943, "employeeId": 629, "customDate1": "2023-01-01", "customAmount1": "59296 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1568, "employeeId": 633, "customDate1": "2020-03-02", "customAmount1": "55500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3215, "employeeId": 633, "customDate1": "2021-07-01", "customAmount1": "57165.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9057, "employeeId": 633, "customDate1": "2023-01-01", "customAmount1": "58000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1571, "employeeId": 634, "customDate1": "2020-04-01", "customAmount1": "147000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4475, "employeeId": 634, "customDate1": "2022-01-01", "customAmount1": "152500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3642, "employeeId": 635, "customDate1": "2021-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1574, "employeeId": 636, "customDate1": "2020-03-02", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2992, "employeeId": 636, "customDate1": "2021-05-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4448, "employeeId": 636, "customDate1": "2022-01-01", "customAmount1": "22000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8981, "employeeId": 636, "customDate1": "2023-01-01", "customAmount1": "23500 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1576, "employeeId": 637, "customDate1": "2020-03-02", "customAmount1": "35000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3221, "employeeId": 637, "customDate1": "2021-07-01", "customAmount1": "36750.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8987, "employeeId": 637, "customDate1": "2023-01-01", "customAmount1": "40935 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1583, "employeeId": 638, "customDate1": "2020-02-24", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4371, "employeeId": 638, "customDate1": "2022-01-01", "customAmount1": "15500 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1585, "employeeId": 639, "customDate1": "2020-03-02", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3129, "employeeId": 639, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3378, "employeeId": 639, "customDate1": "2021-09-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4031, "employeeId": 639, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion Eff. 1/1/22 to Corporate Account Executive", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9062, "employeeId": 639, "customDate1": "2023-01-01", "customAmount1": "72500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1610, "employeeId": 640, "customDate1": "2020-03-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1664, "employeeId": 642, "customDate1": "2020-04-20", "customAmount1": "12500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1666, "employeeId": 643, "customDate1": "2020-03-16", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3738, "employeeId": 644, "customDate1": "2021-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3637, "employeeId": 645, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3594, "employeeId": 646, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3636, "employeeId": 647, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3599, "employeeId": 648, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1941, "employeeId": 649, "customDate1": "2020-04-01", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4461, "employeeId": 649, "customDate1": "2022-01-01", "customAmount1": "8700.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3679, "employeeId": 650, "customDate1": "2020-05-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1678, "employeeId": 651, "customDate1": "2020-03-23", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2485, "employeeId": 651, "customDate1": "2020-10-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3131, "employeeId": 651, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4358, "employeeId": 651, "customDate1": "2022-01-01", "customAmount1": "34000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1680, "employeeId": 652, "customDate1": "2020-03-23", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3134, "employeeId": 652, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4347, "employeeId": 652, "customDate1": "2022-01-01", "customAmount1": "28000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1683, "employeeId": 653, "customDate1": "2020-09-01", "customAmount1": "127500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4482, "employeeId": 653, "customDate1": "2022-01-01", "customAmount1": "150000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8973, "employeeId": 653, "customDate1": "2023-01-01", "customAmount1": "159750 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1688, "employeeId": 655, "customDate1": "2020-04-06", "customAmount1": "129000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1690, "employeeId": 656, "customDate1": "2020-04-06", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3147, "employeeId": 656, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3731, "employeeId": 658, "customDate1": "2020-05-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3639, "employeeId": 659, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3598, "employeeId": 662, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1709, "employeeId": 663, "customDate1": "2020-05-18", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2686, "employeeId": 663, "customDate1": "2021-01-01", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "No variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3112, "employeeId": 663, "customDate1": "2021-06-07", "customAmount1": "48000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4445, "employeeId": 663, "customDate1": "2022-01-01", "customAmount1": "52000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1719, "employeeId": 665, "customDate1": "2020-04-20", "customAmount1": "40000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3261, "employeeId": 665, "customDate1": "2021-07-01", "customAmount1": "70000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1725, "employeeId": 667, "customDate1": "2020-04-27", "customAmount1": "90000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": "90,000 RMB ($12,741 per year)\nVariable component with taxes: $17,072", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3657, "employeeId": 668, "customDate1": "2021-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2967, "employeeId": 669, "customDate1": "2021-06-09", "customAmount1": "10500.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5676, "employeeId": 669, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1903, "employeeId": 670, "customDate1": "2020-06-08", "customAmount1": "23000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4450, "employeeId": 670, "customDate1": "2022-01-01", "customAmount1": "25000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3592, "employeeId": 671, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17211, "employeeId": 671, "customDate1": "2024-05-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1921, "employeeId": 672, "customDate1": "2020-06-08", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3153, "employeeId": 672, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3217, "employeeId": 672, "customDate1": "2021-07-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Increase eff. 7/1", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4402, "employeeId": 672, "customDate1": "2022-01-01", "customAmount1": "70000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3723, "employeeId": 674, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1933, "employeeId": 676, "customDate1": "2020-07-06", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3761, "employeeId": 677, "customDate1": "2021-08-23", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5163, "employeeId": 677, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3568, "employeeId": 678, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3660, "employeeId": 679, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3674, "employeeId": 681, "customDate1": "2021-01-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1959, "employeeId": 682, "customDate1": "2020-07-06", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3214, "employeeId": 682, "customDate1": "2021-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5673, "employeeId": 682, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3675, "employeeId": 684, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1942, "employeeId": 685, "customDate1": "2020-08-03", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4449, "employeeId": 685, "customDate1": "2022-01-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8964, "employeeId": 685, "customDate1": "2023-01-01", "customAmount1": "11000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1972, "employeeId": 686, "customDate1": "2020-08-01", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2540, "employeeId": 686, "customDate1": "2020-12-01", "customAmount1": "3000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3379, "employeeId": 686, "customDate1": "2021-10-28", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3672, "employeeId": 687, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1966, "employeeId": 688, "customDate1": "2020-07-20", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1961, "employeeId": 689, "customDate1": "2020-07-13", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1964, "employeeId": 691, "customDate1": "2020-07-13", "customAmount1": "17500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4749, "employeeId": 691, "customDate1": "2022-01-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5664, "employeeId": 691, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1974, "employeeId": 693, "customDate1": "2020-09-15", "customAmount1": "13400.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3581, "employeeId": 694, "customDate1": "2020-07-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1977, "employeeId": 695, "customDate1": "2020-08-03", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4426, "employeeId": 695, "customDate1": "2022-01-01", "customAmount1": "157500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2175, "employeeId": 696, "customDate1": "2020-10-01", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3109, "employeeId": 696, "customDate1": "2021-06-07", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4457, "employeeId": 696, "customDate1": "2022-01-01", "customAmount1": "29500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3739, "employeeId": 697, "customDate1": "2021-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2181, "employeeId": 698, "customDate1": "2020-09-02", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3104, "employeeId": 698, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3322, "employeeId": 698, "customDate1": "2021-07-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "no variable change", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4444, "employeeId": 698, "customDate1": "2022-01-01", "customAmount1": "17000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8977, "employeeId": 698, "customDate1": "2023-01-01", "customAmount1": "17850 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2177, "employeeId": 699, "customDate1": "2020-08-24", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3167, "employeeId": 699, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9061, "employeeId": 699, "customDate1": "2023-01-01", "customAmount1": "65000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2401, "employeeId": 700, "customDate1": "2020-09-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per month for the first 4 months (remainder of this year) during the 2020 plan year.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9018, "employeeId": 700, "customDate1": "2023-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2400, "employeeId": 701, "customDate1": "2020-09-01", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per month for the first 4 months (remainder of this year) during the 2020 plan year.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3562, "employeeId": 702, "customDate1": "2020-08-14", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3625, "employeeId": 703, "customDate1": "2020-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2413, "employeeId": 704, "customDate1": "2020-09-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3140, "employeeId": 704, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4035, "employeeId": 704, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3008, "employeeId": 705, "customDate1": "2021-05-03", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5672, "employeeId": 705, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3766, "employeeId": 707, "customDate1": "2020-11-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3651, "employeeId": 708, "customDate1": "2020-09-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2415, "employeeId": 709, "customDate1": "2020-09-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3138, "employeeId": 709, "customDate1": "2021-06-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3602, "employeeId": 710, "customDate1": "2020-11-02", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2436, "employeeId": 711, "customDate1": "2020-09-14", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5665, "employeeId": 711, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3580, "employeeId": 712, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3576, "employeeId": 713, "customDate1": "2021-10-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2447, "employeeId": 714, "customDate1": "2020-09-28", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4379, "employeeId": 714, "customDate1": "2022-01-01", "customAmount1": "15750 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2516, "employeeId": 715, "customDate1": "2020-10-05", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4343, "employeeId": 715, "customDate1": "2022-01-01", "customAmount1": "17560 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5663, "employeeId": 715, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2445, "employeeId": 716, "customDate1": "2020-09-21", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4392, "employeeId": 716, "customDate1": "2022-01-01", "customAmount1": "30900 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9047, "employeeId": 716, "customDate1": "2023-01-01", "customAmount1": "33372 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3770, "employeeId": 718, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2443, "employeeId": 719, "customDate1": "2020-09-21", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9009, "employeeId": 719, "customDate1": "2023-01-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3627, "employeeId": 721, "customDate1": "2021-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3158, "employeeId": 722, "customDate1": "2021-06-14", "customAmount1": "29550.00 USD", "customTargetVariableReason": "MBO", "customComment1": "FTE conversion. MBO added", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3756, "employeeId": 723, "customDate1": "2020-10-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2622, "employeeId": 725, "customDate1": "2020-12-14", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4404, "employeeId": 725, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2513, "employeeId": 726, "customDate1": "2020-12-01", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3101, "employeeId": 726, "customDate1": "2021-06-07", "customAmount1": "15000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4458, "employeeId": 726, "customDate1": "2022-01-01", "customAmount1": "19500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8952, "employeeId": 726, "customDate1": "2023-01-01", "customAmount1": "20085 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2483, "employeeId": 727, "customDate1": "2020-10-05", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4382, "employeeId": 727, "customDate1": "2022-01-01", "customAmount1": "20000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9039, "employeeId": 727, "customDate1": "2023-01-01", "customAmount1": "29100 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3693, "employeeId": 728, "customDate1": "2020-11-02", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3743, "employeeId": 729, "customDate1": "2020-11-02", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2518, "employeeId": 731, "customDate1": "2020-10-05", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3748, "employeeId": 734, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3644, "employeeId": 735, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3061, "employeeId": 736, "customDate1": "2021-06-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3113, "employeeId": 736, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4459, "employeeId": 736, "customDate1": "2022-01-01", "customAmount1": "22500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5576, "employeeId": 736, "customDate1": "2022-07-01", "customAmount1": "30000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2538, "employeeId": 737, "customDate1": "2020-10-12", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "$7,500 per quarter", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3578, "employeeId": 739, "customDate1": "2021-01-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15994, "employeeId": 739, "customDate1": "2024-02-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3600, "employeeId": 740, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2556, "employeeId": 741, "customDate1": "2020-11-02", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3603, "employeeId": 742, "customDate1": "2021-08-21", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2576, "employeeId": 743, "customDate1": "2020-11-16", "customAmount1": "44000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2590, "employeeId": 744, "customDate1": "2020-11-16", "customAmount1": "29450.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2936, "employeeId": 744, "customDate1": "2021-04-05", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "12,669.66 CAD (converted from USD to CAD)\n1USD = 1.266966 CAD", "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4620, "employeeId": 744, "customDate1": "2022-01-01", "customAmount1": "12700.00 CAD", "customTargetVariableReason": "MBO", "customComment1": "Adjustment with rate. Converting USD to CAD amount with updated SOW.", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8942, "employeeId": 744, "customDate1": "2023-01-01", "customAmount1": "14700 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2573, "employeeId": 745, "customDate1": "2020-11-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3755, "employeeId": 746, "customDate1": "2021-01-18", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3560, "employeeId": 747, "customDate1": "2020-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3575, "employeeId": 748, "customDate1": "2020-12-14", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16010, "employeeId": 748, "customDate1": "2024-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2570, "employeeId": 749, "customDate1": "2020-11-09", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3751, "employeeId": 751, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3690, "employeeId": 752, "customDate1": "2020-12-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2563, "employeeId": 753, "customDate1": "2020-12-01", "customAmount1": "73000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4472, "employeeId": 753, "customDate1": "2022-01-01", "customAmount1": "76650.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5168, "employeeId": 753, "customDate1": "2022-06-01", "customAmount1": "92000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8995, "employeeId": 753, "customDate1": "2023-01-01", "customAmount1": "95000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2579, "employeeId": 754, "customDate1": "2020-11-09", "customAmount1": "949000.00 INR", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4365, "employeeId": 754, "customDate1": "2022-01-01", "customAmount1": "995663.00 INR", "customTargetVariableReason": "MBO", "customComment1": "$13,400.00 USD", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2584, "employeeId": 755, "customDate1": "2020-12-14", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3170, "employeeId": 755, "customDate1": "2021-06-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3043, "employeeId": 756, "customDate1": "2021-05-17", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3558, "employeeId": 757, "customDate1": "2020-11-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3760, "employeeId": 758, "customDate1": "2021-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2589, "employeeId": 759, "customDate1": "2020-11-23", "customAmount1": "210000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Annual variable Component to be paid to consultant: US $155,679(paid in quarterly instalments).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4607, "employeeId": 759, "customDate1": "2022-01-01", "customAmount1": "180000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Promotion eff. 1/1/22", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3666, "employeeId": 760, "customDate1": "2021-02-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2716, "employeeId": 761, "customDate1": "2021-01-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2646, "employeeId": 762, "customDate1": "2020-12-21", "customAmount1": "105000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3975, "employeeId": 763, "customDate1": "2022-01-24", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Previously an intern. Hired as FTE", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2599, "employeeId": 765, "customDate1": "2020-12-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will also have a guarantee that will consist of a non-recoverable draw of $4,000 per\nmonth for the first 4 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2623, "employeeId": 766, "customDate1": "2020-12-14", "customAmount1": "43500.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4468, "employeeId": 766, "customDate1": "2022-01-01", "customAmount1": "46197.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8988, "employeeId": 766, "customDate1": "2023-01-01", "customAmount1": "49223 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2596, "employeeId": 767, "customDate1": "2021-01-01", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3120, "employeeId": 767, "customDate1": "2021-06-07", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5799, "employeeId": 767, "customDate1": "2022-10-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3721, "employeeId": 768, "customDate1": "2021-02-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2630, "employeeId": 769, "customDate1": "2020-12-14", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4425, "employeeId": 769, "customDate1": "2022-01-01", "customAmount1": "165000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2634, "employeeId": 770, "customDate1": "2021-01-04", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3163, "employeeId": 770, "customDate1": "2021-06-07", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2637, "employeeId": 771, "customDate1": "2021-01-04", "customAmount1": "270000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8413, "employeeId": 771, "customDate1": "2023-03-16", "customAmount1": "65000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Converting to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16028, "employeeId": 771, "customDate1": "2024-01-01", "customAmount1": "48000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3191, "employeeId": 772, "customDate1": "2021-07-01", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Intern to FTE Conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2632, "employeeId": 773, "customDate1": "2021-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3137, "employeeId": 773, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4353, "employeeId": 773, "customDate1": "2022-01-01", "customAmount1": "35000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9050, "employeeId": 773, "customDate1": "2023-01-01", "customAmount1": "36750 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2680, "employeeId": 774, "customDate1": "2021-01-11", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3139, "employeeId": 774, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4351, "employeeId": 774, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9048, "employeeId": 774, "customDate1": "2023-01-01", "customAmount1": "33600 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10591, "employeeId": 774, "customDate1": "2023-09-18", "customAmount1": "52000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2651, "employeeId": 775, "customDate1": "2021-01-04", "customAmount1": "87190.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4438, "employeeId": 775, "customDate1": "2022-01-01", "customAmount1": "97190 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9005, "employeeId": 775, "customDate1": "2023-01-01", "customAmount1": "100000 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2626, "employeeId": 778, "customDate1": "2020-12-14", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4943, "employeeId": 778, "customDate1": "2022-01-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10225, "employeeId": 778, "customDate1": "2023-01-01", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11189, "employeeId": 778, "customDate1": "2023-10-23", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2644, "employeeId": 780, "customDate1": "2020-12-17", "customAmount1": "44100.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3937, "employeeId": 783, "customDate1": "2021-12-06", "customAmount1": "5000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FTE conversion", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4406, "employeeId": 783, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3728, "employeeId": 785, "customDate1": "2021-05-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3546, "employeeId": 786, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3570, "employeeId": 787, "customDate1": "2021-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2659, "employeeId": 788, "customDate1": "2021-02-01", "customAmount1": "8000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2707, "employeeId": 790, "customDate1": "2021-01-11", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4421, "employeeId": 790, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2709, "employeeId": 791, "customDate1": "2021-01-11", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3135, "employeeId": 791, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4354, "employeeId": 791, "customDate1": "2022-01-01", "customAmount1": "33000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9049, "employeeId": 791, "customDate1": "2023-01-01", "customAmount1": "34320 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2705, "employeeId": 792, "customDate1": "2021-01-11", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4388, "employeeId": 792, "customDate1": "2022-01-01", "customAmount1": "32000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5569, "employeeId": 792, "customDate1": "2022-07-01", "customAmount1": "43000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Promotion Eff. 7/1/22", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9051, "employeeId": 792, "customDate1": "2023-01-01", "customAmount1": "46000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2713, "employeeId": 793, "customDate1": "2021-01-11", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you will have a guarantee that will consist of a nonrecoverable draw of $3,000 per month for the first 3 months, followed by a recoverable draw of $3,000 per month for the second 3 months.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2711, "employeeId": 794, "customDate1": "2021-01-11", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2715, "employeeId": 795, "customDate1": "2021-01-11", "customAmount1": "208000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4434, "employeeId": 795, "customDate1": "2022-01-01", "customAmount1": "220000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9007, "employeeId": 795, "customDate1": "2023-01-01", "customAmount1": "232000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3588, "employeeId": 796, "customDate1": "2021-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2780, "employeeId": 797, "customDate1": "2021-01-19", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5677, "employeeId": 797, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2821, "employeeId": 798, "customDate1": "2021-02-08", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5686, "employeeId": 798, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3635, "employeeId": 799, "customDate1": "2021-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2784, "employeeId": 800, "customDate1": "2021-04-19", "customAmount1": "14000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3107, "employeeId": 800, "customDate1": "2021-06-07", "customAmount1": "14000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8951, "employeeId": 800, "customDate1": "2023-01-01", "customAmount1": "20000 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10241, "employeeId": 800, "customDate1": "2023-07-01", "customAmount1": "30000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2819, "employeeId": 801, "customDate1": "2021-02-08", "customAmount1": "16000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5685, "employeeId": 801, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3611, "employeeId": 802, "customDate1": "2021-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3692, "employeeId": 803, "customDate1": "2021-03-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2796, "employeeId": 805, "customDate1": "2021-03-15", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5638, "employeeId": 805, "customDate1": "2022-07-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8947, "employeeId": 805, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4016, "employeeId": 806, "customDate1": "2022-01-04", "customAmount1": "16500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5683, "employeeId": 806, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2806, "employeeId": 807, "customDate1": "2021-02-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3132, "employeeId": 807, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4348, "employeeId": 807, "customDate1": "2022-01-01", "customAmount1": "31000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2846, "employeeId": 808, "customDate1": "2021-02-08", "customAmount1": "32000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3141, "employeeId": 808, "customDate1": "2021-06-07", "customAmount1": "32000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4350, "employeeId": 808, "customDate1": "2022-01-01", "customAmount1": "34000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2813, "employeeId": 809, "customDate1": "2021-02-01", "customAmount1": "949000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4369, "employeeId": 809, "customDate1": "2022-01-01", "customAmount1": "977470 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2817, "employeeId": 810, "customDate1": "2021-04-01", "customAmount1": "144000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3114, "employeeId": 810, "customDate1": "2021-06-07", "customAmount1": "144000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3648, "employeeId": 812, "customDate1": "2021-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3553, "employeeId": 813, "customDate1": "2021-02-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3564, "employeeId": 814, "customDate1": "2021-04-08", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2852, "employeeId": 815, "customDate1": "2021-04-05", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2855, "employeeId": 816, "customDate1": "2021-03-01", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4387, "employeeId": 816, "customDate1": "2022-01-01", "customAmount1": "15000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9034, "employeeId": 816, "customDate1": "2023-01-01", "customAmount1": "21000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2857, "employeeId": 817, "customDate1": "2021-03-15", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3149, "employeeId": 817, "customDate1": "2021-06-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Updating target variable reason from MBO to Commission", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2859, "employeeId": 818, "customDate1": "2021-03-15", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5666, "employeeId": 818, "customDate1": "2021-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2862, "employeeId": 819, "customDate1": "2021-03-22", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2877, "employeeId": 820, "customDate1": "2021-03-15", "customAmount1": "14500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4359, "employeeId": 820, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3579, "employeeId": 822, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2883, "employeeId": 824, "customDate1": "2021-03-08", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) for the first 3 months of your employment in the total amount of $9000, followed by a recoverable draw for the second 3 months in the total amount of $9,000. The Draw will be paid, pro rata, in the second regularly scheduled pay period following the end of each calendar quarter. After such 6 month period, incentives will be based and paid solely under the terms and scope of the commissions and sales revenue attained.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4427, "employeeId": 824, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2889, "employeeId": 825, "customDate1": "2021-03-08", "customAmount1": "151000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2885, "employeeId": 826, "customDate1": "2021-03-15", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4435, "employeeId": 826, "customDate1": "2022-01-01", "customAmount1": "110000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2909, "employeeId": 827, "customDate1": "2021-03-08", "customAmount1": "15000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4394, "employeeId": 827, "customDate1": "2022-01-01", "customAmount1": "29000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5384, "employeeId": 827, "customDate1": "2022-04-01", "customAmount1": "50000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9008, "employeeId": 827, "customDate1": "2023-01-01", "customAmount1": "55000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3591, "employeeId": 828, "customDate1": "2021-06-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2910, "employeeId": 829, "customDate1": "2021-03-15", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3136, "employeeId": 829, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4033, "employeeId": 829, "customDate1": "2022-01-01", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3586, "employeeId": 830, "customDate1": "2021-06-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3695, "employeeId": 831, "customDate1": "2021-05-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3709, "employeeId": 833, "customDate1": "2021-04-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3691, "employeeId": 834, "customDate1": "2021-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3726, "employeeId": 836, "customDate1": "2021-06-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3769, "employeeId": 837, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3735, "employeeId": 839, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2932, "employeeId": 842, "customDate1": "2021-05-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3108, "employeeId": 842, "customDate1": "2021-06-07", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4443, "employeeId": 842, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3686, "employeeId": 844, "customDate1": "2021-04-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2930, "employeeId": 845, "customDate1": "2021-04-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4463, "employeeId": 845, "customDate1": "2022-01-01", "customAmount1": "9500.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8948, "employeeId": 845, "customDate1": "2023-01-01", "customAmount1": "12000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4013, "employeeId": 846, "customDate1": "2022-01-04", "customAmount1": "18750.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5691, "employeeId": 846, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3650, "employeeId": 847, "customDate1": "2021-04-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3541, "employeeId": 848, "customDate1": "2021-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3615, "employeeId": 849, "customDate1": "2021-04-05", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3646, "employeeId": 850, "customDate1": "2021-04-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2942, "employeeId": 851, "customDate1": "2021-05-03", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) for the first 3 months of your employment in the total amount of $18,000.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2965, "employeeId": 852, "customDate1": "2021-06-01", "customAmount1": "6100.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4466, "employeeId": 852, "customDate1": "2022-01-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Variable removed due to new base salary", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2946, "employeeId": 853, "customDate1": "2021-04-19", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3102, "employeeId": 853, "customDate1": "2021-06-07", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": "Change from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4439, "employeeId": 853, "customDate1": "2022-01-01", "customAmount1": "11000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8966, "employeeId": 853, "customDate1": "2023-01-01", "customAmount1": "11440 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3694, "employeeId": 854, "customDate1": "2021-06-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2947, "employeeId": 855, "customDate1": "2021-04-12", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9033, "employeeId": 855, "customDate1": "2023-01-01", "customAmount1": "20800 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3584, "employeeId": 856, "customDate1": "2021-05-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2969, "employeeId": 857, "customDate1": "2021-04-26", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2981, "employeeId": 858, "customDate1": "2021-06-07", "customAmount1": "43500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8989, "employeeId": 858, "customDate1": "2023-01-01", "customAmount1": "50000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2974, "employeeId": 859, "customDate1": "2021-04-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4344, "employeeId": 859, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9046, "employeeId": 859, "customDate1": "2023-01-01", "customAmount1": "33280 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2976, "employeeId": 860, "customDate1": "2021-05-03", "customAmount1": "152000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "In addition, you have a non-recoverable draw against future commissions (the \u201cDraw\u201d) earned in the first 3 months of your employment in the total amount of $15,000. One third of the draw ($5,000) will be paid, for each full month of employment, in the second regularly scheduled pay period following the end of each calendar quarter.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9021, "employeeId": 860, "customDate1": "2023-01-01", "customAmount1": "162000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2982, "employeeId": 861, "customDate1": "2021-06-09", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2986, "employeeId": 862, "customDate1": "2021-06-14", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8993, "employeeId": 862, "customDate1": "2023-01-01", "customAmount1": "92000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3572, "employeeId": 864, "customDate1": "2020-06-26", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2996, "employeeId": 865, "customDate1": "2021-04-26", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3142, "employeeId": 865, "customDate1": "2021-06-07", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Changing from MBO to Commissions", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4345, "employeeId": 865, "customDate1": "2022-01-01", "customAmount1": "32000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9252, "employeeId": 865, "customDate1": "2023-05-01", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3700, "employeeId": 866, "customDate1": "2021-05-17", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3009, "employeeId": 867, "customDate1": "2021-07-01", "customAmount1": "3500000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9002, "employeeId": 867, "customDate1": "2023-01-01", "customAmount1": "5000000 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3697, "employeeId": 869, "customDate1": "2021-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3031, "employeeId": 870, "customDate1": "2021-06-28", "customAmount1": "18000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3033, "employeeId": 871, "customDate1": "2021-05-17", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9025, "employeeId": 871, "customDate1": "2023-01-01", "customAmount1": "170000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3734, "employeeId": 872, "customDate1": "2021-08-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3036, "employeeId": 874, "customDate1": "2021-05-17", "customAmount1": "1100000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3727, "employeeId": 875, "customDate1": "2021-08-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3950, "employeeId": 876, "customDate1": "2021-06-01", "customAmount1": "0.00 CAD", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3051, "employeeId": 877, "customDate1": "2021-07-26", "customAmount1": "90000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8994, "employeeId": 877, "customDate1": "2023-01-01", "customAmount1": "92500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3044, "employeeId": 878, "customDate1": "2021-06-01", "customAmount1": "13000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5667, "employeeId": 878, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3049, "employeeId": 879, "customDate1": "2021-08-01", "customAmount1": "150000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3053, "employeeId": 880, "customDate1": "2021-06-30", "customAmount1": "120000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3565, "employeeId": 881, "customDate1": "2021-08-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3055, "employeeId": 882, "customDate1": "2021-08-02", "customAmount1": "48000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9004, "employeeId": 882, "customDate1": "2023-01-01", "customAmount1": "53000 SEK", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3638, "employeeId": 883, "customDate1": "2021-07-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3059, "employeeId": 884, "customDate1": "2021-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8971, "employeeId": 884, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3595, "employeeId": 887, "customDate1": "2021-05-24", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3066, "employeeId": 888, "customDate1": "2021-06-01", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9038, "employeeId": 888, "customDate1": "2023-01-01", "customAmount1": "27000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3069, "employeeId": 889, "customDate1": "2021-06-01", "customAmount1": "60000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3767, "employeeId": 890, "customDate1": "2021-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3632, "employeeId": 891, "customDate1": "2021-06-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3072, "employeeId": 892, "customDate1": "2021-06-01", "customAmount1": "25500", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3605, "employeeId": 893, "customDate1": "2021-08-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3628, "employeeId": 894, "customDate1": "2021-08-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3079, "employeeId": 895, "customDate1": "2021-09-01", "customAmount1": "1080000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3080, "employeeId": 896, "customDate1": "2021-06-07", "customAmount1": "90000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3097, "employeeId": 897, "customDate1": "2021-07-05", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4349, "employeeId": 897, "customDate1": "2022-01-01", "customAmount1": "36000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3124, "employeeId": 898, "customDate1": "2021-07-05", "customAmount1": "110000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8967, "employeeId": 898, "customDate1": "2023-01-01", "customAmount1": "115000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3126, "employeeId": 900, "customDate1": "2021-07-06", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3127, "employeeId": 901, "customDate1": "2021-06-16", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4132, "employeeId": 901, "customDate1": "2022-01-01", "customAmount1": "743032.00 INR", "customTargetVariableReason": "MBO", "customComment1": "Per contract, converted to INR (1 USD = 74.3032 INR)\n$10,000.00 USD / year", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9003, "employeeId": 901, "customDate1": "2023-01-01", "customAmount1": "800000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3175, "employeeId": 903, "customDate1": "2021-08-02", "customAmount1": "27750.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5668, "employeeId": 903, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3176, "employeeId": 904, "customDate1": "2021-07-06", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Non-Recoverable Draw\nYou will receive $3,000 per month for the first 3 months, paid as a lump sum less applicable tax and withholdings, in the last payroll run in October. This is on top of any earned commissions for transactions that close in your accounts during the July-September quarter (Q3).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4420, "employeeId": 904, "customDate1": "2022-01-01", "customAmount1": "150000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3183, "employeeId": 905, "customDate1": "2021-11-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8972, "employeeId": 905, "customDate1": "2023-01-01", "customAmount1": "12000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4761, "employeeId": 907, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8338, "employeeId": 907, "customDate1": "2023-06-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4939, "employeeId": 908, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3762, "employeeId": 909, "customDate1": "2021-10-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3566, "employeeId": 910, "customDate1": "2021-10-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3188, "employeeId": 911, "customDate1": "2021-08-02", "customAmount1": "130000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3744, "employeeId": 912, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3203, "employeeId": 913, "customDate1": "2021-08-02", "customAmount1": "2000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3593, "employeeId": 914, "customDate1": "2021-09-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3194, "employeeId": 915, "customDate1": "2021-09-01", "customAmount1": "15000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3704, "employeeId": 916, "customDate1": "2021-09-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3205, "employeeId": 918, "customDate1": "2021-07-26", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3689, "employeeId": 921, "customDate1": "2021-09-20", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3718, "employeeId": 922, "customDate1": "2021-07-15", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3246, "employeeId": 923, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4442, "employeeId": 923, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8974, "employeeId": 923, "customDate1": "2023-01-01", "customAmount1": "16480 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3229, "employeeId": 924, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4441, "employeeId": 924, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5382, "employeeId": 924, "customDate1": "2022-07-01", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3248, "employeeId": 925, "customDate1": "2021-08-01", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4440, "employeeId": 925, "customDate1": "2022-01-01", "customAmount1": "16000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8975, "employeeId": 925, "customDate1": "2023-01-01", "customAmount1": "16800 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3716, "employeeId": 926, "customDate1": "2021-09-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3587, "employeeId": 927, "customDate1": "2021-09-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3252, "employeeId": 928, "customDate1": "2021-07-26", "customAmount1": "97000.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5895, "employeeId": 928, "customDate1": "2022-07-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3255, "employeeId": 929, "customDate1": "2021-09-27", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3555, "employeeId": 930, "customDate1": "2021-08-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3607, "employeeId": 931, "customDate1": "2021-08-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3271, "employeeId": 932, "customDate1": "2021-10-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8958, "employeeId": 932, "customDate1": "2023-01-01", "customAmount1": "60900 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3583, "employeeId": 933, "customDate1": "2022-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3277, "employeeId": 934, "customDate1": "2021-08-17", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3278, "employeeId": 935, "customDate1": "2021-08-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3311, "employeeId": 936, "customDate1": "2021-08-23", "customAmount1": "22500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5684, "employeeId": 936, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3297, "employeeId": 937, "customDate1": "2021-09-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5311, "employeeId": 937, "customDate1": "2022-07-01", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Internal Transfer / Comp Adj eff. 7/1", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3299, "employeeId": 938, "customDate1": "2021-08-23", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3300, "employeeId": 939, "customDate1": "2021-08-30", "customAmount1": "150000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10214, "employeeId": 939, "customDate1": "2023-07-01", "customAmount1": "140000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3304, "employeeId": 940, "customDate1": "2021-08-23", "customAmount1": "40000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3306, "employeeId": 941, "customDate1": "2021-08-30", "customAmount1": "33000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5662, "employeeId": 941, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3641, "employeeId": 942, "customDate1": "2021-09-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3606, "employeeId": 943, "customDate1": "2021-08-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3567, "employeeId": 944, "customDate1": "2021-09-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3677, "employeeId": 947, "customDate1": "2021-10-18", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3318, "employeeId": 948, "customDate1": "2021-10-18", "customAmount1": "63000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3616, "employeeId": 951, "customDate1": "2021-08-30", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3327, "employeeId": 952, "customDate1": "2021-09-13", "customAmount1": "36000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5688, "employeeId": 952, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3759, "employeeId": 953, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3335, "employeeId": 954, "customDate1": "2021-10-04", "customAmount1": "1225830.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5896, "employeeId": 954, "customDate1": "2022-07-01", "customAmount1": "0.00 INR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3337, "employeeId": 955, "customDate1": "2021-09-27", "customAmount1": "370550.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8999, "employeeId": 955, "customDate1": "2023-01-01", "customAmount1": "389000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3590, "employeeId": 957, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3341, "employeeId": 958, "customDate1": "2021-10-11", "customAmount1": "17250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3589, "employeeId": 960, "customDate1": "2022-01-03", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3569, "employeeId": 961, "customDate1": "2021-11-22", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3630, "employeeId": 962, "customDate1": "2021-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3365, "employeeId": 963, "customDate1": "2021-09-27", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4042, "employeeId": 965, "customDate1": "2022-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3370, "employeeId": 967, "customDate1": "2021-09-27", "customAmount1": "30000", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3371, "employeeId": 968, "customDate1": "2021-09-20", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9041, "employeeId": 968, "customDate1": "2023-01-01", "customAmount1": "30900 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3375, "employeeId": 971, "customDate1": "2021-09-13", "customAmount1": "20000.00 CAD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3617, "employeeId": 972, "customDate1": "2021-12-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3708, "employeeId": 973, "customDate1": "2021-11-08", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3380, "employeeId": 974, "customDate1": "2021-09-27", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9042, "employeeId": 974, "customDate1": "2023-01-01", "customAmount1": "31500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3383, "employeeId": 975, "customDate1": "2021-10-04", "customAmount1": "179000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3387, "employeeId": 977, "customDate1": "2021-10-20", "customAmount1": "54000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3388, "employeeId": 978, "customDate1": "2021-09-21", "customAmount1": "200000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9006, "employeeId": 978, "customDate1": "2023-01-01", "customAmount1": "220000 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3683, "employeeId": 979, "customDate1": "2021-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3396, "employeeId": 980, "customDate1": "2021-11-01", "customAmount1": "112625.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3549, "employeeId": 982, "customDate1": "2021-11-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3398, "employeeId": 983, "customDate1": "2021-12-01", "customAmount1": "370550.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9000, "employeeId": 983, "customDate1": "2023-01-01", "customAmount1": "407600 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3399, "employeeId": 984, "customDate1": "2021-10-17", "customAmount1": "4004237.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3400, "employeeId": 985, "customDate1": "2021-10-04", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9040, "employeeId": 985, "customDate1": "2023-01-01", "customAmount1": "30000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3418, "employeeId": 986, "customDate1": "2021-11-02", "customAmount1": "17250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8979, "employeeId": 986, "customDate1": "2023-01-01", "customAmount1": "20000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3402, "employeeId": 987, "customDate1": "2021-11-30", "customAmount1": "735123.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3405, "employeeId": 989, "customDate1": "2021-11-01", "customAmount1": "27000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3406, "employeeId": 990, "customDate1": "2021-10-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9010, "employeeId": 990, "customDate1": "2023-01-01", "customAmount1": "100000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3409, "employeeId": 991, "customDate1": "2021-10-04", "customAmount1": "41000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3416, "employeeId": 992, "customDate1": "2021-11-01", "customAmount1": "109500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8965, "employeeId": 992, "customDate1": "2023-01-01", "customAmount1": "112785 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9220, "employeeId": 992, "customDate1": "2023-05-01", "customAmount1": "137000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3550, "employeeId": 994, "customDate1": "2021-11-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3442, "employeeId": 995, "customDate1": "2021-10-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3483, "employeeId": 997, "customDate1": "2021-10-18", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Target variable is split: 50% ($30,000) will be paid as sales commissions, as outlined in a compensation plan, and 50% ($30,000) will be paid as MBO", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3454, "employeeId": 999, "customDate1": "2021-11-15", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3477, "employeeId": 1000, "customDate1": "2022-01-05", "customAmount1": "1113657.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8997, "employeeId": 1000, "customDate1": "2023-01-01", "customAmount1": "1202749.56 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3484, "employeeId": 1002, "customDate1": "2021-10-18", "customAmount1": "50000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3485, "employeeId": 1003, "customDate1": "2021-10-18", "customAmount1": "1250000000.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3487, "employeeId": 1004, "customDate1": "2021-10-18", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5649, "employeeId": 1004, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3757, "employeeId": 1006, "customDate1": "2022-01-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3527, "employeeId": 1007, "customDate1": "2021-10-18", "customAmount1": "256695414.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3534, "employeeId": 1009, "customDate1": "2022-01-04", "customAmount1": "71285.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11183, "employeeId": 1009, "customDate1": "2023-10-23", "customAmount1": "71285.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3706, "employeeId": 1010, "customDate1": "2021-11-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3612, "employeeId": 1011, "customDate1": "2021-10-25", "customAmount1": "60000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3619, "employeeId": 1012, "customDate1": "2021-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3622, "employeeId": 1013, "customDate1": "2021-11-01", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "You will receive a monthly guaranteed payment of $3,000, less the applicable tax and withholdings, for the first three (3) months of employment. In addition, beginning on month four (4) [February] of your employment, you will be advanced a recoverable draw equivalent to $3,000 per month, for three (3) months (the \u201cDraw\u201d).", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3777, "employeeId": 1014, "customDate1": "2021-11-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3772, "employeeId": 1015, "customDate1": "2021-11-08", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9019, "employeeId": 1015, "customDate1": "2023-01-01", "customAmount1": "153000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3774, "employeeId": 1016, "customDate1": "2021-11-15", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3780, "employeeId": 1017, "customDate1": "2022-01-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3782, "employeeId": 1018, "customDate1": "2021-11-01", "customAmount1": "566320.00 CNY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3820, "employeeId": 1020, "customDate1": "2022-04-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3823, "employeeId": 1021, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3826, "employeeId": 1022, "customDate1": "2022-01-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3829, "employeeId": 1024, "customDate1": "2022-01-04", "customAmount1": "128000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3832, "employeeId": 1025, "customDate1": "2022-01-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5689, "employeeId": 1025, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3844, "employeeId": 1027, "customDate1": "2021-12-13", "customAmount1": "120000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3839, "employeeId": 1028, "customDate1": "2022-01-10", "customAmount1": "110000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3848, "employeeId": 1029, "customDate1": "2022-01-03", "customAmount1": "140000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "R$780,472.00 / year\nExchange rate R$ - 5,5748", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3850, "employeeId": 1030, "customDate1": "2021-11-15", "customAmount1": "27000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3853, "employeeId": 1031, "customDate1": "2022-01-04", "customAmount1": "115000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8968, "employeeId": 1031, "customDate1": "2023-01-01", "customAmount1": "117000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3856, "employeeId": 1032, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3858, "employeeId": 1033, "customDate1": "2021-11-22", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9011, "employeeId": 1033, "customDate1": "2023-01-01", "customAmount1": "105000 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3862, "employeeId": 1034, "customDate1": "2022-01-17", "customAmount1": "20000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5650, "employeeId": 1034, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3865, "employeeId": 1035, "customDate1": "2022-04-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3867, "employeeId": 1036, "customDate1": "2021-12-09", "customAmount1": "40000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8940, "employeeId": 1036, "customDate1": "2023-01-01", "customAmount1": "41600.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": "April SDR Commission: $1,914.55 AUD\nMay SDR Commission: $2,682.73 AUD\nJuly SDR Commission: $2,304.55 AUD\nOctober SDR Commission: $6,933.33 AUD\nNovember SDR Commission: $6,366.86 AUD", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3871, "employeeId": 1037, "customDate1": "2021-12-13", "customAmount1": "109500.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3875, "employeeId": 1038, "customDate1": "2022-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3884, "employeeId": 1039, "customDate1": "2022-01-15", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8959, "employeeId": 1039, "customDate1": "2023-01-01", "customAmount1": "7500 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3886, "employeeId": 1040, "customDate1": "2022-01-04", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9064, "employeeId": 1040, "customDate1": "2023-01-01", "customAmount1": "77250 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3888, "employeeId": 1041, "customDate1": "2022-02-07", "customAmount1": "210000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3891, "employeeId": 1042, "customDate1": "2021-12-15", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8955, "employeeId": 1042, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3897, "employeeId": 1043, "customDate1": "2021-12-06", "customAmount1": "22500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5675, "employeeId": 1043, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3899, "employeeId": 1044, "customDate1": "2022-01-10", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11180, "employeeId": 1044, "customDate1": "2023-10-23", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3901, "employeeId": 1045, "customDate1": "2022-01-10", "customAmount1": "70000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3903, "employeeId": 1046, "customDate1": "2021-12-09", "customAmount1": "12500.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4408, "employeeId": 1046, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3905, "employeeId": 1047, "customDate1": "2021-12-13", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4407, "employeeId": 1047, "customDate1": "2022-01-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Moving variable to base", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3912, "employeeId": 1048, "customDate1": "2022-01-25", "customAmount1": "180000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3914, "employeeId": 1049, "customDate1": "2021-12-13", "customAmount1": "200000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3934, "employeeId": 1050, "customDate1": "2021-12-28", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5690, "employeeId": 1050, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3940, "employeeId": 1051, "customDate1": "2021-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3943, "employeeId": 1052, "customDate1": "2022-01-10", "customAmount1": "111212.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": "1 USD = 5.5606 BRL currency conversion\n20,000 USD", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3948, "employeeId": 1053, "customDate1": "2022-01-04", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9012, "employeeId": 1053, "customDate1": "2023-01-01", "customAmount1": "11000 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3952, "employeeId": 1054, "customDate1": "2022-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3957, "employeeId": 1055, "customDate1": "2022-01-10", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3959, "employeeId": 1056, "customDate1": "2022-02-07", "customAmount1": "60000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3969, "employeeId": 1058, "customDate1": "2022-02-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3982, "employeeId": 1059, "customDate1": "2022-09-01", "customAmount1": "24000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3988, "employeeId": 1060, "customDate1": "2022-01-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3990, "employeeId": 1061, "customDate1": "2022-01-17", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5626, "employeeId": 1061, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3992, "employeeId": 1062, "customDate1": "2022-01-24", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3996, "employeeId": 1063, "customDate1": "2022-02-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4000, "employeeId": 1064, "customDate1": "2022-03-01", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4003, "employeeId": 1065, "customDate1": "2022-01-03", "customAmount1": "168000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8976, "employeeId": 1065, "customDate1": "2023-01-01", "customAmount1": "174000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4005, "employeeId": 1066, "customDate1": "2022-01-04", "customAmount1": "87500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4008, "employeeId": 1068, "customDate1": "2022-01-04", "customAmount1": "55000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8171, "employeeId": 1068, "customDate1": "2023-01-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Promotion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4010, "employeeId": 1069, "customDate1": "2022-02-07", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4026, "employeeId": 1072, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4028, "employeeId": 1073, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9043, "employeeId": 1073, "customDate1": "2023-01-01", "customAmount1": "31500 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4045, "employeeId": 1074, "customDate1": "2022-01-10", "customAmount1": "34500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8985, "employeeId": 1074, "customDate1": "2023-01-01", "customAmount1": "39330 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4080, "employeeId": 1075, "customDate1": "2022-02-15", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8950, "employeeId": 1075, "customDate1": "2023-01-01", "customAmount1": "15000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4037, "employeeId": 1076, "customDate1": "2022-01-04", "customAmount1": "378470.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9001, "employeeId": 1076, "customDate1": "2023-01-01", "customAmount1": "425000 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4039, "employeeId": 1077, "customDate1": "2022-01-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4047, "employeeId": 1078, "customDate1": "2022-02-07", "customAmount1": "175000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4088, "employeeId": 1079, "customDate1": "2022-03-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4057, "employeeId": 1083, "customDate1": "2022-06-01", "customAmount1": "75000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4083, "employeeId": 1085, "customDate1": "2022-01-18", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Target variable of $100,000 (USD) per annum. \n 80% will be paid as sales commissions, and 20% will be paid as MBO.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4096, "employeeId": 1088, "customDate1": "2022-03-01", "customAmount1": "80000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4099, "employeeId": 1089, "customDate1": "2022-02-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4101, "employeeId": 1090, "customDate1": "2022-01-24", "customAmount1": "138660.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8941, "employeeId": 1090, "customDate1": "2023-01-01", "customAmount1": "145593.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": "April commission: R$20,708.57 BRL\nMay commission: R$11,789.87 BRL\nJuly commission: R$25,094.45 BRL\nOctober '23 Commission: R$16,985.85 BRL\nNovember '23 SDR Commission: R$16,985.85 BRL\nJanuary '24 SDR Commissions: R$9,706.20 BRL", "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4115, "employeeId": 1091, "customDate1": "2022-04-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4106, "employeeId": 1092, "customDate1": "2022-02-14", "customAmount1": "160000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "He will receive a monthly payment of $5,000, less the applicable tax and withholdings, for\nthe first 6 months of employment.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4118, "employeeId": 1093, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4228, "employeeId": 1095, "customDate1": "2022-03-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4674, "employeeId": 1096, "customDate1": "2022-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4124, "employeeId": 1097, "customDate1": "2022-04-04", "customAmount1": "185000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4129, "employeeId": 1099, "customDate1": "2022-01-31", "customAmount1": "96000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17244, "employeeId": 1099, "customDate1": "2024-03-01", "customAmount1": "145000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4136, "employeeId": 1100, "customDate1": "2022-03-01", "customAmount1": "11250.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4141, "employeeId": 1101, "customDate1": "2022-02-07", "customAmount1": "0.00 CNY", "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4138, "employeeId": 1102, "customDate1": "2022-02-14", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17230, "employeeId": 1102, "customDate1": "2024-03-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4145, "employeeId": 1103, "customDate1": "2022-05-10", "customAmount1": "120000.00 SEK", "customTargetVariableReason": "MBO", "customComment1": "On-target variable compensation will be SEK 10,000 per month (equal to SEK 120,000 per year)", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5657, "employeeId": 1103, "customDate1": "2022-07-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": "Marketing Restructure", "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4149, "employeeId": 1104, "customDate1": "2022-04-01", "customAmount1": "60000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4154, "employeeId": 1105, "customDate1": "2022-02-22", "customAmount1": "26550.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5674, "employeeId": 1105, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4205, "employeeId": 1107, "customDate1": "2022-03-07", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4207, "employeeId": 1109, "customDate1": "2022-02-15", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5850, "employeeId": 1109, "customDate1": "2022-07-01", "customAmount1": "0.00 BRL", "customTargetVariableReason": "N/A", "customComment1": "Moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4211, "employeeId": 1111, "customDate1": "2022-02-28", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5660, "employeeId": 1111, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4231, "employeeId": 1112, "customDate1": "2022-05-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4245, "employeeId": 1113, "customDate1": "2022-03-21", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8956, "employeeId": 1113, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4221, "employeeId": 1114, "customDate1": "2022-02-28", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4628, "employeeId": 1117, "customDate1": "2022-03-01", "customAmount1": "132000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11187, "employeeId": 1117, "customDate1": "2023-10-23", "customAmount1": "132000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": "60% = Corporate MBO; 40% = Sales Incentive", "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4233, "employeeId": 1118, "customDate1": "2022-02-28", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "will receive a monthly payment of $13,750 for the first 3 months of employment", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4239, "employeeId": 1119, "customDate1": "2022-03-21", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5679, "employeeId": 1119, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4242, "employeeId": 1121, "customDate1": "2022-04-01", "customAmount1": "4800000.00 JPY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4650, "employeeId": 1122, "customDate1": "2022-03-14", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8991, "employeeId": 1122, "customDate1": "2023-01-01", "customAmount1": "6000 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4617, "employeeId": 1124, "customDate1": "2022-02-28", "customAmount1": "376025.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8998, "employeeId": 1124, "customDate1": "2023-01-01", "customAmount1": "387300 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4630, "employeeId": 1126, "customDate1": "2022-03-07", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4633, "employeeId": 1127, "customDate1": "2022-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4640, "employeeId": 1128, "customDate1": "2022-03-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4647, "employeeId": 1129, "customDate1": "2022-04-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4680, "employeeId": 1130, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4665, "employeeId": 1133, "customDate1": "2022-05-23", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4677, "employeeId": 1136, "customDate1": "2022-04-25", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8963, "employeeId": 1136, "customDate1": "2023-01-01", "customAmount1": "10500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4683, "employeeId": 1138, "customDate1": "2022-06-06", "customAmount1": "8500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4687, "employeeId": 1139, "customDate1": "2022-03-05", "customAmount1": "1571427750.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": "He will receive 3 months non-recoverable draw 130,952,313 per month (392,856,939 for 3 months)", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4689, "employeeId": 1140, "customDate1": "2022-03-21", "customAmount1": "55000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Of the target variable, 80% ($44,000) will be paid as sales commissions, as outlined in a compensation plan, and 20% ($11,000) will be paid as a variable bonus.", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5738, "employeeId": 1140, "customDate1": "2022-09-01", "customAmount1": "90000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": "Internal Transfer Eff. 9/1/22", "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4764, "employeeId": 1142, "customDate1": "2022-04-25", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8961, "employeeId": 1142, "customDate1": "2023-01-01", "customAmount1": "10400 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4693, "employeeId": 1143, "customDate1": "2022-04-25", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4695, "employeeId": 1144, "customDate1": "2022-04-04", "customAmount1": "50000.00 CAD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4699, "employeeId": 1145, "customDate1": "2022-04-18", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5681, "employeeId": 1145, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4707, "employeeId": 1147, "customDate1": "2022-04-04", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4770, "employeeId": 1148, "customDate1": "2022-05-16", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4709, "employeeId": 1149, "customDate1": "2022-06-27", "customAmount1": "63000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4711, "employeeId": 1150, "customDate1": "2022-04-01", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5671, "employeeId": 1150, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4747, "employeeId": 1151, "customDate1": "2022-03-28", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4767, "employeeId": 1152, "customDate1": "2022-04-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4743, "employeeId": 1155, "customDate1": "2022-04-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6717, "employeeId": 1155, "customDate1": "2022-10-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4744, "employeeId": 1156, "customDate1": "2022-04-18", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4773, "employeeId": 1157, "customDate1": "2022-06-20", "customAmount1": "5000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4759, "employeeId": 1158, "customDate1": "2022-04-26", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4778, "employeeId": 1160, "customDate1": "2022-06-01", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4781, "employeeId": 1161, "customDate1": "2022-05-02", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4783, "employeeId": 1162, "customDate1": "2022-05-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5678, "employeeId": 1162, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4788, "employeeId": 1164, "customDate1": "2022-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4790, "employeeId": 1165, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8340, "employeeId": 1165, "customDate1": "2023-06-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4792, "employeeId": 1166, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4794, "employeeId": 1167, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4797, "employeeId": 1168, "customDate1": "2022-08-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4799, "employeeId": 1169, "customDate1": "2022-04-19", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4802, "employeeId": 1171, "customDate1": "2022-04-04", "customAmount1": "2379178.00 MXN", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4806, "employeeId": 1172, "customDate1": "2022-04-18", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4810, "employeeId": 1173, "customDate1": "2022-04-25", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4859, "employeeId": 1176, "customDate1": "2022-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4898, "employeeId": 1178, "customDate1": "2022-05-09", "customAmount1": "50000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4900, "employeeId": 1179, "customDate1": "2022-05-02", "customAmount1": "30000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4903, "employeeId": 1181, "customDate1": "2022-04-25", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9045, "employeeId": 1181, "customDate1": "2023-01-01", "customAmount1": "32960 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4926, "employeeId": 1182, "customDate1": "2022-05-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4928, "employeeId": 1183, "customDate1": "2022-04-25", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5670, "employeeId": 1183, "customDate1": "2022-07-01", "customAmount1": "0.00 USD", "customTargetVariableReason": "N/A", "customComment1": "Comp restructure - moving variable into base", "customChangeReason": "Comp Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4941, "employeeId": 1185, "customDate1": "2022-06-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4930, "employeeId": 1186, "customDate1": "2022-05-02", "customAmount1": "326544.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4951, "employeeId": 1190, "customDate1": "2022-06-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4959, "employeeId": 1191, "customDate1": "2022-06-20", "customAmount1": "23000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8982, "employeeId": 1191, "customDate1": "2023-01-01", "customAmount1": "24500 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4961, "employeeId": 1193, "customDate1": "2022-04-25", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4974, "employeeId": 1194, "customDate1": "2022-05-30", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4971, "employeeId": 1195, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4980, "employeeId": 1196, "customDate1": "2022-05-02", "customAmount1": "372000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4982, "employeeId": 1197, "customDate1": "2022-05-02", "customAmount1": "155000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4988, "employeeId": 1198, "customDate1": "2022-06-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4990, "employeeId": 1199, "customDate1": "2022-04-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4993, "employeeId": 1200, "customDate1": "2022-05-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4997, "employeeId": 1201, "customDate1": "2022-05-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5009, "employeeId": 1203, "customDate1": "2022-05-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4999, "employeeId": 1204, "customDate1": "2022-04-25", "customAmount1": "700500.00 CNY", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5003, "employeeId": 1205, "customDate1": "2022-05-23", "customAmount1": "66000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5132, "employeeId": 1206, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8326, "employeeId": 1207, "customDate1": "2023-02-21", "customAmount1": "18000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5060, "employeeId": 1208, "customDate1": "2022-05-23", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5064, "employeeId": 1211, "customDate1": "2022-06-01", "customAmount1": "48000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5068, "employeeId": 1212, "customDate1": "2022-06-01", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5094, "employeeId": 1213, "customDate1": "2022-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5122, "employeeId": 1217, "customDate1": "2022-05-23", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5139, "employeeId": 1219, "customDate1": "2022-07-05", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5141, "employeeId": 1220, "customDate1": "2022-07-11", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5145, "employeeId": 1222, "customDate1": "2022-06-27", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5147, "employeeId": 1223, "customDate1": "2022-05-31", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9044, "employeeId": 1223, "customDate1": "2023-01-01", "customAmount1": "32640 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5149, "employeeId": 1224, "customDate1": "2022-09-01", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5151, "employeeId": 1225, "customDate1": "2022-06-13", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5594, "employeeId": 1227, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5153, "employeeId": 1228, "customDate1": "2022-06-01", "customAmount1": "100900.00 CNY", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5166, "employeeId": 1229, "customDate1": "2022-07-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5156, "employeeId": 1230, "customDate1": "2022-06-06", "customAmount1": "45000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5177, "employeeId": 1231, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5175, "employeeId": 1232, "customDate1": "2022-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5171, "employeeId": 1233, "customDate1": "2022-07-01", "customAmount1": "37500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5179, "employeeId": 1234, "customDate1": "2022-06-01", "customAmount1": "175000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8978, "employeeId": 1234, "customDate1": "2023-01-01", "customAmount1": "180000 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5199, "employeeId": 1238, "customDate1": "2022-07-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5201, "employeeId": 1241, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5204, "employeeId": 1242, "customDate1": "2022-06-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5206, "employeeId": 1244, "customDate1": "2022-07-18", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5219, "employeeId": 1246, "customDate1": "2022-07-04", "customAmount1": "3000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8957, "employeeId": 1246, "customDate1": "2023-01-01", "customAmount1": "5000 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5221, "employeeId": 1247, "customDate1": "2022-07-11", "customAmount1": "44000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5224, "employeeId": 1248, "customDate1": "2022-06-13", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10014, "employeeId": 1248, "customDate1": "2023-06-27", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5226, "employeeId": 1250, "customDate1": "2022-08-01", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5449, "employeeId": 1251, "customDate1": "2022-07-11", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8962, "employeeId": 1251, "customDate1": "2023-01-01", "customAmount1": "10400 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Merit", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5233, "employeeId": 1252, "customDate1": "2022-08-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5235, "employeeId": 1254, "customDate1": "2022-07-05", "customAmount1": "44000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5255, "employeeId": 1255, "customDate1": "2022-07-18", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5319, "employeeId": 1258, "customDate1": "2022-07-18", "customAmount1": "1725000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5263, "employeeId": 1260, "customDate1": "2022-07-25", "customAmount1": "544414.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5265, "employeeId": 1261, "customDate1": "2022-06-27", "customAmount1": "612000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5269, "employeeId": 1262, "customDate1": "2023-01-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5277, "employeeId": 1265, "customDate1": "2022-07-11", "customAmount1": "73800.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5280, "employeeId": 1267, "customDate1": "2022-07-11", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5285, "employeeId": 1268, "customDate1": "2022-08-29", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5306, "employeeId": 1270, "customDate1": "2022-08-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5593, "employeeId": 1271, "customDate1": "2022-08-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5307, "employeeId": 1272, "customDate1": "2022-06-28", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5720, "employeeId": 1273, "customDate1": "2022-09-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5312, "employeeId": 1274, "customDate1": "2022-09-01", "customAmount1": "80000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5366, "employeeId": 1276, "customDate1": "2022-07-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5368, "employeeId": 1277, "customDate1": "2022-06-30", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5370, "employeeId": 1278, "customDate1": "2022-08-08", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5541, "employeeId": 1281, "customDate1": "2022-10-10", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5439, "employeeId": 1283, "customDate1": "2022-08-31", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5441, "employeeId": 1284, "customDate1": "2022-10-01", "customAmount1": "5000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5726, "employeeId": 1285, "customDate1": "2022-10-10", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5460, "employeeId": 1286, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5462, "employeeId": 1287, "customDate1": "2022-07-11", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5483, "employeeId": 1288, "customDate1": "2022-09-06", "customAmount1": "50000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5722, "employeeId": 1289, "customDate1": "2022-10-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5558, "employeeId": 1290, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5496, "employeeId": 1292, "customDate1": "2022-08-01", "customAmount1": "58500.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5500, "employeeId": 1293, "customDate1": "2022-08-08", "customAmount1": "591428.57 INR", "customTargetVariableReason": "Commissions", "customComment1": "April '23 SDR Commissions: \u20b930,702.10 INR\nMay '23 SDR Commissions: \u20b915,829.41 INR\nJuly '23 SDR Commissions: \u20b938,616.96 INR\nOctober '23 SDR Commissions: \u20b924,642.86 INR\nNovember '23 SDR Commissions: \u20b990,710.73 INR", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5502, "employeeId": 1294, "customDate1": "2022-08-22", "customAmount1": "84000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5506, "employeeId": 1295, "customDate1": "2022-08-01", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8415, "employeeId": 1295, "customDate1": "2023-04-03", "customAmount1": "70000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "Rehire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11341, "employeeId": 1295, "customDate1": "2023-11-16", "customAmount1": "46000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Transfer", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5508, "employeeId": 1296, "customDate1": "2022-08-08", "customAmount1": "936000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": "April '23 SDR Commission: \u20b924,440.00 INR\nMay '23 SDR Commission: \u20b96,933.33 INR", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5549, "employeeId": 1297, "customDate1": "2022-08-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5560, "employeeId": 1298, "customDate1": "2022-09-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5716, "employeeId": 1299, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5566, "employeeId": 1300, "customDate1": "2022-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5552, "employeeId": 1301, "customDate1": "2022-08-28", "customAmount1": "50000.40 ILS", "customTargetVariableReason": "MBO", "customComment1": "10% of the Retainer Fee plus VAT (as applicable) per each such fiscal year", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5714, "employeeId": 1302, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5545, "employeeId": 1303, "customDate1": "2022-12-01", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5562, "employeeId": 1304, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5572, "employeeId": 1306, "customDate1": "2022-08-16", "customAmount1": "10000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5730, "employeeId": 1307, "customDate1": "2022-11-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5579, "employeeId": 1308, "customDate1": "2022-09-12", "customAmount1": "25800.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5590, "employeeId": 1310, "customDate1": "2022-08-08", "customAmount1": "20000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5613, "employeeId": 1311, "customDate1": "2022-08-22", "customAmount1": "47750.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5620, "employeeId": 1312, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5621, "employeeId": 1313, "customDate1": "2022-08-29", "customAmount1": "170000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5623, "employeeId": 1314, "customDate1": "2022-08-29", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5628, "employeeId": 1315, "customDate1": "2022-08-22", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5629, "employeeId": 1316, "customDate1": "2022-10-03", "customAmount1": "350000.00 SEK", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5632, "employeeId": 1317, "customDate1": "2022-09-12", "customAmount1": "37080.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5728, "employeeId": 1319, "customDate1": "2022-10-25", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5636, "employeeId": 1320, "customDate1": "2022-09-19", "customAmount1": "10900.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5712, "employeeId": 1321, "customDate1": "2022-09-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5724, "employeeId": 1322, "customDate1": "2022-10-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5653, "employeeId": 1323, "customDate1": "2022-08-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5693, "employeeId": 1326, "customDate1": "2022-09-06", "customAmount1": "155000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5695, "employeeId": 1327, "customDate1": "2022-08-29", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5698, "employeeId": 1328, "customDate1": "2022-09-19", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8960, "employeeId": 1328, "customDate1": "2023-01-01", "customAmount1": "", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5732, "employeeId": 1331, "customDate1": "2022-09-12", "customAmount1": "103000.00 BRL", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5740, "employeeId": 1333, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5760, "employeeId": 1334, "customDate1": "2022-09-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5774, "employeeId": 1336, "customDate1": "2022-09-09", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5781, "employeeId": 1338, "customDate1": "2022-09-19", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5786, "employeeId": 1339, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5788, "employeeId": 1340, "customDate1": "2022-10-03", "customAmount1": "52000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5794, "employeeId": 1341, "customDate1": "2022-11-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5796, "employeeId": 1343, "customDate1": "2022-10-17", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5800, "employeeId": 1344, "customDate1": "2022-10-10", "customAmount1": "206000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5809, "employeeId": 1345, "customDate1": "2022-09-26", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5813, "employeeId": 1346, "customDate1": "2022-10-17", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5868, "employeeId": 1347, "customDate1": "2022-10-17", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5817, "employeeId": 1348, "customDate1": "2022-10-03", "customAmount1": "475000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5841, "employeeId": 1349, "customDate1": "2022-12-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5837, "employeeId": 1350, "customDate1": "2022-10-17", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5845, "employeeId": 1352, "customDate1": "2023-01-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8203, "employeeId": 1354, "customDate1": "2023-01-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6819, "employeeId": 1355, "customDate1": "2022-11-14", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5909, "employeeId": 1360, "customDate1": "2022-10-17", "customAmount1": "32000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6753, "employeeId": 1364, "customDate1": "2022-11-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6825, "employeeId": 1365, "customDate1": "2022-12-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6756, "employeeId": 1366, "customDate1": "2022-11-07", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6760, "employeeId": 1367, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6761, "employeeId": 1368, "customDate1": "2022-11-28", "customAmount1": "84000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6765, "employeeId": 1369, "customDate1": "2022-11-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6807, "employeeId": 1371, "customDate1": "2022-12-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6826, "employeeId": 1372, "customDate1": "2022-12-12", "customAmount1": "0.00 AUD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8248, "employeeId": 1374, "customDate1": "2023-02-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8157, "employeeId": 1376, "customDate1": "2023-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7649, "employeeId": 1379, "customDate1": "2023-01-05", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8158, "employeeId": 1382, "customDate1": "2023-01-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7662, "employeeId": 1383, "customDate1": "2022-12-12", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7667, "employeeId": 1384, "customDate1": "2022-12-05", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8298, "employeeId": 1386, "customDate1": "2023-03-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7673, "employeeId": 1389, "customDate1": "2022-12-05", "customAmount1": "350000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7727, "employeeId": 1391, "customDate1": "2023-02-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7736, "employeeId": 1394, "customDate1": "2023-01-23", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11186, "employeeId": 1394, "customDate1": "2023-10-23", "customAmount1": "75000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7742, "employeeId": 1395, "customDate1": "2023-01-11", "customAmount1": "175000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7750, "employeeId": 1397, "customDate1": "2023-02-09", "customAmount1": "33750.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8155, "employeeId": 1398, "customDate1": "2023-01-09", "customAmount1": "230000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8189, "employeeId": 1399, "customDate1": "2023-02-21", "customAmount1": "83000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11181, "employeeId": 1399, "customDate1": "2023-10-23", "customAmount1": "83000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8170, "employeeId": 1400, "customDate1": "2023-01-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8174, "employeeId": 1401, "customDate1": "2023-01-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8192, "employeeId": 1403, "customDate1": "2023-01-23", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8291, "employeeId": 1404, "customDate1": "2023-02-13", "customAmount1": "40000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8295, "employeeId": 1407, "customDate1": "2023-02-13", "customAmount1": "240000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8311, "employeeId": 1408, "customDate1": "2023-02-20", "customAmount1": "55000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8302, "employeeId": 1411, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9069, "employeeId": 1412, "customDate1": "2023-02-20", "customAmount1": "550200.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9070, "employeeId": 1413, "customDate1": "2023-02-20", "customAmount1": "550200.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9073, "employeeId": 1414, "customDate1": "2023-02-20", "customAmount1": "408000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9068, "employeeId": 1415, "customDate1": "2023-02-20", "customAmount1": "326000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9071, "employeeId": 1416, "customDate1": "2023-02-20", "customAmount1": "490000.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9126, "employeeId": 1417, "customDate1": "2023-05-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8351, "employeeId": 1418, "customDate1": "2023-03-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8314, "employeeId": 1419, "customDate1": "2023-02-20", "customAmount1": "27600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8317, "employeeId": 1420, "customDate1": "2023-02-20", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8320, "employeeId": 1421, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8323, "employeeId": 1422, "customDate1": "2023-02-20", "customAmount1": "39600.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Contractor to FT", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8347, "employeeId": 1424, "customDate1": "2023-03-06", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9066, "employeeId": 1425, "customDate1": "2023-04-03", "customAmount1": "100000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11184, "employeeId": 1425, "customDate1": "2023-10-23", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Corporate MBO", "customComment1": null, "customChangeReason": "Adjustment", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8342, "employeeId": 1426, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15954, "employeeId": 1426, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8344, "employeeId": 1427, "customDate1": "2023-06-16", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9121, "employeeId": 1444, "customDate1": "2023-04-11", "customAmount1": "25000.00 EUR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9180, "employeeId": 1448, "customDate1": "2023-04-17", "customAmount1": "30000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9169, "employeeId": 1449, "customDate1": "2023-04-10", "customAmount1": "200000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9173, "employeeId": 1451, "customDate1": "2023-04-17", "customAmount1": "8500.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9191, "employeeId": 1456, "customDate1": "2023-04-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10448, "employeeId": 1457, "customDate1": "2023-08-21", "customAmount1": "20000.00 USD", "customTargetVariableReason": "MBO", "customComment1": "Converted to FTE", "customChangeReason": "Conversion", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9981, "employeeId": 1460, "customDate1": "2023-06-05", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10054, "employeeId": 1462, "customDate1": "2023-07-17", "customAmount1": "96000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9248, "employeeId": 1463, "customDate1": "2023-05-29", "customAmount1": "75000.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10016, "employeeId": 1464, "customDate1": "2023-08-21", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10006, "employeeId": 1467, "customDate1": "2023-06-05", "customAmount1": "160000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10048, "employeeId": 1471, "customDate1": "2023-06-26", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10012, "employeeId": 1472, "customDate1": "2023-06-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10019, "employeeId": 1473, "customDate1": "2023-06-05", "customAmount1": "68000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10029, "employeeId": 1474, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17300, "employeeId": 1474, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10035, "employeeId": 1476, "customDate1": "2023-06-12", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10037, "employeeId": 1477, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15985, "employeeId": 1477, "customDate1": "2024-03-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Intern to Full-Time", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10039, "employeeId": 1478, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10081, "employeeId": 1479, "customDate1": "2023-09-04", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10051, "employeeId": 1480, "customDate1": "2023-07-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10147, "employeeId": 1498, "customDate1": "2023-06-14", "customAmount1": "75000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10158, "employeeId": 1503, "customDate1": "2023-06-19", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10169, "employeeId": 1507, "customDate1": "2023-07-05", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10522, "employeeId": 1514, "customDate1": "2023-10-02", "customAmount1": "130000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10334, "employeeId": 1524, "customDate1": "2023-07-31", "customAmount1": "15000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10337, "employeeId": 1525, "customDate1": "2023-07-31", "customAmount1": "60000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10306, "employeeId": 1526, "customDate1": "2023-07-24", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10321, "employeeId": 1527, "customDate1": "2023-07-31", "customAmount1": "31860.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10418, "employeeId": 1528, "customDate1": "2023-08-28", "customAmount1": "31860.00 GBP", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10324, "employeeId": 1529, "customDate1": "2023-08-01", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10495, "employeeId": 1534, "customDate1": "2023-08-28", "customAmount1": "390980625.00 IDR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10461, "employeeId": 1536, "customDate1": "2023-08-21", "customAmount1": "26000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10387, "employeeId": 1539, "customDate1": "2023-08-14", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10396, "employeeId": 1540, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16020, "employeeId": 1540, "customDate1": "2024-02-05", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "Intern to Full-Time", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10398, "employeeId": 1541, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10439, "employeeId": 1542, "customDate1": "2023-08-14", "customAmount1": "100000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10454, "employeeId": 1545, "customDate1": "2023-09-04", "customAmount1": "225000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10489, "employeeId": 1546, "customDate1": "2023-08-28", "customAmount1": "220000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10503, "employeeId": 1550, "customDate1": "2023-08-28", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10525, "employeeId": 1552, "customDate1": "2023-09-25", "customAmount1": "100000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10532, "employeeId": 1553, "customDate1": "2023-10-02", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10510, "employeeId": 1554, "customDate1": "2023-09-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11102, "employeeId": 1555, "customDate1": "2023-10-09", "customAmount1": "679800.00 INR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10530, "employeeId": 1556, "customDate1": "2023-09-18", "customAmount1": "122400.00 BRL", "customTargetVariableReason": "MBO", "customComment1": "R$15,759.90 BRL - Q3 '23 Commission Adjustment", "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10555, "employeeId": 1557, "customDate1": "2023-11-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11144, "employeeId": 1558, "customDate1": "2023-10-16", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11207, "employeeId": 1559, "customDate1": "2023-11-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10581, "employeeId": 1560, "customDate1": "2023-09-25", "customAmount1": "202500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10584, "employeeId": 1561, "customDate1": "2023-11-01", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11052, "employeeId": 1562, "customDate1": "2023-10-09", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11023, "employeeId": 1563, "customDate1": "2024-01-02", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11034, "employeeId": 1566, "customDate1": "2023-10-16", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11048, "employeeId": 1567, "customDate1": "2023-10-16", "customAmount1": "15000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11045, "employeeId": 1568, "customDate1": "2023-10-16", "customAmount1": "5000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11040, "employeeId": 1569, "customDate1": "2023-10-16", "customAmount1": "30000.00 USD", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11106, "employeeId": 1575, "customDate1": "2023-10-16", "customAmount1": "165000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11167, "employeeId": 1576, "customDate1": "2023-10-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11160, "employeeId": 1577, "customDate1": "2023-10-23", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11141, "employeeId": 1578, "customDate1": "2023-11-06", "customAmount1": "144000.00 MYR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11337, "employeeId": 1579, "customDate1": "2024-01-02", "customAmount1": "55469.00 MYR", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11151, "employeeId": 1580, "customDate1": "2023-10-30", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11169, "employeeId": 1582, "customDate1": "2024-02-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11331, "employeeId": 1584, "customDate1": "2023-11-27", "customAmount1": "2000000.00 INR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11328, "employeeId": 1585, "customDate1": "2023-11-27", "customAmount1": "95000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11217, "employeeId": 1587, "customDate1": "2023-12-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11221, "employeeId": 1588, "customDate1": "2023-11-06", "customAmount1": "10000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11253, "employeeId": 1589, "customDate1": "2023-12-04", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11321, "employeeId": 1591, "customDate1": "2023-11-13", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11317, "employeeId": 1592, "customDate1": "2023-11-13", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11385, "employeeId": 1595, "customDate1": "2023-11-20", "customAmount1": "170000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11358, "employeeId": 1597, "customDate1": "2024-01-15", "customAmount1": "39000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11372, "employeeId": 1601, "customDate1": "2024-01-15", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11389, "employeeId": 1602, "customDate1": "2023-11-20", "customAmount1": "25000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11382, "employeeId": 1605, "customDate1": "2024-01-15", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11393, "employeeId": 1606, "customDate1": "2023-11-27", "customAmount1": "252500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11401, "employeeId": 1608, "customDate1": "2024-01-08", "customAmount1": "120000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11407, "employeeId": 1609, "customDate1": "2024-01-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11411, "employeeId": 1610, "customDate1": "2023-11-27", "customAmount1": "29000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11416, "employeeId": 1611, "customDate1": "1900-01-01", "customAmount1": null, "customTargetVariableReason": "", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11422, "employeeId": 1612, "customDate1": "2023-12-04", "customAmount1": "165000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11436, "employeeId": 1613, "customDate1": "2024-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11525, "employeeId": 1614, "customDate1": "2023-12-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11445, "employeeId": 1615, "customDate1": "2023-12-04", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11518, "employeeId": 1617, "customDate1": "2023-12-11", "customAmount1": "49000.00 AUD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11451, "employeeId": 1618, "customDate1": "2023-12-04", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11458, "employeeId": 1620, "customDate1": "2024-01-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11461, "employeeId": 1621, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11511, "employeeId": 1622, "customDate1": "2024-03-07", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11566, "employeeId": 1623, "customDate1": "2023-12-18", "customAmount1": "30000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11552, "employeeId": 1628, "customDate1": "2024-01-02", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11584, "employeeId": 1630, "customDate1": "2024-01-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11591, "employeeId": 1631, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11594, "employeeId": 1632, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11597, "employeeId": 1633, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11600, "employeeId": 1634, "customDate1": "2024-01-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11603, "employeeId": 1635, "customDate1": "2024-03-18", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11606, "employeeId": 1636, "customDate1": "2024-03-18", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11614, "employeeId": 1637, "customDate1": "2023-12-18", "customAmount1": "728000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15991, "employeeId": 1638, "customDate1": "2024-01-15", "customAmount1": "425000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11620, "employeeId": 1639, "customDate1": "2024-01-15", "customAmount1": "819000.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11628, "employeeId": 1640, "customDate1": "2024-01-02", "customAmount1": "20000.00 SGD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15941, "employeeId": 1643, "customDate1": "2024-01-08", "customAmount1": "142500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12525, "employeeId": 1644, "customDate1": "2024-01-15", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14704, "employeeId": 1646, "customDate1": "2024-01-29", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15999, "employeeId": 1647, "customDate1": "2024-02-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15929, "employeeId": 1648, "customDate1": "2024-01-16", "customAmount1": "80000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15937, "employeeId": 1650, "customDate1": "2024-01-16", "customAmount1": "202500.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15946, "employeeId": 1651, "customDate1": "2024-06-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15950, "employeeId": 1652, "customDate1": "2024-06-03", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16004, "employeeId": 1653, "customDate1": "2024-03-11", "customAmount1": "127500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16032, "employeeId": 1654, "customDate1": "2024-01-29", "customAmount1": "42750.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16036, "employeeId": 1655, "customDate1": "2024-02-01", "customAmount1": "80000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16054, "employeeId": 1658, "customDate1": "2024-02-19", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16071, "employeeId": 1661, "customDate1": "2024-04-01", "customAmount1": "127500.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17416, "employeeId": 1662, "customDate1": "2024-04-01", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16895, "employeeId": 1664, "customDate1": "2024-02-19", "customAmount1": "71375.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16861, "employeeId": 1665, "customDate1": "2024-03-18", "customAmount1": "82000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16849, "employeeId": 1666, "customDate1": "2024-02-26", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16857, "employeeId": 1668, "customDate1": "2024-03-18", "customAmount1": "35000.00 SGD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16879, "employeeId": 1669, "customDate1": "2024-02-26", "customAmount1": "150000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16883, "employeeId": 1670, "customDate1": "2024-02-26", "customAmount1": "104000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16914, "employeeId": 1674, "customDate1": "2024-03-04", "customAmount1": "256286.00 BRL", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16944, "employeeId": 1676, "customDate1": "2024-05-06", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16925, "employeeId": 1677, "customDate1": "2024-04-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16949, "employeeId": 1680, "customDate1": "2024-04-12", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16976, "employeeId": 1681, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16956, "employeeId": 1682, "customDate1": "2024-02-26", "customAmount1": "10000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16961, "employeeId": 1683, "customDate1": "2024-04-01", "customAmount1": "125000.00 EUR", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16967, "employeeId": 1684, "customDate1": "2024-02-26", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17139, "employeeId": 1685, "customDate1": "2024-03-04", "customAmount1": "225000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16981, "employeeId": 1686, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16986, "employeeId": 1687, "customDate1": "2024-06-03", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17193, "employeeId": 1689, "customDate1": "2024-04-08", "customAmount1": "64000.00 AUD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17200, "employeeId": 1691, "customDate1": "2024-03-01", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17218, "employeeId": 1694, "customDate1": "2024-05-28", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17225, "employeeId": 1696, "customDate1": "2024-04-08", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17270, "employeeId": 1698, "customDate1": "2024-03-18", "customAmount1": "50000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17277, "employeeId": 1699, "customDate1": "2024-04-01", "customAmount1": "80000.00 USD", "customTargetVariableReason": "MBO", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17289, "employeeId": 1701, "customDate1": "2024-04-22", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17296, "employeeId": 1702, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17304, "employeeId": 1703, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17308, "employeeId": 1704, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17312, "employeeId": 1705, "customDate1": "2024-05-20", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17317, "employeeId": 1706, "customDate1": "2024-05-13", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17329, "employeeId": 1708, "customDate1": "2024-04-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17335, "employeeId": 1709, "customDate1": "2024-04-01", "customAmount1": "165000.00 USD", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17353, "employeeId": 1711, "customDate1": "2024-04-02", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17360, "employeeId": 1712, "customDate1": "2024-06-24", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17399, "employeeId": 1720, "customDate1": "2024-06-17", "customAmount1": "0.00 EUR", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17404, "employeeId": 1721, "customDate1": "2024-04-02", "customAmount1": "15000.00 GBP", "customTargetVariableReason": "Commissions", "customComment1": null, "customChangeReason": "New Hire", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17412, "employeeId": 1722, "customDate1": "2024-05-07", "customAmount1": "0.00 GBP", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17421, "employeeId": 1723, "customDate1": "2024-06-10", "customAmount1": "0.00 SEK", "customTargetVariableReason": "N/A", "customComment1": null, "customChangeReason": "", "knoetic_table_name": "customTargetVariable"}, "emitted_at": 1710872587371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2147, "employeeId": 1, "customEffectiveDate": "2019-09-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2170, "employeeId": 114, "customEffectiveDate": "2019-09-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6678, "employeeId": 114, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17192, "employeeId": 114, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2108, "employeeId": 115, "customEffectiveDate": "2019-03-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2284, "employeeId": 116, "customEffectiveDate": "2010-10-15", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4614, "employeeId": 116, "customEffectiveDate": "2022-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6376, "employeeId": 116, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6740, "employeeId": 116, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12144, "employeeId": 116, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2207, "employeeId": 117, "customEffectiveDate": "2017-01-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2656, "employeeId": 117, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5119, "employeeId": 117, "customEffectiveDate": "2022-06-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588173}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5913, "employeeId": 117, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6743, "employeeId": 117, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12137, "employeeId": 117, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 218, "employeeId": 118, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2043, "employeeId": 119, "customEffectiveDate": "2012-02-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6634, "employeeId": 119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7754, "employeeId": 119, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1843, "employeeId": 120, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2328, "employeeId": 120, "customEffectiveDate": "2020-05-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6525, "employeeId": 120, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8237, "employeeId": 120, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2122, "employeeId": 121, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6475, "employeeId": 121, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9158, "employeeId": 121, "customEffectiveDate": "2023-04-03", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11846, "employeeId": 121, "customEffectiveDate": "2023-04-03", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "ENG-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1840, "employeeId": 122, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2107, "employeeId": 122, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588174}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2034, "employeeId": 123, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2020, "employeeId": 124, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17156, "employeeId": 124, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2071, "employeeId": 125, "customEffectiveDate": "2013-10-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2048, "employeeId": 126, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6592, "employeeId": 126, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7758, "employeeId": 126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11982, "employeeId": 126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2116, "employeeId": 127, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4599, "employeeId": 127, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6315, "employeeId": 127, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7759, "employeeId": 127, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12066, "employeeId": 127, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1527, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1890, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2163, "employeeId": 128, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588175}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1529, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1892, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2165, "employeeId": 129, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1416, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1783, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2039, "employeeId": 130, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6288, "employeeId": 130, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7760, "employeeId": 130, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11977, "employeeId": 130, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1778, "employeeId": 131, "customEffectiveDate": "2019-11-15", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1931, "employeeId": 131, "customEffectiveDate": "2020-06-12", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2033, "employeeId": 131, "customEffectiveDate": "2020-06-12", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2892, "employeeId": 131, "customEffectiveDate": "2021-07-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1491, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1858, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2126, "employeeId": 132, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588176}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1449, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1815, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2081, "employeeId": 133, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1420, "employeeId": 134, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2044, "employeeId": 134, "customEffectiveDate": "2020-01-18", "customDepartment#": "1200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3816, "employeeId": 134, "customEffectiveDate": "2021-11-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6513, "employeeId": 134, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7762, "employeeId": 134, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2055, "employeeId": 135, "customEffectiveDate": "2020-02-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4984, "employeeId": 135, "customEffectiveDate": "2022-04-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6514, "employeeId": 135, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7765, "employeeId": 135, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8167, "employeeId": 135, "customEffectiveDate": "2023-01-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8332, "employeeId": 135, "customEffectiveDate": "2023-02-21", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11866, "employeeId": 135, "customEffectiveDate": "2023-02-21", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1483, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1850, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588177}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2118, "employeeId": 136, "customEffectiveDate": "2019-11-15", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6153, "employeeId": 136, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12301, "employeeId": 136, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Research", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1516, "employeeId": 137, "customEffectiveDate": "2019-01-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1897, "employeeId": 137, "customEffectiveDate": "2019-10-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2153, "employeeId": 137, "customEffectiveDate": "2019-10-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2140, "employeeId": 138, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2434, "employeeId": 138, "customEffectiveDate": "2020-09-09", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4174, "employeeId": 138, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1833, "employeeId": 139, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2100, "employeeId": 139, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 321, "employeeId": 140, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2076, "employeeId": 141, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6211, "employeeId": 141, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7722, "employeeId": 141, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7766, "employeeId": 141, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11905, "employeeId": 141, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588178}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2125, "employeeId": 142, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2571, "employeeId": 142, "customEffectiveDate": "2020-11-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6628, "employeeId": 142, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7768, "employeeId": 142, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2088, "employeeId": 143, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3470, "employeeId": 143, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4164, "employeeId": 143, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5938, "employeeId": 143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13723, "employeeId": 143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1807, "employeeId": 144, "customEffectiveDate": "2019-11-15", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2068, "employeeId": 144, "customEffectiveDate": "2019-11-15", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6515, "employeeId": 144, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2017, "employeeId": 145, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6630, "employeeId": 145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7770, "employeeId": 145, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1519, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588179}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1883, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2155, "employeeId": 146, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6361, "employeeId": 146, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7771, "employeeId": 146, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12113, "employeeId": 146, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1768, "employeeId": 147, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6234, "employeeId": 147, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7772, "employeeId": 147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11681, "employeeId": 147, "customEffectiveDate": "2023-10-19", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 328, "employeeId": 148, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1437, "employeeId": 149, "customEffectiveDate": "2016-03-28", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1801, "employeeId": 149, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2060, "employeeId": 149, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6374, "employeeId": 149, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6730, "employeeId": 149, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2102, "employeeId": 150, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3000, "employeeId": 150, "customEffectiveDate": "2021-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6635, "employeeId": 150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588180}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7773, "employeeId": 150, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1408, "employeeId": 151, "customEffectiveDate": "2017-01-03", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1531, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1893, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2168, "employeeId": 152, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6625, "employeeId": 152, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7775, "employeeId": 152, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12125, "employeeId": 152, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2133, "employeeId": 153, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6618, "employeeId": 153, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7776, "employeeId": 153, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12084, "employeeId": 153, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2143, "employeeId": 154, "customEffectiveDate": "2016-12-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2012, "employeeId": 155, "customEffectiveDate": "2016-12-19", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6652, "employeeId": 155, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8100, "employeeId": 155, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2136, "employeeId": 156, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588181}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2138, "employeeId": 157, "customEffectiveDate": "2020-01-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2407, "employeeId": 157, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6503, "employeeId": 157, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6708, "employeeId": 157, "customEffectiveDate": "2022-10-17", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7779, "employeeId": 157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12094, "employeeId": 157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2054, "employeeId": 158, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6668, "employeeId": 158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2095, "employeeId": 159, "customEffectiveDate": "2019-11-15", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4105, "employeeId": 159, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6562, "employeeId": 159, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7780, "employeeId": 159, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12042, "employeeId": 159, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16044, "employeeId": 159, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2019, "employeeId": 160, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6581, "employeeId": 160, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7781, "employeeId": 160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588182}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11939, "employeeId": 160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1428, "employeeId": 161, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2065, "employeeId": 162, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2045, "employeeId": 163, "customEffectiveDate": "2020-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4602, "employeeId": 163, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6396, "employeeId": 163, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1393, "employeeId": 164, "customEffectiveDate": "2017-05-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1763, "employeeId": 164, "customEffectiveDate": "2017-05-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6232, "employeeId": 164, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7783, "employeeId": 164, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11933, "employeeId": 164, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2015, "employeeId": 165, "customEffectiveDate": "2017-05-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3519, "employeeId": 165, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6443, "employeeId": 165, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1498, "employeeId": 166, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2169, "employeeId": 167, "customEffectiveDate": "2019-11-15", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 229, "employeeId": 168, "customEffectiveDate": "2019-11-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588183}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2002, "employeeId": 169, "customEffectiveDate": "2017-07-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6578, "employeeId": 169, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7786, "employeeId": 169, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11920, "employeeId": 169, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2030, "employeeId": 170, "customEffectiveDate": "2017-07-05", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6314, "employeeId": 170, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7787, "employeeId": 170, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11955, "employeeId": 170, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2105, "employeeId": 171, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6365, "employeeId": 171, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7788, "employeeId": 171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2119, "employeeId": 172, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6316, "employeeId": 172, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7789, "employeeId": 172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12071, "employeeId": 172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2057, "employeeId": 173, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6658, "employeeId": 173, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588184}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8101, "employeeId": 173, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2089, "employeeId": 174, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6213, "employeeId": 174, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7791, "employeeId": 174, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2050, "employeeId": 175, "customEffectiveDate": "2019-11-15", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2135, "employeeId": 176, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4604, "employeeId": 176, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6452, "employeeId": 176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12309, "employeeId": 176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2154, "employeeId": 177, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4596, "employeeId": 177, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6565, "employeeId": 177, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7793, "employeeId": 177, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11282, "employeeId": 177, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11676, "employeeId": 177, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1993, "employeeId": 178, "customEffectiveDate": "2017-10-02", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4619, "employeeId": 178, "customEffectiveDate": "2022-02-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588185}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6676, "employeeId": 178, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1489, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1856, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2124, "employeeId": 179, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6617, "employeeId": 179, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7796, "employeeId": 179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12076, "employeeId": 179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2130, "employeeId": 180, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4597, "employeeId": 180, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6312, "employeeId": 180, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7797, "employeeId": 180, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12079, "employeeId": 180, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1492, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1859, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2127, "employeeId": 181, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1995, "employeeId": 182, "customEffectiveDate": "2017-11-06", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3469, "employeeId": 182, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588186}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4156, "employeeId": 182, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5932, "employeeId": 182, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1891, "employeeId": 183, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2164, "employeeId": 183, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2082, "employeeId": 184, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6295, "employeeId": 184, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7799, "employeeId": 184, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12024, "employeeId": 184, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1482, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1849, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2117, "employeeId": 185, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6305, "employeeId": 185, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7800, "employeeId": 185, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12068, "employeeId": 185, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2059, "employeeId": 186, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2069, "employeeId": 187, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6601, "employeeId": 187, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588187}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7801, "employeeId": 187, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11418, "employeeId": 187, "customEffectiveDate": "2022-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12008, "employeeId": 187, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1526, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1889, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2162, "employeeId": 188, "customEffectiveDate": "2018-01-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2046, "employeeId": 189, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4598, "employeeId": 189, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6265, "employeeId": 189, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7802, "employeeId": 189, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11980, "employeeId": 189, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1997, "employeeId": 190, "customEffectiveDate": "2018-02-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6629, "employeeId": 190, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7803, "employeeId": 190, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2022, "employeeId": 191, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6677, "employeeId": 191, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8372, "employeeId": 191, "customEffectiveDate": "2023-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588188}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17158, "employeeId": 191, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2123, "employeeId": 192, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3467, "employeeId": 192, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4167, "employeeId": 192, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5941, "employeeId": 192, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12303, "employeeId": 192, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2009, "employeeId": 193, "customEffectiveDate": "2018-02-26", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2103, "employeeId": 194, "customEffectiveDate": "2019-11-15", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4110, "employeeId": 194, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6613, "employeeId": 194, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7804, "employeeId": 194, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12049, "employeeId": 194, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16047, "employeeId": 194, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2086, "employeeId": 195, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6607, "employeeId": 195, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7806, "employeeId": 195, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12032, "employeeId": 195, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1996, "employeeId": 197, "customEffectiveDate": "2018-04-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588189}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3443, "employeeId": 197, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4963, "employeeId": 197, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6442, "employeeId": 197, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1458, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1825, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2091, "employeeId": 198, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6298, "employeeId": 198, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7807, "employeeId": 198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12039, "employeeId": 198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2067, "employeeId": 199, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4603, "employeeId": 199, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2014, "employeeId": 200, "customEffectiveDate": "2018-05-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2084, "employeeId": 201, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1747, "employeeId": 202, "customEffectiveDate": "2018-06-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6342, "employeeId": 202, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7808, "employeeId": 202, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588190}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10310, "employeeId": 202, "customEffectiveDate": "2023-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11752, "employeeId": 202, "customEffectiveDate": "2023-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1433, "employeeId": 203, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1684, "employeeId": 203, "customEffectiveDate": "2020-04-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1467, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1834, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2101, "employeeId": 204, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2129, "employeeId": 205, "customEffectiveDate": "2019-11-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3466, "employeeId": 205, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4168, "employeeId": 205, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5942, "employeeId": 205, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2145, "employeeId": 206, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3543, "employeeId": 206, "customEffectiveDate": "2021-02-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6476, "employeeId": 206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8293, "employeeId": 206, "customEffectiveDate": "2023-02-08", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9118, "employeeId": 206, "customEffectiveDate": "2023-01-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10196, "employeeId": 206, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588191}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11850, "employeeId": 206, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Adjustment", "customPosition": "PRD-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2037, "employeeId": 207, "customEffectiveDate": "2019-11-15", "customDepartment#": "3700", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3195, "employeeId": 207, "customEffectiveDate": "2020-01-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6206, "employeeId": 207, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7809, "employeeId": 207, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2004, "employeeId": 208, "customEffectiveDate": "2018-07-30", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6371, "employeeId": 208, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12176, "employeeId": 208, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17152, "employeeId": 208, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2120, "employeeId": 209, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1432, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1798, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2056, "employeeId": 210, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6351, "employeeId": 210, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7812, "employeeId": 210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11990, "employeeId": 210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1447, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588192}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1812, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2078, "employeeId": 211, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2405, "employeeId": 212, "customEffectiveDate": "2020-07-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2736, "employeeId": 212, "customEffectiveDate": "2021-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6559, "employeeId": 212, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7814, "employeeId": 212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8187, "employeeId": 212, "customEffectiveDate": "2023-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11884, "employeeId": 212, "customEffectiveDate": "2023-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2097, "employeeId": 213, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6610, "employeeId": 213, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7815, "employeeId": 213, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12044, "employeeId": 213, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1400, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1770, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2023, "employeeId": 214, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6582, "employeeId": 214, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7816, "employeeId": 214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588193}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11941, "employeeId": 214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2156, "employeeId": 215, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1418, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1785, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2042, "employeeId": 216, "customEffectiveDate": "2018-12-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1745, "employeeId": 217, "customEffectiveDate": "2019-01-07", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6341, "employeeId": 217, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7817, "employeeId": 217, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11830, "employeeId": 217, "customEffectiveDate": "2023-04-06", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2132, "employeeId": 218, "customEffectiveDate": "2019-11-15", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1425, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1792, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2049, "employeeId": 219, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6350, "employeeId": 219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7819, "employeeId": 219, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11983, "employeeId": 219, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2024, "employeeId": 220, "customEffectiveDate": "2019-01-14", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588194}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1774, "employeeId": 221, "customEffectiveDate": "2019-01-14", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6363, "employeeId": 221, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7820, "employeeId": 221, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11947, "employeeId": 221, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2104, "employeeId": 222, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1406, "employeeId": 223, "customEffectiveDate": "2019-01-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1879, "employeeId": 224, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2110, "employeeId": 225, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2797, "employeeId": 225, "customEffectiveDate": "2021-01-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2047, "employeeId": 226, "customEffectiveDate": "2019-11-15", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2998, "employeeId": 226, "customEffectiveDate": "2021-01-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1877, "employeeId": 227, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2148, "employeeId": 227, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6242, "employeeId": 227, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588195}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7824, "employeeId": 227, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12111, "employeeId": 227, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2093, "employeeId": 228, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6300, "employeeId": 228, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7825, "employeeId": 228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12041, "employeeId": 228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1480, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1847, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2114, "employeeId": 229, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6356, "employeeId": 229, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7826, "employeeId": 229, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12062, "employeeId": 229, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1818, "employeeId": 230, "customEffectiveDate": "2019-11-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2121, "employeeId": 231, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1507, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1873, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2144, "employeeId": 232, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588196}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6309, "employeeId": 232, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7827, "employeeId": 232, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12106, "employeeId": 232, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1404, "employeeId": 233, "customEffectiveDate": "2019-04-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1773, "employeeId": 233, "customEffectiveDate": "2019-04-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6346, "employeeId": 233, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7828, "employeeId": 233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11944, "employeeId": 233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2040, "employeeId": 234, "customEffectiveDate": "2019-04-29", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6289, "employeeId": 234, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7829, "employeeId": 234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11979, "employeeId": 234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1453, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1819, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2085, "employeeId": 235, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6354, "employeeId": 235, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7830, "employeeId": 235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588197}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12028, "employeeId": 235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2141, "employeeId": 236, "customEffectiveDate": "2019-11-15", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4171, "employeeId": 236, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2063, "employeeId": 237, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1378, "employeeId": 238, "customEffectiveDate": "2019-05-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1744, "employeeId": 238, "customEffectiveDate": "2019-05-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1502, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1868, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2137, "employeeId": 239, "customEffectiveDate": "2019-11-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2150, "employeeId": 240, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2979, "employeeId": 240, "customEffectiveDate": "2021-04-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6699, "employeeId": 240, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8371, "employeeId": 240, "customEffectiveDate": "2021-06-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17188, "employeeId": 240, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 230, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1150, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1386, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588198}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1753, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2007, "employeeId": 241, "customEffectiveDate": "2019-05-30", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2106, "employeeId": 242, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3985, "employeeId": 242, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4601, "employeeId": 242, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6398, "employeeId": 242, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12272, "employeeId": 242, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1749, "employeeId": 243, "customEffectiveDate": "2019-06-10", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6343, "employeeId": 243, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7833, "employeeId": 243, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11921, "employeeId": 243, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1530, "employeeId": 244, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2166, "employeeId": 244, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1429, "employeeId": 245, "customEffectiveDate": "2020-01-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1935, "employeeId": 245, "customEffectiveDate": "2020-06-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2053, "employeeId": 245, "customEffectiveDate": "2020-06-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3063, "employeeId": 245, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588199}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5210, "employeeId": 245, "customEffectiveDate": "2022-05-02", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1402, "employeeId": 246, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1440, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1805, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2066, "employeeId": 247, "customEffectiveDate": "2019-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1524, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1887, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2160, "employeeId": 248, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1523, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1886, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2159, "employeeId": 249, "customEffectiveDate": "2019-11-15", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2094, "employeeId": 250, "customEffectiveDate": "2019-08-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4113, "employeeId": 250, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6609, "employeeId": 250, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7852, "employeeId": 250, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2011, "employeeId": 251, "customEffectiveDate": "2019-08-12", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2984, "employeeId": 251, "customEffectiveDate": "2021-02-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588200}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1499, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1865, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2134, "employeeId": 252, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6240, "employeeId": 252, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7835, "employeeId": 252, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12087, "employeeId": 252, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-66", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2161, "employeeId": 253, "customEffectiveDate": "2019-11-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6700, "employeeId": 253, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17191, "employeeId": 253, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1470, "employeeId": 254, "customEffectiveDate": "2019-11-15", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1377, "employeeId": 255, "customEffectiveDate": "2019-09-03", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1743, "employeeId": 255, "customEffectiveDate": "2019-09-03", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6340, "employeeId": 255, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7837, "employeeId": 255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11919, "employeeId": 255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-68", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2096, "employeeId": 256, "customEffectiveDate": "2019-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2157, "employeeId": 257, "customEffectiveDate": "2019-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588201}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4609, "employeeId": 257, "customEffectiveDate": "2022-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6313, "employeeId": 257, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7839, "employeeId": 257, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1403, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1772, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2025, "employeeId": 258, "customEffectiveDate": "2019-10-14", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1279, "employeeId": 259, "customEffectiveDate": "2009-11-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2306, "employeeId": 259, "customEffectiveDate": "2009-11-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1254, "employeeId": 260, "customEffectiveDate": "2010-02-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2255, "employeeId": 260, "customEffectiveDate": "2010-02-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6098, "employeeId": 260, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12212, "employeeId": 260, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2389, "employeeId": 261, "customEffectiveDate": "2010-10-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2913, "employeeId": 261, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6116, "employeeId": 261, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12329, "employeeId": 261, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "SYS-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 767, "employeeId": 262, "customEffectiveDate": "2011-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588202}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2276, "employeeId": 262, "customEffectiveDate": "2011-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2642, "employeeId": 262, "customEffectiveDate": "2021-01-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3455, "employeeId": 262, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4199, "employeeId": 262, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5945, "employeeId": 262, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8233, "employeeId": 262, "customEffectiveDate": "2023-01-14", "customDepartment#": "3210", "customJobCode": "User Innovation Initiatives", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10512, "employeeId": 262, "customEffectiveDate": "2023-09-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11720, "employeeId": 262, "customEffectiveDate": "2023-09-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1559, "employeeId": 263, "customEffectiveDate": "2011-05-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2249, "employeeId": 263, "customEffectiveDate": "2018-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2922, "employeeId": 263, "customEffectiveDate": "2009-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6366, "employeeId": 263, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12207, "employeeId": 263, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17163, "employeeId": 263, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1268, "employeeId": 264, "customEffectiveDate": "2011-08-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2286, "employeeId": 264, "customEffectiveDate": "2011-08-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588203}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6124, "employeeId": 264, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10234, "employeeId": 264, "customEffectiveDate": "2023-03-31", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1181, "employeeId": 265, "customEffectiveDate": "2012-07-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2252, "employeeId": 265, "customEffectiveDate": "2012-07-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6537, "employeeId": 265, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7756, "employeeId": 265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11978, "employeeId": 265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1109, "employeeId": 266, "customEffectiveDate": "2012-07-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2213, "employeeId": 266, "customEffectiveDate": "2012-07-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2489, "employeeId": 266, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10063, "employeeId": 266, "customEffectiveDate": "2021-03-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2384, "employeeId": 267, "customEffectiveDate": "2012-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6556, "employeeId": 267, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7757, "employeeId": 267, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2216, "employeeId": 268, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2519, "employeeId": 268, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6033, "employeeId": 268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588204}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12178, "employeeId": 268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1315, "employeeId": 269, "customEffectiveDate": "2012-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2393, "employeeId": 269, "customEffectiveDate": "2012-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2757, "employeeId": 269, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6089, "employeeId": 269, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12332, "employeeId": 269, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 999, "employeeId": 270, "customEffectiveDate": "2013-05-13", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2325, "employeeId": 270, "customEffectiveDate": "2013-05-13", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2230, "employeeId": 271, "customEffectiveDate": "2013-09-02", "customDepartment#": "2120", "customJobCode": "Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1310, "employeeId": 272, "customEffectiveDate": "2013-09-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1309, "employeeId": 273, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2386, "employeeId": 273, "customEffectiveDate": "2013-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6117, "employeeId": 273, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12324, "employeeId": 273, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "ENG-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2351, "employeeId": 274, "customEffectiveDate": "2014-01-20", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2504, "employeeId": 274, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1198, "employeeId": 275, "customEffectiveDate": "2014-03-11", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588205}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1173, "employeeId": 276, "customEffectiveDate": "2014-05-19", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2234, "employeeId": 276, "customEffectiveDate": "2014-05-19", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2257, "employeeId": 277, "customEffectiveDate": "2017-11-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2250, "employeeId": 278, "customEffectiveDate": "2014-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2490, "employeeId": 278, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3295, "employeeId": 278, "customEffectiveDate": "2021-11-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4198, "employeeId": 278, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588206}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5944, "employeeId": 278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12209, "employeeId": 278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1260, "employeeId": 280, "customEffectiveDate": "2014-08-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2266, "employeeId": 280, "customEffectiveDate": "2014-08-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3172, "employeeId": 280, "customEffectiveDate": "2021-06-14", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4644, "employeeId": 280, "customEffectiveDate": "2021-12-06", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6128, "employeeId": 280, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9226, "employeeId": 280, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11815, "employeeId": 280, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588207}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2321, "employeeId": 281, "customEffectiveDate": "2014-08-04", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2474, "employeeId": 281, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6037, "employeeId": 281, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12264, "employeeId": 281, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2198, "employeeId": 282, "customEffectiveDate": "2014-08-06", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3193, "employeeId": 282, "customEffectiveDate": "2021-07-05", "customDepartment#": "2110", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1307, "employeeId": 283, "customEffectiveDate": "2014-08-06", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1930, "employeeId": 283, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2200, "employeeId": 283, "customEffectiveDate": "2020-07-29", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1256, "employeeId": 284, "customEffectiveDate": "2014-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2259, "employeeId": 284, "customEffectiveDate": "2014-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588208}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1278, "employeeId": 285, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2195, "employeeId": 286, "customEffectiveDate": "2014-10-15", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6114, "employeeId": 286, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10379, "employeeId": 286, "customEffectiveDate": "2022-12-31", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1138, "employeeId": 287, "customEffectiveDate": "2014-11-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2385, "employeeId": 287, "customEffectiveDate": "2014-11-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6263, "employeeId": 287, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7761, "employeeId": 287, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12116, "employeeId": 287, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1169, "employeeId": 288, "customEffectiveDate": "2015-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2228, "employeeId": 288, "customEffectiveDate": "2015-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588209}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1617, "employeeId": 289, "customEffectiveDate": "2015-01-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2298, "employeeId": 289, "customEffectiveDate": "2017-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2498, "employeeId": 289, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6264, "employeeId": 289, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7763, "employeeId": 289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12018, "employeeId": 289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2382, "employeeId": 290, "customEffectiveDate": "2015-01-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2507, "employeeId": 290, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6547, "employeeId": 290, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7764, "employeeId": 290, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1298, "employeeId": 291, "customEffectiveDate": "2015-03-23", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588210}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2355, "employeeId": 291, "customEffectiveDate": "2015-03-23", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6085, "employeeId": 291, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10163, "employeeId": 291, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11781, "employeeId": 291, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 986, "employeeId": 292, "customEffectiveDate": "2015-05-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2261, "employeeId": 292, "customEffectiveDate": "2015-05-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6456, "employeeId": 292, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10209, "employeeId": 292, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10374, "employeeId": 292, "customEffectiveDate": "2023-06-30", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588211}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2242, "employeeId": 293, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6097, "employeeId": 293, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9223, "employeeId": 293, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11813, "employeeId": 293, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-101", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1280, "employeeId": 294, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2307, "employeeId": 294, "customEffectiveDate": "2015-06-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5295, "employeeId": 294, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6149, "employeeId": 294, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12255, "employeeId": 294, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1110, "employeeId": 295, "customEffectiveDate": "2015-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6245, "employeeId": 295, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7767, "employeeId": 295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11925, "employeeId": 295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2241, "employeeId": 296, "customEffectiveDate": "2015-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6390, "employeeId": 296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588212}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12195, "employeeId": 296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2330, "employeeId": 297, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2475, "employeeId": 297, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6038, "employeeId": 297, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12277, "employeeId": 297, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1314, "employeeId": 298, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2391, "employeeId": 298, "customEffectiveDate": "2015-09-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6016, "employeeId": 298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12331, "employeeId": 298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2337, "employeeId": 299, "customEffectiveDate": "2015-09-14", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2455, "employeeId": 299, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2762, "employeeId": 299, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3336, "employeeId": 299, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6126, "employeeId": 299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12292, "employeeId": 299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1186, "employeeId": 300, "customEffectiveDate": "2015-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2283, "employeeId": 300, "customEffectiveDate": "2015-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588213}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6541, "employeeId": 300, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7769, "employeeId": 300, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12014, "employeeId": 300, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1265, "employeeId": 301, "customEffectiveDate": "2015-11-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2279, "employeeId": 301, "customEffectiveDate": "2015-11-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6076, "employeeId": 301, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12239, "employeeId": 301, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2397, "employeeId": 302, "customEffectiveDate": "2016-01-11", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2470, "employeeId": 302, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6024, "employeeId": 302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12337, "employeeId": 302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1299, "employeeId": 303, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2227, "employeeId": 304, "customEffectiveDate": "2016-02-29", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2462, "employeeId": 304, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2774, "employeeId": 304, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2987, "employeeId": 304, "customEffectiveDate": "2021-05-11", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6138, "employeeId": 304, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588214}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11711, "employeeId": 304, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1100, "employeeId": 305, "customEffectiveDate": "2016-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2280, "employeeId": 305, "customEffectiveDate": "2016-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2493, "employeeId": 305, "customEffectiveDate": "2020-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1562, "employeeId": 306, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2342, "employeeId": 307, "customEffectiveDate": "2016-05-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6104, "employeeId": 307, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10346, "employeeId": 307, "customEffectiveDate": "2023-06-30", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1308, "employeeId": 308, "customEffectiveDate": "2016-06-01", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2323, "employeeId": 309, "customEffectiveDate": "2016-10-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2499, "employeeId": 309, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4611, "employeeId": 309, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6554, "employeeId": 309, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7774, "employeeId": 309, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8236, "employeeId": 309, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1305, "employeeId": 310, "customEffectiveDate": "2016-11-07", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2376, "employeeId": 310, "customEffectiveDate": "2016-11-07", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588215}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5993, "employeeId": 310, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12298, "employeeId": 310, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2378, "employeeId": 311, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5972, "employeeId": 311, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12319, "employeeId": 311, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2339, "employeeId": 312, "customEffectiveDate": "2016-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4615, "employeeId": 312, "customEffectiveDate": "2022-02-15", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6193, "employeeId": 312, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7713, "employeeId": 312, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7777, "employeeId": 312, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11907, "employeeId": 312, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 934, "employeeId": 313, "customEffectiveDate": "2017-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2295, "employeeId": 313, "customEffectiveDate": "2017-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6679, "employeeId": 313, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2193, "employeeId": 314, "customEffectiveDate": "2017-02-27", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6000, "employeeId": 314, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588216}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12280, "employeeId": 314, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2368, "employeeId": 315, "customEffectiveDate": "2017-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3323, "employeeId": 315, "customEffectiveDate": "2021-08-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6262, "employeeId": 315, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7782, "employeeId": 315, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12097, "employeeId": 315, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2206, "employeeId": 316, "customEffectiveDate": "2017-04-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2454, "employeeId": 316, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2488, "employeeId": 316, "customEffectiveDate": "2020-10-01", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2766, "employeeId": 316, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2991, "employeeId": 316, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6047, "employeeId": 316, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12171, "employeeId": 316, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1351, "employeeId": 317, "customEffectiveDate": null, "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2194, "employeeId": 317, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2501, "employeeId": 317, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6113, "employeeId": 317, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12295, "employeeId": 317, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588217}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 727, "employeeId": 318, "customEffectiveDate": "2017-04-18", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2334, "employeeId": 318, "customEffectiveDate": "2017-04-18", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17179, "employeeId": 318, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2380, "employeeId": 319, "customEffectiveDate": "2019-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3265, "employeeId": 319, "customEffectiveDate": "2021-08-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6370, "employeeId": 319, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6739, "employeeId": 319, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12155, "employeeId": 319, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15963, "employeeId": 319, "customEffectiveDate": "2024-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Manager", "customPosition": "GA-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1120, "employeeId": 320, "customEffectiveDate": "2017-05-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2263, "employeeId": 320, "customEffectiveDate": "2017-05-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6256, "employeeId": 320, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7784, "employeeId": 320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11987, "employeeId": 320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1273, "employeeId": 321, "customEffectiveDate": "2017-05-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2296, "employeeId": 321, "customEffectiveDate": "2017-05-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6101, "employeeId": 321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588218}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12247, "employeeId": 321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1208, "employeeId": 322, "customEffectiveDate": "2017-05-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1621, "employeeId": 322, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2357, "employeeId": 322, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6499, "employeeId": 322, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7785, "employeeId": 322, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12086, "employeeId": 322, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1079, "employeeId": 323, "customEffectiveDate": "2017-05-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2232, "employeeId": 323, "customEffectiveDate": "2017-05-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2287, "employeeId": 324, "customEffectiveDate": "2017-05-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2495, "employeeId": 324, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6077, "employeeId": 324, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10446, "employeeId": 324, "customEffectiveDate": "2023-08-14", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11745, "employeeId": 324, "customEffectiveDate": "2023-08-14", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1712, "employeeId": 325, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2343, "employeeId": 326, "customEffectiveDate": "2017-06-01", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2468, "employeeId": 326, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588219}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2500, "employeeId": 326, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3192, "employeeId": 326, "customEffectiveDate": "2021-07-05", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6142, "employeeId": 326, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10545, "employeeId": 326, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11714, "employeeId": 326, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2294, "employeeId": 327, "customEffectiveDate": "2017-07-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2497, "employeeId": 327, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6079, "employeeId": 327, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10450, "employeeId": 327, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11743, "employeeId": 327, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1289, "employeeId": 328, "customEffectiveDate": "2017-07-10", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2333, "employeeId": 328, "customEffectiveDate": "2017-07-10", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6057, "employeeId": 328, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10505, "employeeId": 328, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11724, "employeeId": 328, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "ENG-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1686, "employeeId": 329, "customEffectiveDate": "2017-07-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2187, "employeeId": 329, "customEffectiveDate": "2020-03-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3457, "employeeId": 329, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588220}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4196, "employeeId": 329, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5936, "employeeId": 329, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10056, "employeeId": 329, "customEffectiveDate": "2023-04-03", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11833, "employeeId": 329, "customEffectiveDate": "2023-04-03", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2265, "employeeId": 330, "customEffectiveDate": "2017-07-17", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5983, "employeeId": 330, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10370, "employeeId": 330, "customEffectiveDate": "2023-01-24", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2318, "employeeId": 331, "customEffectiveDate": "2017-07-17", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2452, "employeeId": 331, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2759, "employeeId": 331, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5956, "employeeId": 331, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12262, "employeeId": 331, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1290, "employeeId": 332, "customEffectiveDate": "2017-07-17", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1899, "employeeId": 332, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2335, "employeeId": 332, "customEffectiveDate": "2020-03-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5299, "employeeId": 332, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6150, "employeeId": 332, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588221}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12284, "employeeId": 332, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2303, "employeeId": 333, "customEffectiveDate": "2019-10-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1271, "employeeId": 334, "customEffectiveDate": "2017-08-07", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2293, "employeeId": 334, "customEffectiveDate": "2020-07-20", "customDepartment#": "2120", "customJobCode": "Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2461, "employeeId": 334, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2272, "employeeId": 335, "customEffectiveDate": "2017-08-14", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2472, "employeeId": 335, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6028, "employeeId": 335, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12232, "employeeId": 335, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1366, "employeeId": 336, "customEffectiveDate": "2017-08-21", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2364, "employeeId": 336, "customEffectiveDate": "2017-08-21", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3259, "employeeId": 336, "customEffectiveDate": "2021-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6546, "employeeId": 336, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7790, "employeeId": 336, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12093, "employeeId": 336, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2370, "employeeId": 337, "customEffectiveDate": "2017-08-21", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2469, "employeeId": 337, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588222}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4237, "employeeId": 337, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6044, "employeeId": 337, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12313, "employeeId": 337, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 971, "employeeId": 338, "customEffectiveDate": "2017-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2211, "employeeId": 338, "customEffectiveDate": "2017-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2320, "employeeId": 339, "customEffectiveDate": "2017-09-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2510, "employeeId": 339, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6154, "employeeId": 339, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12263, "employeeId": 339, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1162, "employeeId": 340, "customEffectiveDate": "2017-09-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2324, "employeeId": 340, "customEffectiveDate": "2017-09-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6227, "employeeId": 340, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7792, "employeeId": 340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12052, "employeeId": 340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1114, "employeeId": 341, "customEffectiveDate": "2017-09-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6254, "employeeId": 341, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7794, "employeeId": 341, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11965, "employeeId": 341, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588223}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 698, "employeeId": 342, "customEffectiveDate": "2017-10-01", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2264, "employeeId": 342, "customEffectiveDate": "2019-01-11", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2449, "employeeId": 342, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3545, "employeeId": 342, "customEffectiveDate": "2021-05-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3998, "employeeId": 342, "customEffectiveDate": "2021-12-22", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6131, "employeeId": 342, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10347, "employeeId": 342, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 686, "employeeId": 343, "customEffectiveDate": "2017-10-16", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5923, "employeeId": 343, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7795, "employeeId": 343, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10595, "employeeId": 343, "customEffectiveDate": "2023-09-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11717, "employeeId": 343, "customEffectiveDate": "2023-09-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New department", "customPosition": "FO-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2282, "employeeId": 344, "customEffectiveDate": "2017-10-16", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2494, "employeeId": 344, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1311, "employeeId": 345, "customEffectiveDate": "2017-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2387, "employeeId": 345, "customEffectiveDate": "2017-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2383, "employeeId": 346, "customEffectiveDate": "2018-02-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588224}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2508, "employeeId": 346, "customEffectiveDate": "2020-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2189, "employeeId": 347, "customEffectiveDate": "2018-02-12", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6010, "employeeId": 347, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9224, "employeeId": 347, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11814, "employeeId": 347, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2233, "employeeId": 348, "customEffectiveDate": "2018-04-02", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5125, "employeeId": 348, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6532, "employeeId": 348, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7805, "employeeId": 348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1362, "employeeId": 349, "customEffectiveDate": "2018-05-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1084, "employeeId": 350, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2202, "employeeId": 350, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2388, "employeeId": 351, "customEffectiveDate": "2018-06-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2509, "employeeId": 351, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6115, "employeeId": 351, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12326, "employeeId": 351, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1354, "employeeId": 352, "customEffectiveDate": "2018-06-07", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2398, "employeeId": 352, "customEffectiveDate": "2018-06-07", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588225}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2916, "employeeId": 352, "customEffectiveDate": "2021-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6462, "employeeId": 352, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9119, "employeeId": 352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10197, "employeeId": 352, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11853, "employeeId": 352, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "PRD-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1616, "employeeId": 353, "customEffectiveDate": "2018-07-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3459, "employeeId": 353, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4200, "employeeId": 353, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5931, "employeeId": 353, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7661, "employeeId": 353, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12129, "employeeId": 353, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "Developer Community", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-1", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2367, "employeeId": 354, "customEffectiveDate": "2018-07-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588226}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2506, "employeeId": 354, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6155, "employeeId": 354, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12312, "employeeId": 354, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Sdn-ogm", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2289, "employeeId": 355, "customEffectiveDate": "2018-08-06", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2453, "employeeId": 355, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2761, "employeeId": 355, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5955, "employeeId": 355, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10507, "employeeId": 355, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11015, "employeeId": 355, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of aura role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11703, "employeeId": 355, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of aura role", "customPosition": "ENG-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1157, "employeeId": 356, "customEffectiveDate": "2018-08-13", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2390, "employeeId": 356, "customEffectiveDate": "2022-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6548, "employeeId": 356, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7810, "employeeId": 356, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2186, "employeeId": 357, "customEffectiveDate": "2018-09-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6317, "employeeId": 357, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588227}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7811, "employeeId": 357, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11917, "employeeId": 357, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2394, "employeeId": 358, "customEffectiveDate": "2019-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2989, "employeeId": 358, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6052, "employeeId": 358, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12333, "employeeId": 358, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2214, "employeeId": 359, "customEffectiveDate": "2018-09-10", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5920, "employeeId": 359, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7813, "employeeId": 359, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10020, "employeeId": 359, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11803, "employeeId": 359, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1710, "employeeId": 360, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1282, "employeeId": 361, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2311, "employeeId": 361, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2467, "employeeId": 361, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6021, "employeeId": 361, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12258, "employeeId": 361, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588228}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2336, "employeeId": 362, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5992, "employeeId": 362, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12286, "employeeId": 362, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2350, "employeeId": 363, "customEffectiveDate": "2018-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2503, "employeeId": 363, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6083, "employeeId": 363, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10451, "employeeId": 363, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11744, "employeeId": 363, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1242, "employeeId": 364, "customEffectiveDate": "2018-10-15", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3305, "employeeId": 364, "customEffectiveDate": "2021-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6461, "employeeId": 364, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10534, "employeeId": 364, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1267, "employeeId": 365, "customEffectiveDate": "2018-10-15", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2285, "employeeId": 365, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2465, "employeeId": 365, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6029, "employeeId": 365, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588229}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7697, "employeeId": 365, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9225, "employeeId": 365, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11816, "employeeId": 365, "customEffectiveDate": "2023-05-03", "customDepartment#": "2110", "customJobCode": "Technical Coordination", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2341, "employeeId": 366, "customEffectiveDate": "2018-11-19", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2479, "employeeId": 366, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2603, "employeeId": 366, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2824, "employeeId": 366, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5980, "employeeId": 366, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10175, "employeeId": 366, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11779, "employeeId": 366, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2361, "employeeId": 367, "customEffectiveDate": "2018-11-27", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2505, "employeeId": 367, "customEffectiveDate": "2020-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588230}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1281, "employeeId": 368, "customEffectiveDate": "2019-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2309, "employeeId": 368, "customEffectiveDate": "2019-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2769, "employeeId": 368, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5487, "employeeId": 368, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6134, "employeeId": 368, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11018, "employeeId": 368, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11148, "employeeId": 368, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11685, "employeeId": 368, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "ENG-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1016, "employeeId": 369, "customEffectiveDate": "2018-04-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2372, "employeeId": 369, "customEffectiveDate": "2018-04-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6484, "employeeId": 369, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6749, "employeeId": 369, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11616, "employeeId": 369, "customEffectiveDate": "2019-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12150, "employeeId": 369, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1361, "employeeId": 370, "customEffectiveDate": "2019-01-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2277, "employeeId": 370, "customEffectiveDate": "2019-01-07", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588231}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2940, "employeeId": 370, "customEffectiveDate": "2021-04-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6498, "employeeId": 370, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7818, "employeeId": 370, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12004, "employeeId": 370, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2231, "employeeId": 371, "customEffectiveDate": "2019-01-14", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6464, "employeeId": 371, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10188, "employeeId": 371, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1266, "employeeId": 372, "customEffectiveDate": "2019-01-14", "customDepartment#": "2110", "customJobCode": "Fabric", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1929, "employeeId": 372, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2281, "employeeId": 372, "customEffectiveDate": "2020-06-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6100, "employeeId": 372, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9189, "employeeId": 372, "customEffectiveDate": "2023-04-11", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11827, "employeeId": 372, "customEffectiveDate": "2023-04-11", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2197, "employeeId": 373, "customEffectiveDate": "2019-01-14", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2990, "employeeId": 373, "customEffectiveDate": "2021-04-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6051, "employeeId": 373, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12311, "employeeId": 373, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588232}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1245, "employeeId": 374, "customEffectiveDate": "2019-01-15", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3954, "employeeId": 374, "customEffectiveDate": "2021-12-29", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5995, "employeeId": 374, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12174, "employeeId": 374, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15899, "employeeId": 374, "customEffectiveDate": "2024-01-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 958, "employeeId": 375, "customEffectiveDate": "2019-01-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2360, "employeeId": 375, "customEffectiveDate": "2019-01-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3369, "employeeId": 375, "customEffectiveDate": "2021-09-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6681, "employeeId": 375, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17178, "employeeId": 375, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1205, "employeeId": 376, "customEffectiveDate": "2019-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2352, "employeeId": 376, "customEffectiveDate": "2019-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6545, "employeeId": 376, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7821, "employeeId": 376, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1364, "employeeId": 378, "customEffectiveDate": "2019-02-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2358, "employeeId": 378, "customEffectiveDate": "2019-02-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588233}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1165, "employeeId": 379, "customEffectiveDate": "2019-12-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2344, "employeeId": 379, "customEffectiveDate": "2019-12-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1111, "employeeId": 380, "customEffectiveDate": "2019-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6250, "employeeId": 380, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7822, "employeeId": 380, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11928, "employeeId": 380, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2246, "employeeId": 381, "customEffectiveDate": "2019-03-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2640, "employeeId": 381, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6073, "employeeId": 381, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7730, "employeeId": 381, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11772, "employeeId": 381, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-103", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1187, "employeeId": 382, "customEffectiveDate": "2019-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2300, "employeeId": 382, "customEffectiveDate": "2019-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6542, "employeeId": 382, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7823, "employeeId": 382, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12019, "employeeId": 382, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2275, "employeeId": 383, "customEffectiveDate": "2019-03-04", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588234}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2477, "employeeId": 383, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2601, "employeeId": 383, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2823, "employeeId": 383, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5977, "employeeId": 383, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10185, "employeeId": 383, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11776, "employeeId": 383, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 917, "employeeId": 384, "customEffectiveDate": "2019-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2220, "employeeId": 384, "customEffectiveDate": "2019-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2486, "employeeId": 384, "customEffectiveDate": "2020-10-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6693, "employeeId": 384, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17154, "employeeId": 384, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2188, "employeeId": 385, "customEffectiveDate": "2019-04-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5967, "employeeId": 385, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12205, "employeeId": 385, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1276, "employeeId": 386, "customEffectiveDate": "2019-04-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2302, "employeeId": 386, "customEffectiveDate": "2019-04-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588235}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6162, "employeeId": 386, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9135, "employeeId": 386, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11832, "employeeId": 386, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1095, "employeeId": 387, "customEffectiveDate": null, "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1297, "employeeId": 388, "customEffectiveDate": "2019-04-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2354, "employeeId": 388, "customEffectiveDate": "2019-04-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6105, "employeeId": 388, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12305, "employeeId": 388, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2299, "employeeId": 389, "customEffectiveDate": "2019-04-17", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5999, "employeeId": 389, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12249, "employeeId": 389, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16050, "employeeId": 389, "customEffectiveDate": "2024-01-23", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Manager", "customPosition": "ENG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1155, "employeeId": 390, "customEffectiveDate": "2019-05-01", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2329, "employeeId": 390, "customEffectiveDate": "2019-05-01", "customDepartment#": "3800", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1178, "employeeId": 391, "customEffectiveDate": "2019-05-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2237, "employeeId": 391, "customEffectiveDate": "2019-05-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6496, "employeeId": 391, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588236}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7831, "employeeId": 391, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11954, "employeeId": 391, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1243, "employeeId": 392, "customEffectiveDate": "2019-05-13", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6054, "employeeId": 392, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12172, "employeeId": 392, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1090, "employeeId": 393, "customEffectiveDate": "2019-05-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4636, "employeeId": 393, "customEffectiveDate": "2022-03-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7832, "employeeId": 393, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11937, "employeeId": 393, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15892, "employeeId": 393, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1237, "employeeId": 394, "customEffectiveDate": "2019-06-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2327, "employeeId": 394, "customEffectiveDate": "2019-06-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2223, "employeeId": 395, "customEffectiveDate": "2019-06-10", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2476, "employeeId": 395, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2600, "employeeId": 395, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2826, "employeeId": 395, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588237}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5974, "employeeId": 395, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10183, "employeeId": 395, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11769, "employeeId": 395, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1253, "employeeId": 396, "customEffectiveDate": "2019-06-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2254, "employeeId": 396, "customEffectiveDate": "2019-06-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5293, "employeeId": 396, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6145, "employeeId": 396, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8164, "employeeId": 396, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9178, "employeeId": 396, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11443, "employeeId": 396, "customEffectiveDate": "2023-11-21", "customDepartment#": "2120", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11654, "employeeId": 396, "customEffectiveDate": "2023-11-21", "customDepartment#": "2120", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1248, "employeeId": 397, "customEffectiveDate": "2019-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588238}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2225, "employeeId": 397, "customEffectiveDate": "2019-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2451, "employeeId": 397, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2758, "employeeId": 397, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1230, "employeeId": 398, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2278, "employeeId": 398, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2458, "employeeId": 398, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2581, "employeeId": 398, "customEffectiveDate": "2020-11-11", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5970, "employeeId": 398, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12237, "employeeId": 398, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17239, "employeeId": 398, "customEffectiveDate": "2024-02-26", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Engineering Team", "customPosition": "ENG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2347, "employeeId": 399, "customEffectiveDate": "2019-07-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2502, "employeeId": 399, "customEffectiveDate": "2020-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6328, "employeeId": 399, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7834, "employeeId": 399, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12069, "employeeId": 399, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1240, "employeeId": 400, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588239}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2373, "employeeId": 400, "customEffectiveDate": "2019-07-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2457, "employeeId": 400, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2764, "employeeId": 400, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5962, "employeeId": 400, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10504, "employeeId": 400, "customEffectiveDate": "2023-08-22", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11738, "employeeId": 400, "customEffectiveDate": "2023-08-22", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2340, "employeeId": 401, "customEffectiveDate": "2019-07-03", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4610, "employeeId": 401, "customEffectiveDate": "2022-03-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6375, "employeeId": 401, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6744, "employeeId": 401, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13727, "employeeId": 401, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1134, "employeeId": 402, "customEffectiveDate": "2019-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2353, "employeeId": 402, "customEffectiveDate": "2019-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6261, "employeeId": 402, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7836, "employeeId": 402, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12081, "employeeId": 402, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-67", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588240}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2219, "employeeId": 403, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2450, "employeeId": 403, "customEffectiveDate": "2019-09-23", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5758, "employeeId": 403, "customEffectiveDate": "2022-09-05", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5951, "employeeId": 403, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10594, "employeeId": 403, "customEffectiveDate": "2023-11-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13711, "employeeId": 403, "customEffectiveDate": "2023-11-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "ENG-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1249, "employeeId": 404, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2238, "employeeId": 404, "customEffectiveDate": "2019-09-02", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1135, "employeeId": 405, "customEffectiveDate": "2019-09-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2356, "employeeId": 405, "customEffectiveDate": "2019-09-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5289, "employeeId": 405, "customEffectiveDate": "2022-07-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6249, "employeeId": 405, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7838, "employeeId": 405, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12085, "employeeId": 405, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2235, "employeeId": 406, "customEffectiveDate": "2019-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6534, "employeeId": 406, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7840, "employeeId": 406, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588241}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11948, "employeeId": 406, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1250, "employeeId": 407, "customEffectiveDate": null, "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1262, "employeeId": 408, "customEffectiveDate": "2019-10-01", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5416, "employeeId": 408, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6020, "employeeId": 408, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12230, "employeeId": 408, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2314, "employeeId": 409, "customEffectiveDate": "2019-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6467, "employeeId": 409, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10203, "employeeId": 409, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11841, "employeeId": 409, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-4", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2331, "employeeId": 410, "customEffectiveDate": "2019-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2886, "employeeId": 410, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3075, "employeeId": 410, "customEffectiveDate": "2021-06-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6170, "employeeId": 410, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12278, "employeeId": 410, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1264, "employeeId": 411, "customEffectiveDate": "2019-10-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588242}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2274, "employeeId": 411, "customEffectiveDate": "2019-10-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2491, "employeeId": 411, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6075, "employeeId": 411, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10452, "employeeId": 411, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11742, "employeeId": 411, "customEffectiveDate": "2023-08-15", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1222, "employeeId": 412, "customEffectiveDate": "2019-10-14", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5778, "employeeId": 412, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10176, "employeeId": 412, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11770, "employeeId": 412, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-199", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1107, "employeeId": 413, "customEffectiveDate": "2019-10-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2381, "employeeId": 413, "customEffectiveDate": "2019-10-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3520, "employeeId": 413, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6509, "employeeId": 413, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7841, "employeeId": 413, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10075, "employeeId": 413, "customEffectiveDate": "2023-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11807, "employeeId": 413, "customEffectiveDate": "2023-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2292, "employeeId": 414, "customEffectiveDate": "2019-10-21", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588243}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3006, "employeeId": 414, "customEffectiveDate": "2020-11-30", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4706, "employeeId": 414, "customEffectiveDate": "2022-03-15", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6457, "employeeId": 414, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10367, "employeeId": 414, "customEffectiveDate": "2023-01-18", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1117, "employeeId": 415, "customEffectiveDate": "2019-11-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2253, "employeeId": 415, "customEffectiveDate": "2019-11-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2199, "employeeId": 416, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6088, "employeeId": 416, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9194, "employeeId": 416, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11822, "employeeId": 416, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1257, "employeeId": 418, "customEffectiveDate": "2020-01-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2260, "employeeId": 418, "customEffectiveDate": "2020-01-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6121, "employeeId": 418, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12217, "employeeId": 418, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-66", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2072, "employeeId": 419, "customEffectiveDate": "2019-10-29", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2291, "employeeId": 421, "customEffectiveDate": "2019-11-04", "customDepartment#": "2110", "customJobCode": "Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2473, "employeeId": 421, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588244}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6030, "employeeId": 421, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12246, "employeeId": 421, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1641, "employeeId": 428, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1648, "employeeId": 430, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1646, "employeeId": 432, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1637, "employeeId": 433, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1627, "employeeId": 436, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1634, "employeeId": 440, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1635, "employeeId": 442, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1645, "employeeId": 448, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1632, "employeeId": 451, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1638, "employeeId": 452, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1642, "employeeId": 456, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1636, "employeeId": 458, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1639, "employeeId": 461, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1640, "employeeId": 463, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1630, "employeeId": 468, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588245}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1628, "employeeId": 470, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1631, "employeeId": 471, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1643, "employeeId": 472, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1633, "employeeId": 476, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1629, "employeeId": 478, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1644, "employeeId": 483, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2814, "employeeId": 489, "customEffectiveDate": "2019-09-11", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1647, "employeeId": 496, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2036, "employeeId": 499, "customEffectiveDate": "2020-02-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6286, "employeeId": 499, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7858, "employeeId": 499, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11966, "employeeId": 499, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2205, "employeeId": 533, "customEffectiveDate": "2020-05-04", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5964, "employeeId": 533, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12169, "employeeId": 533, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-75", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1923, "employeeId": 546, "customEffectiveDate": "2020-06-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3349, "employeeId": 546, "customEffectiveDate": "2021-09-06", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588246}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5274, "employeeId": 546, "customEffectiveDate": "2022-07-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6152, "employeeId": 546, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12315, "employeeId": 546, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1716, "employeeId": 547, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1715, "employeeId": 548, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1713, "employeeId": 552, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1714, "employeeId": 563, "customEffectiveDate": null, "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2190, "employeeId": 569, "customEffectiveDate": "2019-12-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2770, "employeeId": 569, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4655, "employeeId": 569, "customEffectiveDate": "2022-02-14", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6132, "employeeId": 569, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11019, "employeeId": 569, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11702, "employeeId": 569, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "ENG-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2322, "employeeId": 570, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5971, "employeeId": 570, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12265, "employeeId": 570, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17419, "employeeId": 570, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588247}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1244, "employeeId": 571, "customEffectiveDate": "2020-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2209, "employeeId": 571, "customEffectiveDate": "2020-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2768, "employeeId": 571, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1094, "employeeId": 572, "customEffectiveDate": "2019-11-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6325, "employeeId": 572, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7843, "employeeId": 572, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11960, "employeeId": 572, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2196, "employeeId": 573, "customEffectiveDate": "2019-10-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6331, "employeeId": 573, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7842, "employeeId": 573, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12090, "employeeId": 573, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2313, "employeeId": 574, "customEffectiveDate": "2020-01-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2478, "employeeId": 574, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "aws - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2602, "employeeId": 574, "customEffectiveDate": "2020-12-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5986, "employeeId": 574, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12259, "employeeId": 574, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2267, "employeeId": 575, "customEffectiveDate": "2020-02-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588248}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2825, "employeeId": 575, "customEffectiveDate": "2021-02-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5978, "employeeId": 575, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10180, "employeeId": 575, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11777, "employeeId": 575, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16941, "employeeId": 575, "customEffectiveDate": "2024-04-01", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Entity", "customPosition": "ENG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1317, "employeeId": 576, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2396, "employeeId": 576, "customEffectiveDate": "2019-11-18", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6072, "employeeId": 576, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12334, "employeeId": 576, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2301, "employeeId": 577, "customEffectiveDate": "2019-12-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2771, "employeeId": 577, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1285, "employeeId": 578, "customEffectiveDate": "2019-12-02", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2326, "employeeId": 578, "customEffectiveDate": "2019-12-02", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6081, "employeeId": 578, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12275, "employeeId": 578, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 954, "employeeId": 579, "customEffectiveDate": "2019-12-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2348, "employeeId": 579, "customEffectiveDate": "2019-12-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588249}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1395, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1765, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2018, "employeeId": 580, "customEffectiveDate": "2019-11-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6506, "employeeId": 580, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7844, "employeeId": 580, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11936, "employeeId": 580, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-74", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1415, "employeeId": 581, "customEffectiveDate": "2019-10-29", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2005, "employeeId": 582, "customEffectiveDate": "2019-10-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3343, "employeeId": 582, "customEffectiveDate": "2021-08-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2051, "employeeId": 583, "customEffectiveDate": "2019-11-11", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2594, "employeeId": 583, "customEffectiveDate": "2020-12-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6455, "employeeId": 583, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7725, "employeeId": 583, "customEffectiveDate": "2022-12-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10193, "employeeId": 583, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11834, "employeeId": 583, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2128, "employeeId": 584, "customEffectiveDate": "2019-12-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2191, "employeeId": 587, "customEffectiveDate": "2020-01-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2887, "employeeId": 587, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588250}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3972, "employeeId": 587, "customEffectiveDate": "2021-12-16", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4111, "employeeId": 587, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6597, "employeeId": 587, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7655, "employeeId": 587, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13726, "employeeId": 587, "customEffectiveDate": "2022-12-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1193, "employeeId": 588, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2317, "employeeId": 588, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6544, "employeeId": 588, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7850, "employeeId": 588, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 431, "employeeId": 589, "customEffectiveDate": "2019-11-11", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2152, "employeeId": 590, "customEffectiveDate": "2019-12-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6682, "employeeId": 590, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17189, "employeeId": 590, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2923, "employeeId": 591, "customEffectiveDate": "2020-01-21", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2028, "employeeId": 592, "customEffectiveDate": "2020-01-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6584, "employeeId": 592, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7851, "employeeId": 592, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11951, "employeeId": 592, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-80", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588251}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2006, "employeeId": 593, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5213, "employeeId": 593, "customEffectiveDate": "2022-05-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6395, "employeeId": 593, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2090, "employeeId": 594, "customEffectiveDate": "2020-01-13", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2029, "employeeId": 595, "customEffectiveDate": "2020-01-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6631, "employeeId": 595, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7848, "employeeId": 595, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11953, "employeeId": 595, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-79", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2092, "employeeId": 599, "customEffectiveDate": "2019-12-09", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6299, "employeeId": 599, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7845, "employeeId": 599, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12040, "employeeId": 599, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-75", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2079, "employeeId": 600, "customEffectiveDate": "2019-12-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6492, "employeeId": 600, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6727, "employeeId": 600, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1479, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1846, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588252}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2113, "employeeId": 601, "customEffectiveDate": "2019-12-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1277, "employeeId": 602, "customEffectiveDate": "2020-01-20", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2304, "employeeId": 602, "customEffectiveDate": "2020-01-20", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6013, "employeeId": 602, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12253, "employeeId": 602, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-68", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2338, "employeeId": 603, "customEffectiveDate": "2019-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6191, "employeeId": 603, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7710, "employeeId": 603, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7846, "employeeId": 603, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11912, "employeeId": 603, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-76", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1294, "employeeId": 604, "customEffectiveDate": "2020-01-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2346, "employeeId": 604, "customEffectiveDate": "2020-01-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6059, "employeeId": 604, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12297, "employeeId": 604, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2349, "employeeId": 605, "customEffectiveDate": "2020-01-06", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2604, "employeeId": 605, "customEffectiveDate": "2021-05-03", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6483, "employeeId": 605, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6748, "employeeId": 605, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588253}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1180, "employeeId": 606, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2251, "employeeId": 606, "customEffectiveDate": "2020-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6536, "employeeId": 606, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7854, "employeeId": 606, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11975, "employeeId": 606, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-82", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1123, "employeeId": 607, "customEffectiveDate": "2020-02-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2308, "employeeId": 607, "customEffectiveDate": "2020-02-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6259, "employeeId": 607, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7855, "employeeId": 607, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12029, "employeeId": 607, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-83", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1219, "employeeId": 608, "customEffectiveDate": "2020-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2359, "employeeId": 608, "customEffectiveDate": "2020-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4103, "employeeId": 608, "customEffectiveDate": "2022-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6551, "employeeId": 608, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7862, "employeeId": 608, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12088, "employeeId": 608, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16873, "employeeId": 608, "customEffectiveDate": "2024-02-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Moving from People Manager to IC", "customPosition": "FO-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2222, "employeeId": 609, "customEffectiveDate": "2020-03-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588254}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 856, "employeeId": 610, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2375, "employeeId": 610, "customEffectiveDate": "2020-03-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6683, "employeeId": 610, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17187, "employeeId": 610, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2210, "employeeId": 611, "customEffectiveDate": "2020-04-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2471, "employeeId": 611, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4235, "employeeId": 611, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6025, "employeeId": 611, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7698, "employeeId": 611, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11915, "employeeId": 611, "customEffectiveDate": "2022-12-06", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2201, "employeeId": 613, "customEffectiveDate": "2020-03-02", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2822, "employeeId": 613, "customEffectiveDate": "2021-02-02", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6107, "employeeId": 613, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10378, "employeeId": 613, "customEffectiveDate": "2022-12-26", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2035, "employeeId": 614, "customEffectiveDate": "2020-01-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2146, "employeeId": 615, "customEffectiveDate": "2020-01-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588255}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6504, "employeeId": 615, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7853, "employeeId": 615, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12109, "employeeId": 615, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-81", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2111, "employeeId": 616, "customEffectiveDate": "2020-02-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6502, "employeeId": 616, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7856, "employeeId": 616, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12057, "employeeId": 616, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-86", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1387, "employeeId": 617, "customEffectiveDate": "2020-02-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1755, "employeeId": 617, "customEffectiveDate": "2020-02-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2098, "employeeId": 618, "customEffectiveDate": "2020-02-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6611, "employeeId": 618, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7857, "employeeId": 618, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12045, "employeeId": 618, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-85", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2073, "employeeId": 619, "customEffectiveDate": "2020-02-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6336, "employeeId": 619, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7859, "employeeId": 619, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12016, "employeeId": 619, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-88", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588256}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2010, "employeeId": 620, "customEffectiveDate": "2020-02-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6408, "employeeId": 620, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12183, "employeeId": 620, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2099, "employeeId": 621, "customEffectiveDate": "2020-02-24", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2480, "employeeId": 621, "customEffectiveDate": "2020-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6505, "employeeId": 621, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2032, "employeeId": 622, "customEffectiveDate": "2020-02-24", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6283, "employeeId": 622, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7860, "employeeId": 622, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9113, "employeeId": 622, "customEffectiveDate": "2023-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11890, "employeeId": 622, "customEffectiveDate": "2023-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-87", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2109, "employeeId": 623, "customEffectiveDate": "2019-12-09", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1546, "employeeId": 624, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2158, "employeeId": 625, "customEffectiveDate": "2020-01-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6362, "employeeId": 625, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7847, "employeeId": 625, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12119, "employeeId": 625, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2115, "employeeId": 626, "customEffectiveDate": "2020-01-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588257}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3329, "employeeId": 626, "customEffectiveDate": "2021-08-30", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4600, "employeeId": 626, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8097, "employeeId": 626, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12064, "employeeId": 626, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15893, "employeeId": 626, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2167, "employeeId": 627, "customEffectiveDate": "2017-12-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2997, "employeeId": 627, "customEffectiveDate": "2021-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7798, "employeeId": 627, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11138, "employeeId": 627, "customEffectiveDate": "2023-10-02", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11696, "employeeId": 627, "customEffectiveDate": "2023-10-02", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15894, "employeeId": 627, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2062, "employeeId": 628, "customEffectiveDate": "2020-01-13", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2853, "employeeId": 628, "customEffectiveDate": "2021-02-15", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6111, "employeeId": 628, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12226, "employeeId": 628, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-67", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2139, "employeeId": 629, "customEffectiveDate": "2017-01-10", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4342, "employeeId": 629, "customEffectiveDate": "2022-01-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588258}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6222, "employeeId": 629, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7718, "employeeId": 629, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7778, "employeeId": 629, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9116, "employeeId": 629, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11894, "employeeId": 629, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2075, "employeeId": 630, "customEffectiveDate": "2020-02-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6491, "employeeId": 630, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6728, "employeeId": 630, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12145, "employeeId": 630, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1615, "employeeId": 631, "customEffectiveDate": "2017-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2008, "employeeId": 633, "customEffectiveDate": "2020-03-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6501, "employeeId": 633, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7863, "employeeId": 633, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12114, "employeeId": 633, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-94", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2258, "employeeId": 634, "customEffectiveDate": "2020-04-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6538, "employeeId": 634, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7868, "employeeId": 634, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1572, "employeeId": 635, "customEffectiveDate": "2020-04-14", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588259}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2273, "employeeId": 635, "customEffectiveDate": "2020-04-14", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6099, "employeeId": 635, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12234, "employeeId": 635, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2316, "employeeId": 636, "customEffectiveDate": "2020-03-02", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2993, "employeeId": 636, "customEffectiveDate": "2021-04-26", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6175, "employeeId": 636, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7864, "employeeId": 636, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11427, "employeeId": 636, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11662, "employeeId": 636, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-93", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2247, "employeeId": 637, "customEffectiveDate": "2020-03-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6497, "employeeId": 637, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7865, "employeeId": 637, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11972, "employeeId": 637, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-92", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2087, "employeeId": 638, "customEffectiveDate": "2020-02-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6355, "employeeId": 638, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7861, "employeeId": 638, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12034, "employeeId": 638, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-89", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588260}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1994, "employeeId": 639, "customEffectiveDate": "2020-03-02", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4030, "employeeId": 639, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6576, "employeeId": 639, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7866, "employeeId": 639, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11916, "employeeId": 639, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1609, "employeeId": 640, "customEffectiveDate": "2020-03-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1796, "employeeId": 640, "customEffectiveDate": "2020-03-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1663, "employeeId": 642, "customEffectiveDate": "2020-04-20", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2041, "employeeId": 642, "customEffectiveDate": "2020-04-20", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1665, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1746, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2000, "employeeId": 643, "customEffectiveDate": "2020-03-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6577, "employeeId": 643, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7867, "employeeId": 643, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1667, "employeeId": 644, "customEffectiveDate": "2020-04-20", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2371, "employeeId": 644, "customEffectiveDate": "2020-04-20", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6684, "employeeId": 644, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17186, "employeeId": 644, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588261}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2270, "employeeId": 645, "customEffectiveDate": "2020-06-22", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2464, "employeeId": 645, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2580, "employeeId": 645, "customEffectiveDate": "2020-11-11", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6027, "employeeId": 645, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12229, "employeeId": 645, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1670, "employeeId": 646, "customEffectiveDate": "2020-07-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2767, "employeeId": 646, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6003, "employeeId": 646, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12194, "employeeId": 646, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-79", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1671, "employeeId": 647, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2269, "employeeId": 647, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6068, "employeeId": 647, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12228, "employeeId": 647, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-71", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2245, "employeeId": 648, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2463, "employeeId": 648, "customEffectiveDate": "2020-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6019, "employeeId": 648, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12198, "employeeId": 648, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588262}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2392, "employeeId": 649, "customEffectiveDate": "2020-04-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6334, "employeeId": 649, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7869, "employeeId": 649, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1674, "employeeId": 650, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2310, "employeeId": 650, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6466, "employeeId": 650, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10202, "employeeId": 650, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13728, "employeeId": 650, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2013, "employeeId": 651, "customEffectiveDate": "2020-03-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3187, "employeeId": 651, "customEffectiveDate": "2021-07-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6667, "employeeId": 651, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8102, "employeeId": 651, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2061, "employeeId": 652, "customEffectiveDate": "2020-03-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6659, "employeeId": 652, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8103, "employeeId": 652, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1682, "employeeId": 653, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6555, "employeeId": 653, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7879, "employeeId": 653, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588263}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12053, "employeeId": 653, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-103", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1685, "employeeId": 654, "customEffectiveDate": "2019-03-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2064, "employeeId": 655, "customEffectiveDate": "2020-04-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1689, "employeeId": 656, "customEffectiveDate": "2020-04-06", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2080, "employeeId": 656, "customEffectiveDate": "2020-04-06", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6294, "employeeId": 656, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7870, "employeeId": 656, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12021, "employeeId": 656, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-95", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1692, "employeeId": 658, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2365, "employeeId": 658, "customEffectiveDate": "2020-05-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6472, "employeeId": 658, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10206, "employeeId": 658, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11848, "employeeId": 658, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1707, "employeeId": 659, "customEffectiveDate": "2020-08-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2271, "employeeId": 659, "customEffectiveDate": "2020-08-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6160, "employeeId": 659, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12231, "employeeId": 659, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-80", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1706, "employeeId": 662, "customEffectiveDate": "2020-05-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588264}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6055, "employeeId": 662, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12197, "employeeId": 662, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-74", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2319, "employeeId": 663, "customEffectiveDate": "2020-05-18", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6645, "employeeId": 663, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8104, "employeeId": 663, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10033, "employeeId": 663, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11800, "employeeId": 663, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-98", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2052, "employeeId": 664, "customEffectiveDate": "2020-05-11", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2999, "employeeId": 664, "customEffectiveDate": "2021-04-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6511, "employeeId": 664, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7872, "employeeId": 664, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11984, "employeeId": 664, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-97", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2149, "employeeId": 665, "customEffectiveDate": "2020-04-20", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1724, "employeeId": 667, "customEffectiveDate": "2020-04-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6293, "employeeId": 667, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7871, "employeeId": 667, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12012, "employeeId": 667, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588265}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16087, "employeeId": 667, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1900, "employeeId": 668, "customEffectiveDate": "2020-05-18", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2288, "employeeId": 668, "customEffectiveDate": "2020-05-18", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5991, "employeeId": 668, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12244, "employeeId": 668, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-76", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2083, "employeeId": 669, "customEffectiveDate": "2020-06-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2966, "employeeId": 669, "customEffectiveDate": "2021-06-09", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6423, "employeeId": 669, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9171, "employeeId": 669, "customEffectiveDate": "2023-04-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11513, "employeeId": 669, "customEffectiveDate": "2023-11-22", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2312, "employeeId": 670, "customEffectiveDate": "2020-06-08", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6190, "employeeId": 670, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7873, "employeeId": 670, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1918, "employeeId": 671, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6119, "employeeId": 671, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10032, "employeeId": 671, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10350, "employeeId": 671, "customEffectiveDate": "2023-06-21", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17210, "employeeId": 671, "customEffectiveDate": "2024-05-05", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Rehired", "customPosition": "ENG-240", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588266}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1920, "employeeId": 672, "customEffectiveDate": "2020-06-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2142, "employeeId": 672, "customEffectiveDate": "2020-06-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6308, "employeeId": 672, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7874, "employeeId": 672, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12105, "employeeId": 672, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-99", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1924, "employeeId": 674, "customEffectiveDate": "2020-09-14", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2456, "employeeId": 674, "customEffectiveDate": "2020-09-23", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2763, "employeeId": 674, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5960, "employeeId": 674, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12304, "employeeId": 674, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17241, "employeeId": 674, "customEffectiveDate": "2024-02-26", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Engineering Team", "customPosition": "ENG-84", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2112, "employeeId": 676, "customEffectiveDate": "2020-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6451, "employeeId": 676, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1922, "employeeId": 677, "customEffectiveDate": "2021-08-23", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5162, "employeeId": 677, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6015, "employeeId": 677, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12328, "employeeId": 677, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-179", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1926, "employeeId": 678, "customEffectiveDate": "2020-09-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588267}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6064, "employeeId": 678, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12182, "employeeId": 678, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-81", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1925, "employeeId": 679, "customEffectiveDate": "2020-06-29", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2290, "employeeId": 679, "customEffectiveDate": "2020-06-29", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6012, "employeeId": 679, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12245, "employeeId": 679, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2192, "employeeId": 681, "customEffectiveDate": "2020-06-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2077, "employeeId": 682, "customEffectiveDate": "2020-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1939, "employeeId": 684, "customEffectiveDate": "2020-09-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5294, "employeeId": 684, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6148, "employeeId": 684, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12254, "employeeId": 684, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-82", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1940, "employeeId": 685, "customEffectiveDate": "2020-08-03", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2374, "employeeId": 685, "customEffectiveDate": "2020-08-03", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4612, "employeeId": 685, "customEffectiveDate": "2022-02-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6229, "employeeId": 685, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7876, "employeeId": 685, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588268}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12104, "employeeId": 685, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-101", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2315, "employeeId": 686, "customEffectiveDate": "2020-08-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2539, "employeeId": 686, "customEffectiveDate": "2020-12-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3381, "employeeId": 686, "customEffectiveDate": "2021-10-28", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1967, "employeeId": 687, "customEffectiveDate": "2020-09-14", "customDepartment#": "2110", "customJobCode": "Cypher", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2466, "employeeId": 687, "customEffectiveDate": "2020-09-23", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6036, "employeeId": 687, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11097, "employeeId": 687, "customEffectiveDate": "2022-10-09", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Change", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12164, "employeeId": 687, "customEffectiveDate": "2022-10-09", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Change", "customPosition": "ENG-83", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1965, "employeeId": 688, "customEffectiveDate": "2020-07-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2070, "employeeId": 688, "customEffectiveDate": "2020-07-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6602, "employeeId": 688, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7875, "employeeId": 688, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12009, "employeeId": 688, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1960, "employeeId": 689, "customEffectiveDate": "2020-07-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2074, "employeeId": 689, "customEffectiveDate": "2020-07-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2058, "employeeId": 690, "customEffectiveDate": "2020-06-10", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1963, "employeeId": 691, "customEffectiveDate": "2020-07-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588269}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2031, "employeeId": 691, "customEffectiveDate": "2020-07-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6414, "employeeId": 691, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1973, "employeeId": 693, "customEffectiveDate": "2020-09-15", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2226, "employeeId": 694, "customEffectiveDate": "2020-07-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3464, "employeeId": 694, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4195, "employeeId": 694, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5935, "employeeId": 694, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 1976, "employeeId": 695, "customEffectiveDate": "2020-08-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2038, "employeeId": 695, "customEffectiveDate": "2020-08-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6588, "employeeId": 695, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7877, "employeeId": 695, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2174, "employeeId": 696, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2496, "employeeId": 696, "customEffectiveDate": "2020-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6258, "employeeId": 696, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7885, "employeeId": 696, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2173, "employeeId": 697, "customEffectiveDate": "2020-09-14", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2773, "employeeId": 697, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588270}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2180, "employeeId": 698, "customEffectiveDate": "2020-09-02", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6642, "employeeId": 698, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8105, "employeeId": 698, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10041, "employeeId": 698, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11790, "employeeId": 698, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-104", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2176, "employeeId": 699, "customEffectiveDate": "2020-08-24", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6284, "employeeId": 699, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7878, "employeeId": 699, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11959, "employeeId": 699, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-102", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2402, "employeeId": 700, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6589, "employeeId": 700, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7880, "employeeId": 700, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13718, "employeeId": 700, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-376", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2399, "employeeId": 701, "customEffectiveDate": "2020-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2215, "employeeId": 702, "customEffectiveDate": "2020-08-14", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6389, "employeeId": 702, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2182, "employeeId": 703, "customEffectiveDate": "2020-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5998, "employeeId": 703, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588271}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12218, "employeeId": 703, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-86", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2183, "employeeId": 704, "customEffectiveDate": "2020-09-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4034, "employeeId": 704, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6622, "employeeId": 704, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7881, "employeeId": 704, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2403, "employeeId": 705, "customEffectiveDate": "2020-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3007, "employeeId": 705, "customEffectiveDate": "2021-05-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2404, "employeeId": 706, "customEffectiveDate": "2020-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3979, "employeeId": 706, "customEffectiveDate": "2021-12-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6415, "employeeId": 706, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12204, "employeeId": 706, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2410, "employeeId": 707, "customEffectiveDate": "2020-11-09", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4133, "employeeId": 707, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6096, "employeeId": 707, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8230, "employeeId": 707, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11877, "employeeId": 707, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2411, "employeeId": 708, "customEffectiveDate": "2020-09-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588272}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6391, "employeeId": 708, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2414, "employeeId": 709, "customEffectiveDate": "2020-09-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2416, "employeeId": 710, "customEffectiveDate": "2020-11-02", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5966, "employeeId": 710, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12201, "employeeId": 710, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-88", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2435, "employeeId": 711, "customEffectiveDate": "2020-09-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3159, "employeeId": 711, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6445, "employeeId": 711, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12196, "employeeId": 711, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2432, "employeeId": 712, "customEffectiveDate": "2020-10-06", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6008, "employeeId": 712, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12188, "employeeId": 712, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-87", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2433, "employeeId": 713, "customEffectiveDate": "2020-10-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2863, "employeeId": 713, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6066, "employeeId": 713, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10463, "employeeId": 713, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11818, "employeeId": 713, "customEffectiveDate": "2023-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-85", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2446, "employeeId": 714, "customEffectiveDate": "2020-09-28", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588273}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6238, "employeeId": 714, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7883, "employeeId": 714, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2515, "employeeId": 715, "customEffectiveDate": "2020-10-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6444, "employeeId": 715, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2444, "employeeId": 716, "customEffectiveDate": "2020-09-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2921, "employeeId": 716, "customEffectiveDate": "2021-03-18", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5901, "employeeId": 716, "customEffectiveDate": "2022-01-05", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6235, "employeeId": 716, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7882, "employeeId": 716, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11346, "employeeId": 716, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11719, "employeeId": 716, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-105", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2440, "employeeId": 717, "customEffectiveDate": "2020-09-28", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2439, "employeeId": 718, "customEffectiveDate": "2020-09-28", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5919, "employeeId": 718, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7884, "employeeId": 718, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8175, "employeeId": 718, "customEffectiveDate": "2023-01-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10021, "employeeId": 718, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588274}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11808, "employeeId": 718, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-106", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2442, "employeeId": 719, "customEffectiveDate": "2020-09-21", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4161, "employeeId": 719, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6675, "employeeId": 719, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13722, "employeeId": 719, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2441, "employeeId": 720, "customEffectiveDate": "2020-09-07", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2843, "employeeId": 720, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2448, "employeeId": 721, "customEffectiveDate": "2020-09-28", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2484, "employeeId": 722, "customEffectiveDate": "2020-10-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3157, "employeeId": 722, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3325, "employeeId": 722, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6399, "employeeId": 722, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2487, "employeeId": 723, "customEffectiveDate": "2020-10-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6694, "employeeId": 723, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17190, "employeeId": 723, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2459, "employeeId": 724, "customEffectiveDate": "2020-09-09", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2460, "employeeId": 725, "customEffectiveDate": "2019-12-16", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2621, "employeeId": 725, "customEffectiveDate": "2020-12-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588275}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3444, "employeeId": 725, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4965, "employeeId": 725, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6436, "employeeId": 725, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10139, "employeeId": 725, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2512, "employeeId": 726, "customEffectiveDate": "2020-12-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6251, "employeeId": 726, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7891, "employeeId": 726, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11930, "employeeId": 726, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-110", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2482, "employeeId": 727, "customEffectiveDate": "2020-10-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6207, "employeeId": 727, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7886, "employeeId": 727, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11974, "employeeId": 727, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-107", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2534, "employeeId": 728, "customEffectiveDate": "2020-11-02", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4238, "employeeId": 728, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6043, "employeeId": 728, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11212, "employeeId": 728, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12148, "employeeId": 728, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-89", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2514, "employeeId": 729, "customEffectiveDate": "2020-11-02", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588276}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5994, "employeeId": 729, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12318, "employeeId": 729, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-90", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2481, "employeeId": 730, "customEffectiveDate": "2020-05-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5836, "employeeId": 730, "customEffectiveDate": "2022-09-26", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5948, "employeeId": 730, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2517, "employeeId": 731, "customEffectiveDate": "2020-10-05", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2511, "employeeId": 732, "customEffectiveDate": "2020-09-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2541, "employeeId": 734, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6108, "employeeId": 734, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12338, "employeeId": 734, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-93", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2535, "employeeId": 735, "customEffectiveDate": "2021-01-04", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5969, "employeeId": 735, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12235, "employeeId": 735, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-97", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2536, "employeeId": 736, "customEffectiveDate": "2020-10-12", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3060, "employeeId": 736, "customEffectiveDate": "2021-06-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6260, "employeeId": 736, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7922, "employeeId": 736, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588277}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12054, "employeeId": 736, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-140", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2537, "employeeId": 737, "customEffectiveDate": "2020-10-12", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4160, "employeeId": 737, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2577, "employeeId": 738, "customEffectiveDate": "2020-11-30", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6459, "employeeId": 738, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7724, "employeeId": 738, "customEffectiveDate": "2022-12-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10195, "employeeId": 738, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11851, "employeeId": 738, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2567, "employeeId": 739, "customEffectiveDate": "2021-01-04", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5211, "employeeId": 739, "customEffectiveDate": "2022-07-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10192, "employeeId": 739, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11127, "employeeId": 739, "customEffectiveDate": "2023-10-16", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Resignation, last day Oct 16th", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15993, "employeeId": 739, "customEffectiveDate": "2024-02-12", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Re-hired", "customPosition": "PRD-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2560, "employeeId": 740, "customEffectiveDate": "2021-02-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6067, "employeeId": 740, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12200, "employeeId": 740, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-99", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2557, "employeeId": 741, "customEffectiveDate": "2020-11-02", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6179, "employeeId": 741, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588278}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7887, "employeeId": 741, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11428, "employeeId": 741, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11660, "employeeId": 741, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-108", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2561, "employeeId": 742, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3315, "employeeId": 742, "customEffectiveDate": "2021-08-21", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6143, "employeeId": 742, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2575, "employeeId": 743, "customEffectiveDate": "2020-11-16", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2574, "employeeId": 744, "customEffectiveDate": "2020-11-16", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2937, "employeeId": 744, "customEffectiveDate": "2021-04-05", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6181, "employeeId": 744, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7913, "employeeId": 744, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11430, "employeeId": 744, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11666, "employeeId": 744, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-129", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2572, "employeeId": 745, "customEffectiveDate": "2020-11-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6599, "employeeId": 745, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7889, "employeeId": 745, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2568, "employeeId": 746, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588279}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2564, "employeeId": 747, "customEffectiveDate": "2020-12-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6006, "employeeId": 747, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12175, "employeeId": 747, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-92", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2558, "employeeId": 748, "customEffectiveDate": "2020-12-14", "customDepartment#": "2120", "customJobCode": "Enterprise - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2760, "employeeId": 748, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5952, "employeeId": 748, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16009, "employeeId": 748, "customEffectiveDate": "2024-02-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Rehire", "customPosition": "ENG-228", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2569, "employeeId": 749, "customEffectiveDate": "2020-11-09", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2566, "employeeId": 751, "customEffectiveDate": "2021-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6071, "employeeId": 751, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12323, "employeeId": 751, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-95", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2565, "employeeId": 752, "customEffectiveDate": "2020-12-07", "customDepartment#": "2120", "customJobCode": "Self-service - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2765, "employeeId": 752, "customEffectiveDate": "2021-01-18", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5957, "employeeId": 752, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12268, "employeeId": 752, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-94", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2562, "employeeId": 753, "customEffectiveDate": "2020-12-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5208, "employeeId": 753, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6521, "employeeId": 753, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588280}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7892, "employeeId": 753, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12015, "employeeId": 753, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-111", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2578, "employeeId": 754, "customEffectiveDate": "2020-11-09", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6347, "employeeId": 754, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7888, "employeeId": 754, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11958, "employeeId": 754, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-109", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2583, "employeeId": 755, "customEffectiveDate": "2020-12-14", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6278, "employeeId": 755, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7893, "employeeId": 755, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11927, "employeeId": 755, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-112", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2582, "employeeId": 756, "customEffectiveDate": "2020-01-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3042, "employeeId": 756, "customEffectiveDate": "2021-05-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3324, "employeeId": 756, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2585, "employeeId": 757, "customEffectiveDate": "2020-11-17", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3462, "employeeId": 757, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4193, "employeeId": 757, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5933, "employeeId": 757, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588281}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12173, "employeeId": 757, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2586, "employeeId": 758, "customEffectiveDate": "2021-01-01", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2772, "employeeId": 758, "customEffectiveDate": "2021-01-18", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6094, "employeeId": 758, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8231, "employeeId": 758, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11875, "employeeId": 758, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-96", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2588, "employeeId": 759, "customEffectiveDate": "2020-11-23", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3273, "employeeId": 759, "customEffectiveDate": "2021-08-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4606, "employeeId": 759, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6560, "employeeId": 759, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7890, "employeeId": 759, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2592, "employeeId": 760, "customEffectiveDate": "2021-02-15", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6465, "employeeId": 760, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10210, "employeeId": 760, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11840, "employeeId": 760, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2654, "employeeId": 761, "customEffectiveDate": "2021-01-11", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3465, "employeeId": 761, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588282}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4172, "employeeId": 761, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2645, "employeeId": 762, "customEffectiveDate": "2020-12-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3480, "employeeId": 762, "customEffectiveDate": "2021-09-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4163, "employeeId": 762, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5930, "employeeId": 762, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7896, "employeeId": 762, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12023, "employeeId": 762, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-115", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2653, "employeeId": 763, "customEffectiveDate": "2021-01-11", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3974, "employeeId": 763, "customEffectiveDate": "2022-01-24", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6349, "employeeId": 763, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7993, "employeeId": 763, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2652, "employeeId": 764, "customEffectiveDate": "2021-01-04", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2598, "employeeId": 765, "customEffectiveDate": "2020-12-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2593, "employeeId": 766, "customEffectiveDate": "2020-12-14", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6495, "employeeId": 766, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7894, "employeeId": 766, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11949, "employeeId": 766, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-113", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2595, "employeeId": 767, "customEffectiveDate": "2021-01-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588283}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5798, "employeeId": 767, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7897, "employeeId": 767, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2597, "employeeId": 768, "customEffectiveDate": "2021-02-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6470, "employeeId": 768, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10205, "employeeId": 768, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11847, "employeeId": 768, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2628, "employeeId": 769, "customEffectiveDate": "2020-12-14", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6624, "employeeId": 769, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7895, "employeeId": 769, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12122, "employeeId": 769, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-114", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2633, "employeeId": 770, "customEffectiveDate": "2021-01-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6301, "employeeId": 770, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7898, "employeeId": 770, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2636, "employeeId": 771, "customEffectiveDate": "2021-01-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6311, "employeeId": 771, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7899, "employeeId": 771, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8412, "employeeId": 771, "customEffectiveDate": "2023-03-16", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Relocated to Singapore", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588284}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11858, "employeeId": 771, "customEffectiveDate": "2023-03-16", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Relocated to Singapore", "customPosition": "FO-117", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2635, "employeeId": 772, "customEffectiveDate": "2021-01-04", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3190, "employeeId": 772, "customEffectiveDate": "2021-07-01", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4112, "employeeId": 772, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6608, "employeeId": 772, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7930, "employeeId": 772, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12038, "employeeId": 772, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16048, "employeeId": 772, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2631, "employeeId": 773, "customEffectiveDate": "2021-01-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6661, "employeeId": 773, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8106, "employeeId": 773, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10118, "employeeId": 773, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11796, "employeeId": 773, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-116", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2679, "employeeId": 774, "customEffectiveDate": "2021-01-11", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6662, "employeeId": 774, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8107, "employeeId": 774, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10119, "employeeId": 774, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11419, "employeeId": 774, "customEffectiveDate": "2023-09-18", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588285}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11705, "employeeId": 774, "customEffectiveDate": "2023-09-18", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-119", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2650, "employeeId": 775, "customEffectiveDate": "2021-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3268, "employeeId": 775, "customEffectiveDate": "2021-07-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3274, "employeeId": 775, "customEffectiveDate": "2021-08-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4605, "employeeId": 775, "customEffectiveDate": "2022-01-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6450, "employeeId": 775, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12273, "employeeId": 775, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2624, "employeeId": 776, "customEffectiveDate": "2021-03-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2638, "employeeId": 777, "customEffectiveDate": "2021-01-04", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2625, "employeeId": 778, "customEffectiveDate": "2020-12-14", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3870, "employeeId": 778, "customEffectiveDate": "2021-09-29", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6377, "employeeId": 778, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6732, "employeeId": 778, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12140, "employeeId": 778, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "PEO-6", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2643, "employeeId": 780, "customEffectiveDate": "2020-12-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4966, "employeeId": 780, "customEffectiveDate": "2021-09-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2647, "employeeId": 782, "customEffectiveDate": "2021-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588286}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2649, "employeeId": 783, "customEffectiveDate": "2021-01-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3452, "employeeId": 783, "customEffectiveDate": "2021-10-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3936, "employeeId": 783, "customEffectiveDate": "2021-12-06", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4964, "employeeId": 783, "customEffectiveDate": "2022-03-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2662, "employeeId": 785, "customEffectiveDate": "2021-05-03", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6086, "employeeId": 785, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9195, "employeeId": 785, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11821, "employeeId": 785, "customEffectiveDate": "2023-04-24", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-111", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2657, "employeeId": 786, "customEffectiveDate": "2021-02-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5915, "employeeId": 786, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6741, "employeeId": 786, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10186, "employeeId": 786, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11715, "employeeId": 786, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Adjustment", "customPosition": "PEO-7", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2655, "employeeId": 787, "customEffectiveDate": "2021-02-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6065, "employeeId": 787, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12184, "employeeId": 787, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-98", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2658, "employeeId": 788, "customEffectiveDate": "2021-02-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2706, "employeeId": 790, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588287}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6591, "employeeId": 790, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7900, "employeeId": 790, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2708, "employeeId": 791, "customEffectiveDate": "2021-01-11", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6660, "employeeId": 791, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8108, "employeeId": 791, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10125, "employeeId": 791, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11794, "employeeId": 791, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-118", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2703, "employeeId": 792, "customEffectiveDate": "2021-01-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5568, "employeeId": 792, "customEffectiveDate": "2022-07-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6221, "employeeId": 792, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7901, "employeeId": 792, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9114, "employeeId": 792, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11625, "employeeId": 792, "customEffectiveDate": "2023-12-13", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11640, "employeeId": 792, "customEffectiveDate": "2023-12-13", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Merit", "customPosition": "FO-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16026, "employeeId": 792, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2712, "employeeId": 793, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2710, "employeeId": 794, "customEffectiveDate": "2021-01-11", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588288}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6241, "employeeId": 794, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7902, "employeeId": 794, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12103, "employeeId": 794, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-121", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2714, "employeeId": 795, "customEffectiveDate": "2021-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3401, "employeeId": 795, "customEffectiveDate": "2021-09-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6637, "employeeId": 795, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7903, "employeeId": 795, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12118, "employeeId": 795, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-122", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2718, "employeeId": 796, "customEffectiveDate": "2021-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4654, "employeeId": 796, "customEffectiveDate": "2022-02-14", "customDepartment#": "2120", "customJobCode": "NX", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5963, "employeeId": 796, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10161, "employeeId": 796, "customEffectiveDate": "2023-06-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11805, "employeeId": 796, "customEffectiveDate": "2023-06-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2779, "employeeId": 797, "customEffectiveDate": "2021-01-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4122, "employeeId": 797, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6397, "employeeId": 797, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2729, "employeeId": 798, "customEffectiveDate": "2019-10-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2820, "employeeId": 798, "customEffectiveDate": "2021-02-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588289}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6431, "employeeId": 798, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12293, "employeeId": 798, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2776, "employeeId": 799, "customEffectiveDate": "2021-04-15", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6123, "employeeId": 799, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12227, "employeeId": 799, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-109", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2782, "employeeId": 800, "customEffectiveDate": "2021-04-19", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6257, "employeeId": 800, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7917, "employeeId": 800, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11997, "employeeId": 800, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-133", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2755, "employeeId": 801, "customEffectiveDate": "2019-07-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2818, "employeeId": 801, "customEffectiveDate": "2021-02-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3338, "employeeId": 801, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6446, "employeeId": 801, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12289, "employeeId": 801, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2775, "employeeId": 802, "customEffectiveDate": "2021-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3366, "employeeId": 802, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6026, "employeeId": 802, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588290}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12213, "employeeId": 802, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-104", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2781, "employeeId": 803, "customEffectiveDate": "2021-03-22", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6712, "employeeId": 803, "customEffectiveDate": "2022-09-12", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7657, "employeeId": 803, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12269, "employeeId": 803, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-105", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2777, "employeeId": 804, "customEffectiveDate": "2020-03-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6419, "employeeId": 804, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2795, "employeeId": 805, "customEffectiveDate": "2021-03-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6324, "employeeId": 805, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7908, "employeeId": 805, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11952, "employeeId": 805, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-126", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2812, "employeeId": 806, "customEffectiveDate": "2021-02-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4015, "employeeId": 806, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6427, "employeeId": 806, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12279, "employeeId": 806, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2805, "employeeId": 807, "customEffectiveDate": "2021-02-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6657, "employeeId": 807, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2845, "employeeId": 808, "customEffectiveDate": "2021-02-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588291}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3272, "employeeId": 808, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2811, "employeeId": 809, "customEffectiveDate": "2021-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6352, "employeeId": 809, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7904, "employeeId": 809, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12005, "employeeId": 809, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-123", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2816, "employeeId": 810, "customEffectiveDate": "2021-04-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2844, "employeeId": 812, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6056, "employeeId": 812, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12238, "employeeId": 812, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-115", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2849, "employeeId": 813, "customEffectiveDate": "2021-02-23", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6135, "employeeId": 813, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10465, "employeeId": 813, "customEffectiveDate": "2023-08-16", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11741, "employeeId": 813, "customEffectiveDate": "2023-08-16", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-102", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2850, "employeeId": 814, "customEffectiveDate": "2021-04-08", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5921, "employeeId": 814, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7915, "employeeId": 814, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10030, "employeeId": 814, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11804, "employeeId": 814, "customEffectiveDate": "2023-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-130", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588292}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2851, "employeeId": 815, "customEffectiveDate": "2021-04-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2854, "employeeId": 816, "customEffectiveDate": "2021-03-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6215, "employeeId": 816, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7716, "employeeId": 816, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7905, "employeeId": 816, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11909, "employeeId": 816, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-124", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2856, "employeeId": 817, "customEffectiveDate": "2021-03-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2858, "employeeId": 818, "customEffectiveDate": "2021-03-15", "customDepartment#": "1500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4158, "employeeId": 818, "customEffectiveDate": "2022-02-01", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6673, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12203, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16929, "employeeId": 818, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2861, "employeeId": 819, "customEffectiveDate": "2021-03-22", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6357, "employeeId": 819, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7911, "employeeId": 819, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11026, "employeeId": 819, "customEffectiveDate": "2023-09-27", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adding Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11697, "employeeId": 819, "customEffectiveDate": "2023-09-27", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adding Aura Role", "customPosition": "FO-127", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588293}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2878, "employeeId": 820, "customEffectiveDate": "2021-03-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4341, "employeeId": 820, "customEffectiveDate": "2022-01-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6378, "employeeId": 820, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6719, "employeeId": 820, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12151, "employeeId": 820, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-8", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2879, "employeeId": 821, "customEffectiveDate": "2021-02-22", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3946, "employeeId": 821, "customEffectiveDate": "2021-11-23", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6516, "employeeId": 821, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7970, "employeeId": 821, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12020, "employeeId": 821, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-179", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2880, "employeeId": 822, "customEffectiveDate": "2021-06-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6701, "employeeId": 822, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17155, "employeeId": 822, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2890, "employeeId": 823, "customEffectiveDate": "2021-03-15", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3412, "employeeId": 823, "customEffectiveDate": "2021-09-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2884, "employeeId": 824, "customEffectiveDate": "2021-03-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2888, "employeeId": 825, "customEffectiveDate": "2021-03-08", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6523, "employeeId": 825, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588294}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7906, "employeeId": 825, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2891, "employeeId": 826, "customEffectiveDate": "2021-03-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5214, "employeeId": 826, "customEffectiveDate": "2022-05-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6633, "employeeId": 826, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7909, "employeeId": 826, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2908, "employeeId": 827, "customEffectiveDate": "2021-03-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3275, "employeeId": 827, "customEffectiveDate": "2021-08-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6304, "employeeId": 827, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7907, "employeeId": 827, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10089, "employeeId": 827, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11857, "employeeId": 827, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-125", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2912, "employeeId": 828, "customEffectiveDate": "2021-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7660, "employeeId": 828, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "SYS-2", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2911, "employeeId": 829, "customEffectiveDate": "2021-03-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4032, "employeeId": 829, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6604, "employeeId": 829, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7910, "employeeId": 829, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2914, "employeeId": 830, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588295}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5996, "employeeId": 830, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10566, "employeeId": 830, "customEffectiveDate": "2023-09-11", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11707, "employeeId": 830, "customEffectiveDate": "2023-09-11", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-117", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2917, "employeeId": 831, "customEffectiveDate": "2021-05-24", "customDepartment#": "2110", "customJobCode": "Desktop", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5488, "employeeId": 831, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6046, "employeeId": 831, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12271, "employeeId": 831, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-113", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2915, "employeeId": 832, "customEffectiveDate": "2021-03-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5286, "employeeId": 832, "customEffectiveDate": "2022-06-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6405, "employeeId": 832, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12290, "employeeId": 832, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2919, "employeeId": 833, "customEffectiveDate": "2021-04-12", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6103, "employeeId": 833, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12288, "employeeId": 833, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-108", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2918, "employeeId": 834, "customEffectiveDate": "2021-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6468, "employeeId": 834, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588296}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10204, "employeeId": 834, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11843, "employeeId": 834, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2983, "employeeId": 835, "customEffectiveDate": "2021-04-19", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2920, "employeeId": 836, "customEffectiveDate": "2021-06-21", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5961, "employeeId": 836, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12306, "employeeId": 836, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-116", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2924, "employeeId": 837, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6062, "employeeId": 837, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12335, "employeeId": 837, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-107", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2925, "employeeId": 838, "customEffectiveDate": "2021-03-22", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2927, "employeeId": 839, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6039, "employeeId": 839, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8225, "employeeId": 839, "customEffectiveDate": "2023-01-16", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10514, "employeeId": 839, "customEffectiveDate": "2023-09-05", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removing AuraRole", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2931, "employeeId": 842, "customEffectiveDate": "2021-05-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588297}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2968, "employeeId": 843, "customEffectiveDate": "2021-04-12", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6685, "employeeId": 843, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17177, "employeeId": 843, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2928, "employeeId": 844, "customEffectiveDate": "2021-04-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6702, "employeeId": 844, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2929, "employeeId": 845, "customEffectiveDate": "2021-04-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6327, "employeeId": 845, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7912, "employeeId": 845, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12047, "employeeId": 845, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-128", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2971, "employeeId": 846, "customEffectiveDate": "2021-04-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4012, "employeeId": 846, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6441, "employeeId": 846, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2933, "employeeId": 847, "customEffectiveDate": "2021-04-26", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5953, "employeeId": 847, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12240, "employeeId": 847, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-110", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2934, "employeeId": 848, "customEffectiveDate": "2021-06-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6171, "employeeId": 848, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588298}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10587, "employeeId": 848, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12166, "employeeId": 848, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-114", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2935, "employeeId": 849, "customEffectiveDate": "2021-04-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7914, "employeeId": 849, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2938, "employeeId": 850, "customEffectiveDate": "2021-04-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2939, "employeeId": 850, "customEffectiveDate": "2017-06-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5706, "employeeId": 850, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6017, "employeeId": 850, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12236, "employeeId": 850, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-106", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2943, "employeeId": 851, "customEffectiveDate": "2021-05-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6620, "employeeId": 851, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7919, "employeeId": 851, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2964, "employeeId": 852, "customEffectiveDate": "2021-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6508, "employeeId": 852, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7923, "employeeId": 852, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12033, "employeeId": 852, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-139", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2945, "employeeId": 853, "customEffectiveDate": "2021-04-19", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588299}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6641, "employeeId": 853, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8109, "employeeId": 853, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10040, "employeeId": 853, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11787, "employeeId": 853, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-132", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2944, "employeeId": 854, "customEffectiveDate": "2021-04-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3177, "employeeId": 854, "customEffectiveDate": "2021-06-01", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3460, "employeeId": 854, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4201, "employeeId": 854, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5939, "employeeId": 854, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2948, "employeeId": 855, "customEffectiveDate": "2021-04-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6214, "employeeId": 855, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7741, "employeeId": 855, "customEffectiveDate": "2022-12-14", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7916, "employeeId": 855, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11900, "employeeId": 855, "customEffectiveDate": "2022-12-14", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-131", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2973, "employeeId": 856, "customEffectiveDate": "2021-05-04", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6009, "employeeId": 856, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11811, "employeeId": 856, "customEffectiveDate": "2023-05-12", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-112", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2970, "employeeId": 857, "customEffectiveDate": "2021-04-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588300}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2980, "employeeId": 858, "customEffectiveDate": "2021-06-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6392, "employeeId": 858, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12193, "employeeId": 858, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2975, "employeeId": 859, "customEffectiveDate": "2021-04-26", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6664, "employeeId": 859, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8110, "employeeId": 859, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10121, "employeeId": 859, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2978, "employeeId": 860, "customEffectiveDate": "2021-05-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6561, "employeeId": 860, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7920, "employeeId": 860, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12036, "employeeId": 860, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-135", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3068, "employeeId": 861, "customEffectiveDate": "2021-06-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2985, "employeeId": 862, "customEffectiveDate": "2021-06-14", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6543, "employeeId": 862, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7926, "employeeId": 862, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12027, "employeeId": 862, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-141", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2988, "employeeId": 863, "customEffectiveDate": "2021-05-03", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6686, "employeeId": 863, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588301}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2994, "employeeId": 864, "customEffectiveDate": "2020-06-26", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3458, "employeeId": 864, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4194, "employeeId": 864, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5934, "employeeId": 864, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 2995, "employeeId": 865, "customEffectiveDate": "2021-04-26", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4813, "employeeId": 865, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6310, "employeeId": 865, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7918, "employeeId": 865, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12120, "employeeId": 865, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-134", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3003, "employeeId": 866, "customEffectiveDate": "2021-05-17", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5916, "employeeId": 866, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6742, "employeeId": 866, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12149, "employeeId": 866, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-9", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3011, "employeeId": 867, "customEffectiveDate": "2021-07-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6623, "employeeId": 867, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7931, "employeeId": 867, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588302}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12110, "employeeId": 867, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-146", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3014, "employeeId": 869, "customEffectiveDate": "2021-08-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6048, "employeeId": 869, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12276, "employeeId": 869, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-120", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3030, "employeeId": 870, "customEffectiveDate": "2021-06-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6228, "employeeId": 870, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7928, "employeeId": 870, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12073, "employeeId": 870, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-142", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3032, "employeeId": 871, "customEffectiveDate": "2021-05-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3910, "employeeId": 871, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6636, "employeeId": 871, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7921, "employeeId": 871, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12091, "employeeId": 871, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-136", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3034, "employeeId": 872, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5296, "employeeId": 872, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6151, "employeeId": 872, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8165, "employeeId": 872, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9176, "employeeId": 872, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588303}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11025, "employeeId": 872, "customEffectiveDate": "2023-09-27", "customDepartment#": "2110", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11698, "employeeId": 872, "customEffectiveDate": "2023-09-27", "customDepartment#": "2110", "customJobCode": "Self Managed Cloud", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "ENG-126", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3035, "employeeId": 873, "customEffectiveDate": "2021-05-10", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3037, "employeeId": 874, "customEffectiveDate": "2021-05-17", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6280, "employeeId": 874, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3041, "employeeId": 875, "customEffectiveDate": "2021-08-16", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6022, "employeeId": 875, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12307, "employeeId": 875, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-122", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3040, "employeeId": 876, "customEffectiveDate": "2021-06-01", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6477, "employeeId": 876, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10208, "employeeId": 876, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11835, "employeeId": 876, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3050, "employeeId": 877, "customEffectiveDate": "2021-07-26", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6535, "employeeId": 877, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7935, "employeeId": 877, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11950, "employeeId": 877, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-149", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3045, "employeeId": 878, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588304}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6416, "employeeId": 878, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12206, "employeeId": 878, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3048, "employeeId": 879, "customEffectiveDate": "2021-08-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5209, "employeeId": 879, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6549, "employeeId": 879, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7936, "employeeId": 879, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12089, "employeeId": 879, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-150", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3052, "employeeId": 880, "customEffectiveDate": "2021-06-30", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6522, "employeeId": 880, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7929, "employeeId": 880, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11942, "employeeId": 880, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-143", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3056, "employeeId": 881, "customEffectiveDate": "2021-08-23", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6007, "employeeId": 881, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12179, "employeeId": 881, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-123", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3054, "employeeId": 882, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6332, "employeeId": 882, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7938, "employeeId": 882, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588305}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12095, "employeeId": 882, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-152", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3057, "employeeId": 883, "customEffectiveDate": "2021-07-26", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5984, "employeeId": 883, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10177, "employeeId": 883, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11775, "employeeId": 883, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-119", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3058, "employeeId": 884, "customEffectiveDate": "2021-07-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6226, "employeeId": 884, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7932, "employeeId": 884, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12048, "employeeId": 884, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-145", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3062, "employeeId": 885, "customEffectiveDate": "2021-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3064, "employeeId": 886, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3065, "employeeId": 887, "customEffectiveDate": "2021-05-24", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3463, "employeeId": 887, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4197, "employeeId": 887, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5937, "employeeId": 887, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3067, "employeeId": 888, "customEffectiveDate": "2021-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6210, "employeeId": 888, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588306}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7924, "employeeId": 888, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8186, "employeeId": 888, "customEffectiveDate": "2023-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11882, "employeeId": 888, "customEffectiveDate": "2023-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-137", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3070, "employeeId": 889, "customEffectiveDate": "2021-06-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6296, "employeeId": 889, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7925, "employeeId": 889, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12031, "employeeId": 889, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-138", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3071, "employeeId": 890, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6127, "employeeId": 890, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10031, "employeeId": 890, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11809, "employeeId": 890, "customEffectiveDate": "2023-05-24", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-129", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3074, "employeeId": 891, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6169, "employeeId": 891, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12224, "employeeId": 891, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "UI Testing", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-118", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3073, "employeeId": 892, "customEffectiveDate": "2021-06-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3076, "employeeId": 893, "customEffectiveDate": "2021-08-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5968, "employeeId": 893, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588307}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10162, "employeeId": 893, "customEffectiveDate": "2023-06-12", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10179, "employeeId": 893, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11773, "employeeId": 893, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-124", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3077, "employeeId": 894, "customEffectiveDate": "2021-08-09", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5297, "employeeId": 894, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6146, "employeeId": 894, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12221, "employeeId": 894, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-121", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3078, "employeeId": 895, "customEffectiveDate": "2021-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6524, "employeeId": 895, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7944, "employeeId": 895, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3096, "employeeId": 896, "customEffectiveDate": "2021-06-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3098, "employeeId": 897, "customEffectiveDate": "2021-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3276, "employeeId": 897, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3123, "employeeId": 898, "customEffectiveDate": "2021-07-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6533, "employeeId": 898, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7933, "employeeId": 898, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11943, "employeeId": 898, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3122, "employeeId": 899, "customEffectiveDate": "2021-06-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588308}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3189, "employeeId": 900, "customEffectiveDate": "2021-07-06", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3128, "employeeId": 901, "customEffectiveDate": "2021-06-16", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6218, "employeeId": 901, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7715, "employeeId": 901, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7927, "employeeId": 901, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13712, "employeeId": 901, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-363", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3173, "employeeId": 902, "customEffectiveDate": "2021-08-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3178, "employeeId": 903, "customEffectiveDate": "2021-08-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3544, "employeeId": 903, "customEffectiveDate": "2021-09-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3179, "employeeId": 904, "customEffectiveDate": "2021-07-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6585, "employeeId": 904, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7934, "employeeId": 904, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11962, "employeeId": 904, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-148", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3182, "employeeId": 905, "customEffectiveDate": "2021-11-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6335, "employeeId": 905, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7961, "employeeId": 905, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8419, "employeeId": 905, "customEffectiveDate": "2023-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588309}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11855, "employeeId": 905, "customEffectiveDate": "2023-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3184, "employeeId": 907, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4762, "employeeId": 907, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8337, "employeeId": 907, "customEffectiveDate": "2023-06-19", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3185, "employeeId": 908, "customEffectiveDate": "2021-06-28", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4938, "employeeId": 908, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3204, "employeeId": 909, "customEffectiveDate": "2021-10-04", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6005, "employeeId": 909, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11375, "employeeId": 909, "customEffectiveDate": "2023-02-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11873, "employeeId": 909, "customEffectiveDate": "2023-02-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-136", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3201, "employeeId": 910, "customEffectiveDate": "2021-10-25", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5918, "employeeId": 910, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10377, "employeeId": 910, "customEffectiveDate": "2022-11-11", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3207, "employeeId": 911, "customEffectiveDate": "2021-08-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6557, "employeeId": 911, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7939, "employeeId": 911, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11926, "employeeId": 911, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-151", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3198, "employeeId": 912, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588310}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6002, "employeeId": 912, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8134, "employeeId": 912, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11896, "employeeId": 912, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-128", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3202, "employeeId": 913, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3199, "employeeId": 914, "customEffectiveDate": "2021-09-13", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4236, "employeeId": 914, "customEffectiveDate": "2022-02-21", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6040, "employeeId": 914, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12192, "employeeId": 914, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-131", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3196, "employeeId": 915, "customEffectiveDate": "2021-09-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3200, "employeeId": 916, "customEffectiveDate": "2021-09-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6093, "employeeId": 916, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12281, "employeeId": 916, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-127", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3206, "employeeId": 918, "customEffectiveDate": "2021-07-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3209, "employeeId": 919, "customEffectiveDate": "2021-08-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3208, "employeeId": 920, "customEffectiveDate": "2021-07-19", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3249, "employeeId": 921, "customEffectiveDate": "2021-09-20", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6163, "employeeId": 921, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12266, "employeeId": 921, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-134", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588311}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3224, "employeeId": 922, "customEffectiveDate": "2021-07-15", "customDepartment#": "1300", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3461, "employeeId": 922, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4202, "employeeId": 922, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5940, "employeeId": 922, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3245, "employeeId": 923, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6643, "employeeId": 923, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8111, "employeeId": 923, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10045, "employeeId": 923, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3228, "employeeId": 924, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5381, "employeeId": 924, "customEffectiveDate": "2022-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6530, "employeeId": 924, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7937, "employeeId": 924, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3247, "employeeId": 925, "customEffectiveDate": "2021-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6644, "employeeId": 925, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8112, "employeeId": 925, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10046, "employeeId": 925, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3251, "employeeId": 926, "customEffectiveDate": "2021-09-02", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588312}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5212, "employeeId": 926, "customEffectiveDate": "2022-07-25", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6474, "employeeId": 926, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10189, "employeeId": 926, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11844, "employeeId": 926, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3250, "employeeId": 927, "customEffectiveDate": "2021-09-07", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5975, "employeeId": 927, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10181, "employeeId": 927, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11771, "employeeId": 927, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-130", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3266, "employeeId": 928, "customEffectiveDate": "2021-07-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6429, "employeeId": 928, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3254, "employeeId": 929, "customEffectiveDate": "2021-09-27", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6173, "employeeId": 929, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7947, "employeeId": 929, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11432, "employeeId": 929, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11663, "employeeId": 929, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-161", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3263, "employeeId": 930, "customEffectiveDate": "2021-08-09", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6369, "employeeId": 930, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6738, "employeeId": 930, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588313}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12138, "employeeId": 930, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-10", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16016, "employeeId": 930, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "", "customPosition": "GA-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3269, "employeeId": 931, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3270, "employeeId": 932, "customEffectiveDate": "2021-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6253, "employeeId": 932, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7950, "employeeId": 932, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11961, "employeeId": 932, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-163", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3298, "employeeId": 933, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6158, "employeeId": 933, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11812, "employeeId": 933, "customEffectiveDate": "2023-05-10", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-153", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3302, "employeeId": 934, "customEffectiveDate": "2021-08-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3301, "employeeId": 935, "customEffectiveDate": "2021-08-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6615, "employeeId": 935, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7940, "employeeId": 935, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3310, "employeeId": 936, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6428, "employeeId": 936, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12282, "employeeId": 936, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3345, "employeeId": 937, "customEffectiveDate": "2021-09-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588314}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6290, "employeeId": 937, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7945, "employeeId": 937, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11981, "employeeId": 937, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-156", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3312, "employeeId": 938, "customEffectiveDate": "2021-08-23", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6239, "employeeId": 938, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7941, "employeeId": 938, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12058, "employeeId": 938, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-154", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3328, "employeeId": 939, "customEffectiveDate": "2021-08-30", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7943, "employeeId": 939, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12098, "employeeId": 939, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15903, "employeeId": 939, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3326, "employeeId": 940, "customEffectiveDate": "2021-08-23", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6302, "employeeId": 940, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7942, "employeeId": 940, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12056, "employeeId": 940, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-153", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3331, "employeeId": 941, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6410, "employeeId": 941, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12186, "employeeId": 941, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588315}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3307, "employeeId": 942, "customEffectiveDate": "2021-09-13", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5989, "employeeId": 942, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10588, "employeeId": 942, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12165, "employeeId": 942, "customEffectiveDate": "2022-10-02", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-132", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3308, "employeeId": 943, "customEffectiveDate": "2021-08-30", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5988, "employeeId": 943, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12210, "employeeId": 943, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-125", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3309, "employeeId": 944, "customEffectiveDate": "2021-09-15", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5965, "employeeId": 944, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12180, "employeeId": 944, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-133", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3313, "employeeId": 945, "customEffectiveDate": "2021-08-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3314, "employeeId": 946, "customEffectiveDate": "2021-09-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6425, "employeeId": 946, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3316, "employeeId": 947, "customEffectiveDate": "2021-10-18", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6032, "employeeId": 947, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12257, "employeeId": 947, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-137", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3317, "employeeId": 948, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588316}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6255, "employeeId": 948, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7956, "employeeId": 948, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11970, "employeeId": 948, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-167", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3330, "employeeId": 951, "customEffectiveDate": "2021-08-30", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3468, "employeeId": 951, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4173, "employeeId": 951, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5943, "employeeId": 951, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "Developer Relations & Advocacy", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3334, "employeeId": 952, "customEffectiveDate": "2021-09-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6438, "employeeId": 952, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12321, "employeeId": 952, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3333, "employeeId": 953, "customEffectiveDate": "2021-11-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5987, "employeeId": 953, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10371, "employeeId": 953, "customEffectiveDate": "2022-11-20", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3408, "employeeId": 954, "customEffectiveDate": "2021-10-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6420, "employeeId": 954, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12241, "employeeId": 954, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3393, "employeeId": 955, "customEffectiveDate": "2021-09-27", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6236, "employeeId": 955, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588317}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7948, "employeeId": 955, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12006, "employeeId": 955, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-160", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3339, "employeeId": 956, "customEffectiveDate": "2021-08-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3342, "employeeId": 957, "customEffectiveDate": "2021-11-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5489, "employeeId": 957, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6045, "employeeId": 957, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12191, "employeeId": 957, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Data Importer", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-138", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3340, "employeeId": 958, "customEffectiveDate": "2021-10-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6192, "employeeId": 958, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7954, "employeeId": 958, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8198, "employeeId": 958, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9167, "employeeId": 958, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11828, "employeeId": 958, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-166", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588318}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3344, "employeeId": 959, "customEffectiveDate": "2021-05-17", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11582, "employeeId": 959, "customEffectiveDate": "2023-08-14", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3348, "employeeId": 960, "customEffectiveDate": "2022-01-03", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6109, "employeeId": 960, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12190, "employeeId": 960, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16060, "employeeId": 960, "customEffectiveDate": "2024-02-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-147", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3347, "employeeId": 961, "customEffectiveDate": "2021-11-22", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5973, "employeeId": 961, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10178, "employeeId": 961, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11768, "employeeId": 961, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-142", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3346, "employeeId": 962, "customEffectiveDate": "2021-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6110, "employeeId": 962, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12223, "employeeId": 962, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-135", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3391, "employeeId": 963, "customEffectiveDate": "2021-09-27", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6360, "employeeId": 963, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7949, "employeeId": 963, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12101, "employeeId": 963, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-162", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588319}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3384, "employeeId": 964, "customEffectiveDate": "2021-09-20", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3367, "employeeId": 965, "customEffectiveDate": "2021-09-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3368, "employeeId": 966, "customEffectiveDate": "2021-09-08", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3392, "employeeId": 967, "customEffectiveDate": "2021-09-27", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6665, "employeeId": 967, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8114, "employeeId": 967, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3385, "employeeId": 968, "customEffectiveDate": "2021-09-20", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6653, "employeeId": 968, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8113, "employeeId": 968, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10123, "employeeId": 968, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11785, "employeeId": 968, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-157", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3448, "employeeId": 969, "customEffectiveDate": "2021-10-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6687, "employeeId": 969, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17151, "employeeId": 969, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3374, "employeeId": 970, "customEffectiveDate": "2021-09-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6432, "employeeId": 970, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3377, "employeeId": 971, "customEffectiveDate": "2021-09-13", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3542, "employeeId": 971, "customEffectiveDate": "2021-10-15", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588320}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4159, "employeeId": 971, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3376, "employeeId": 972, "customEffectiveDate": "2021-12-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6120, "employeeId": 972, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12216, "employeeId": 972, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-146", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3382, "employeeId": 973, "customEffectiveDate": "2021-11-08", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6082, "employeeId": 973, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12287, "employeeId": 973, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-140", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3390, "employeeId": 974, "customEffectiveDate": "2021-09-27", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6654, "employeeId": 974, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8115, "employeeId": 974, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10117, "employeeId": 974, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11786, "employeeId": 974, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3446, "employeeId": 975, "customEffectiveDate": "2021-10-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6558, "employeeId": 975, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3404, "employeeId": 976, "customEffectiveDate": "2021-09-28", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3532, "employeeId": 977, "customEffectiveDate": "2021-10-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8098, "employeeId": 977, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10088, "employeeId": 977, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588321}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11856, "employeeId": 977, "customEffectiveDate": "2023-03-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15897, "employeeId": 977, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3389, "employeeId": 978, "customEffectiveDate": "2021-09-21", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4165, "employeeId": 978, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5554, "employeeId": 978, "customEffectiveDate": "2022-07-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5928, "employeeId": 978, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7946, "employeeId": 978, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12055, "employeeId": 978, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-158", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3394, "employeeId": 979, "customEffectiveDate": "2021-11-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6125, "employeeId": 979, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6820, "employeeId": 979, "customEffectiveDate": "2022-11-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12133, "employeeId": 979, "customEffectiveDate": "2022-11-14", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-139", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3395, "employeeId": 980, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4078, "employeeId": 980, "customEffectiveDate": "2022-01-09", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6550, "employeeId": 980, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7962, "employeeId": 980, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9115, "employeeId": 980, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588322}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11891, "employeeId": 980, "customEffectiveDate": "2023-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Promotion", "customPosition": "FO-171", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3471, "employeeId": 981, "customEffectiveDate": "2021-10-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6382, "employeeId": 981, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6733, "employeeId": 981, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12141, "employeeId": 981, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-11", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3397, "employeeId": 982, "customEffectiveDate": "2021-11-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6688, "employeeId": 982, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17149, "employeeId": 982, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3838, "employeeId": 983, "customEffectiveDate": "2021-12-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6231, "employeeId": 983, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7972, "employeeId": 983, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11751, "employeeId": 983, "customEffectiveDate": "2023-08-02", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-180", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3513, "employeeId": 984, "customEffectiveDate": "2021-10-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6616, "employeeId": 984, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7955, "employeeId": 984, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3407, "employeeId": 985, "customEffectiveDate": "2021-10-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6209, "employeeId": 985, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7952, "employeeId": 985, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588323}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12007, "employeeId": 985, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3417, "employeeId": 986, "customEffectiveDate": "2021-11-02", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6189, "employeeId": 986, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7712, "employeeId": 986, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7965, "employeeId": 986, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11908, "employeeId": 986, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-174", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3837, "employeeId": 987, "customEffectiveDate": "2021-11-30", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6348, "employeeId": 987, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7971, "employeeId": 987, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3403, "employeeId": 988, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3789, "employeeId": 989, "customEffectiveDate": "2021-11-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3410, "employeeId": 990, "customEffectiveDate": "2021-10-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4104, "employeeId": 990, "customEffectiveDate": "2022-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6627, "employeeId": 990, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7951, "employeeId": 990, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12050, "employeeId": 990, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-164", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3414, "employeeId": 991, "customEffectiveDate": "2021-10-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6212, "employeeId": 991, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588324}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7953, "employeeId": 991, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3415, "employeeId": 992, "customEffectiveDate": "2021-11-01", "customDepartment#": "1400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4203, "employeeId": 992, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5924, "employeeId": 992, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7963, "employeeId": 992, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9219, "employeeId": 992, "customEffectiveDate": "2023-05-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11819, "employeeId": 992, "customEffectiveDate": "2023-05-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-172", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3792, "employeeId": 993, "customEffectiveDate": "2021-11-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3439, "employeeId": 994, "customEffectiveDate": "2021-11-15", "customDepartment#": "2110", "customJobCode": "Quality", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5298, "employeeId": 994, "customEffectiveDate": "2022-06-22", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6144, "employeeId": 994, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12168, "employeeId": 994, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-141", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3475, "employeeId": 995, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3473, "employeeId": 996, "customEffectiveDate": "2021-10-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6493, "employeeId": 996, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6726, "employeeId": 996, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3481, "employeeId": 997, "customEffectiveDate": "2021-10-18", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588325}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4162, "employeeId": 997, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5927, "employeeId": 997, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7957, "employeeId": 997, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12022, "employeeId": 997, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-168", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3788, "employeeId": 998, "customEffectiveDate": "2021-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6411, "employeeId": 998, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3508, "employeeId": 999, "customEffectiveDate": "2021-11-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6292, "employeeId": 999, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7967, "employeeId": 999, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12002, "employeeId": 999, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-177", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3511, "employeeId": 1000, "customEffectiveDate": "2022-01-05", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6237, "employeeId": 1000, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7987, "employeeId": 1000, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11348, "employeeId": 1000, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11722, "employeeId": 1000, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-193", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3478, "employeeId": 1001, "customEffectiveDate": "2021-10-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3524, "employeeId": 1002, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6281, "employeeId": 1002, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588326}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7958, "employeeId": 1002, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13716, "employeeId": 1002, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-374", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3521, "employeeId": 1003, "customEffectiveDate": "2021-10-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3486, "employeeId": 1004, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6385, "employeeId": 1004, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6837, "employeeId": 1004, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10302, "employeeId": 1004, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11764, "employeeId": 1004, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3523, "employeeId": 1005, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6424, "employeeId": 1005, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8389, "employeeId": 1005, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11860, "employeeId": 1005, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3516, "employeeId": 1006, "customEffectiveDate": "2022-01-24", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6061, "employeeId": 1006, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12325, "employeeId": 1006, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-151", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3530, "employeeId": 1007, "customEffectiveDate": "2021-10-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6279, "employeeId": 1007, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588327}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7959, "employeeId": 1007, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3531, "employeeId": 1008, "customEffectiveDate": "2021-10-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6409, "employeeId": 1008, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8387, "employeeId": 1008, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11859, "employeeId": 1008, "customEffectiveDate": "2023-03-13", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3842, "employeeId": 1009, "customEffectiveDate": "2022-01-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6695, "employeeId": 1009, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17165, "employeeId": 1009, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3536, "employeeId": 1010, "customEffectiveDate": "2021-11-08", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6485, "employeeId": 1010, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6746, "employeeId": 1010, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3614, "employeeId": 1011, "customEffectiveDate": "2021-10-25", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6307, "employeeId": 1011, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7960, "employeeId": 1011, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12100, "employeeId": 1011, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15890, "employeeId": 1011, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-170", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588328}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3618, "employeeId": 1012, "customEffectiveDate": "2021-12-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6023, "employeeId": 1012, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12336, "employeeId": 1012, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-143", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3787, "employeeId": 1013, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6619, "employeeId": 1013, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3776, "employeeId": 1014, "customEffectiveDate": "2021-11-29", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6471, "employeeId": 1014, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10212, "employeeId": 1014, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3817, "employeeId": 1015, "customEffectiveDate": "2021-11-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6603, "employeeId": 1015, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7966, "employeeId": 1015, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12010, "employeeId": 1015, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-175", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3831, "employeeId": 1016, "customEffectiveDate": "2021-11-15", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5215, "employeeId": 1016, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6364, "employeeId": 1016, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7968, "employeeId": 1016, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11971, "employeeId": 1016, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-176", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3779, "employeeId": 1017, "customEffectiveDate": "2022-01-03", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588329}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6069, "employeeId": 1017, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12256, "employeeId": 1017, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-148", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3791, "employeeId": 1018, "customEffectiveDate": "2021-11-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6583, "employeeId": 1018, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7964, "employeeId": 1018, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3786, "employeeId": 1019, "customEffectiveDate": "2021-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6417, "employeeId": 1019, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3819, "employeeId": 1020, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7658, "employeeId": 1020, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10345, "employeeId": 1020, "customEffectiveDate": "2022-12-31", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3822, "employeeId": 1021, "customEffectiveDate": "2021-12-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6482, "employeeId": 1021, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6747, "employeeId": 1021, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3825, "employeeId": 1022, "customEffectiveDate": "2022-01-10", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6031, "employeeId": 1022, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12250, "employeeId": 1022, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-149", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3835, "employeeId": 1023, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3841, "employeeId": 1024, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588330}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6564, "employeeId": 1024, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7980, "employeeId": 1024, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3880, "employeeId": 1025, "customEffectiveDate": "2022-01-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6394, "employeeId": 1025, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12322, "employeeId": 1025, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3834, "employeeId": 1026, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6430, "employeeId": 1026, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3843, "employeeId": 1027, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6539, "employeeId": 1027, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7974, "employeeId": 1027, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3882, "employeeId": 1028, "customEffectiveDate": "2022-01-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6595, "employeeId": 1028, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7988, "employeeId": 1028, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11988, "employeeId": 1028, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3879, "employeeId": 1029, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6590, "employeeId": 1029, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7978, "employeeId": 1029, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588331}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11976, "employeeId": 1029, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-186", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3860, "employeeId": 1030, "customEffectiveDate": "2021-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3852, "employeeId": 1031, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6540, "employeeId": 1031, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7981, "employeeId": 1031, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11999, "employeeId": 1031, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-190", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3855, "employeeId": 1032, "customEffectiveDate": "2021-12-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6130, "employeeId": 1032, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12215, "employeeId": 1032, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-145", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3873, "employeeId": 1033, "customEffectiveDate": "2021-11-22", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6579, "employeeId": 1033, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7969, "employeeId": 1033, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11922, "employeeId": 1033, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-178", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3861, "employeeId": 1034, "customEffectiveDate": "2022-01-17", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6384, "employeeId": 1034, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12189, "employeeId": 1034, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3864, "employeeId": 1035, "customEffectiveDate": "2022-04-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6122, "employeeId": 1035, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588332}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12225, "employeeId": 1035, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-157", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3869, "employeeId": 1036, "customEffectiveDate": "2021-12-09", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6656, "employeeId": 1036, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8116, "employeeId": 1036, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10131, "employeeId": 1036, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11789, "employeeId": 1036, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15888, "employeeId": 1036, "customEffectiveDate": "2024-01-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3878, "employeeId": 1037, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6600, "employeeId": 1037, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7975, "employeeId": 1037, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12003, "employeeId": 1037, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15898, "employeeId": 1037, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-183", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3874, "employeeId": 1038, "customEffectiveDate": "2022-02-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6136, "employeeId": 1038, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11709, "employeeId": 1038, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-152", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3883, "employeeId": 1039, "customEffectiveDate": "2022-01-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6323, "employeeId": 1039, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7991, "employeeId": 1039, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588333}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11918, "employeeId": 1039, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-196", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3895, "employeeId": 1040, "customEffectiveDate": "2022-01-04", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6243, "employeeId": 1040, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7982, "employeeId": 1040, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12063, "employeeId": 1040, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-192", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3967, "employeeId": 1041, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6612, "employeeId": 1041, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7998, "employeeId": 1041, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12046, "employeeId": 1041, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15904, "employeeId": 1041, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3890, "employeeId": 1042, "customEffectiveDate": "2021-12-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6329, "employeeId": 1042, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7977, "employeeId": 1042, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12080, "employeeId": 1042, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-184", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3907, "employeeId": 1043, "customEffectiveDate": "2021-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6422, "employeeId": 1043, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3966, "employeeId": 1044, "customEffectiveDate": "2022-01-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588334}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6494, "employeeId": 1044, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6724, "employeeId": 1044, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12139, "employeeId": 1044, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-12", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3911, "employeeId": 1045, "customEffectiveDate": "2022-01-10", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6223, "employeeId": 1045, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7989, "employeeId": 1045, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3908, "employeeId": 1046, "customEffectiveDate": "2021-12-09", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6518, "employeeId": 1046, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7973, "employeeId": 1046, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12102, "employeeId": 1046, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-182", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3909, "employeeId": 1047, "customEffectiveDate": "2021-12-13", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4109, "employeeId": 1048, "customEffectiveDate": "2022-01-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6580, "employeeId": 1048, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7995, "employeeId": 1048, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11938, "employeeId": 1048, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-200", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3916, "employeeId": 1049, "customEffectiveDate": "2021-12-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6632, "employeeId": 1049, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7976, "employeeId": 1049, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588335}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3986, "employeeId": 1050, "customEffectiveDate": "2021-12-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6440, "employeeId": 1050, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12330, "employeeId": 1050, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3939, "employeeId": 1051, "customEffectiveDate": "2021-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5981, "employeeId": 1051, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12208, "employeeId": 1051, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16051, "employeeId": 1051, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Manager", "customPosition": "ENG-144", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3965, "employeeId": 1052, "customEffectiveDate": "2022-01-10", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3964, "employeeId": 1053, "customEffectiveDate": "2022-01-04", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6176, "employeeId": 1053, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7983, "employeeId": 1053, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11431, "employeeId": 1053, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11657, "employeeId": 1053, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-187", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3951, "employeeId": 1054, "customEffectiveDate": "2022-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6469, "employeeId": 1054, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10199, "employeeId": 1054, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11690, "employeeId": 1054, "customEffectiveDate": "2023-10-11", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3956, "employeeId": 1055, "customEffectiveDate": "2022-01-10", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588336}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6106, "employeeId": 1055, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12316, "employeeId": 1055, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-150", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4142, "employeeId": 1056, "customEffectiveDate": "2022-02-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6306, "employeeId": 1056, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7999, "employeeId": 1056, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12077, "employeeId": 1056, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-205", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3984, "employeeId": 1057, "customEffectiveDate": "2022-01-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6703, "employeeId": 1057, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17182, "employeeId": 1057, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3971, "employeeId": 1058, "customEffectiveDate": "2022-02-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6297, "employeeId": 1058, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7997, "employeeId": 1058, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12037, "employeeId": 1058, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-202", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3981, "employeeId": 1059, "customEffectiveDate": "2022-09-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6248, "employeeId": 1059, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8076, "employeeId": 1059, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12011, "employeeId": 1059, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-265", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588337}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3987, "employeeId": 1060, "customEffectiveDate": "2022-01-17", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4718, "employeeId": 1060, "customEffectiveDate": "2022-06-20", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11713, "employeeId": 1060, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-169", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3989, "employeeId": 1061, "customEffectiveDate": "2022-01-17", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4945, "employeeId": 1061, "customEffectiveDate": "2022-08-15", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5959, "employeeId": 1061, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12291, "employeeId": 1061, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-178", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3991, "employeeId": 1062, "customEffectiveDate": "2022-01-24", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6528, "employeeId": 1062, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7994, "employeeId": 1062, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12078, "employeeId": 1062, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-199", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3993, "employeeId": 1063, "customEffectiveDate": "2022-02-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6156, "employeeId": 1063, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10372, "employeeId": 1063, "customEffectiveDate": "2023-05-19", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 3999, "employeeId": 1064, "customEffectiveDate": "2022-03-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6333, "employeeId": 1064, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8007, "employeeId": 1064, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12108, "employeeId": 1064, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-212", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588338}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4002, "employeeId": 1065, "customEffectiveDate": "2022-01-03", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6553, "employeeId": 1065, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7979, "employeeId": 1065, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11935, "employeeId": 1065, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-185", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4021, "employeeId": 1066, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6596, "employeeId": 1066, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7984, "employeeId": 1066, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11992, "employeeId": 1066, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-189", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4019, "employeeId": 1067, "customEffectiveDate": "2022-01-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6372, "employeeId": 1067, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6729, "employeeId": 1067, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4020, "employeeId": 1068, "customEffectiveDate": "2022-01-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6587, "employeeId": 1068, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7985, "employeeId": 1068, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11968, "employeeId": 1068, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-188", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4121, "employeeId": 1069, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6594, "employeeId": 1069, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8000, "employeeId": 1069, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588339}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11986, "employeeId": 1069, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16046, "employeeId": 1069, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4054, "employeeId": 1072, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4052, "employeeId": 1073, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6663, "employeeId": 1073, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8117, "employeeId": 1073, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10127, "employeeId": 1073, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13720, "employeeId": 1073, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-378", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4044, "employeeId": 1074, "customEffectiveDate": "2022-01-10", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6182, "employeeId": 1074, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7990, "employeeId": 1074, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12070, "employeeId": 1074, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-194", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4079, "employeeId": 1075, "customEffectiveDate": "2022-02-15", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6326, "employeeId": 1075, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8003, "employeeId": 1075, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12030, "employeeId": 1075, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4041, "employeeId": 1076, "customEffectiveDate": "2022-01-04", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588340}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6178, "employeeId": 1076, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7986, "employeeId": 1076, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11425, "employeeId": 1076, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11659, "employeeId": 1076, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-191", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4055, "employeeId": 1077, "customEffectiveDate": "2022-01-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6666, "employeeId": 1077, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8118, "employeeId": 1077, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4053, "employeeId": 1078, "customEffectiveDate": "2022-02-07", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8099, "employeeId": 1078, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13717, "employeeId": 1078, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-375", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4087, "employeeId": 1079, "customEffectiveDate": "2022-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6473, "employeeId": 1079, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10200, "employeeId": 1079, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11024, "employeeId": 1079, "customEffectiveDate": "2023-09-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Added Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11699, "employeeId": 1079, "customEffectiveDate": "2023-09-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Added Aura Role", "customPosition": "PRD-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4050, "employeeId": 1080, "customEffectiveDate": "2022-01-10", "customDepartment#": "1300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4166, "employeeId": 1080, "customEffectiveDate": "2022-02-01", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4780, "employeeId": 1080, "customEffectiveDate": "2022-03-28", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588341}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5950, "employeeId": 1080, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12296, "employeeId": 1080, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4090, "employeeId": 1081, "customEffectiveDate": "2022-01-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4123, "employeeId": 1083, "customEffectiveDate": "2022-06-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6669, "employeeId": 1083, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8124, "employeeId": 1083, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10130, "employeeId": 1083, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11802, "employeeId": 1083, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-240", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4086, "employeeId": 1084, "customEffectiveDate": "2022-01-24", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6689, "employeeId": 1084, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17160, "employeeId": 1084, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4085, "employeeId": 1085, "customEffectiveDate": "2022-01-18", "customDepartment#": "1400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4157, "employeeId": 1085, "customEffectiveDate": "2022-02-01", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5926, "employeeId": 1085, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7992, "employeeId": 1085, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11967, "employeeId": 1085, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-197", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4091, "employeeId": 1086, "customEffectiveDate": "2022-01-17", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6460, "employeeId": 1086, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588342}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10191, "employeeId": 1086, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11845, "employeeId": 1086, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4095, "employeeId": 1088, "customEffectiveDate": "2022-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6531, "employeeId": 1088, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8008, "employeeId": 1088, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4098, "employeeId": 1089, "customEffectiveDate": "2022-02-28", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6011, "employeeId": 1089, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12222, "employeeId": 1089, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-154", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4108, "employeeId": 1090, "customEffectiveDate": "2022-01-24", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6655, "employeeId": 1090, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8119, "employeeId": 1090, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10124, "employeeId": 1090, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11788, "employeeId": 1090, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-198", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4114, "employeeId": 1091, "customEffectiveDate": "2022-04-19", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5922, "employeeId": 1091, "customEffectiveDate": "2022-10-01", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8024, "employeeId": 1091, "customEffectiveDate": "2022-12-05", "customDepartment#": "1200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4120, "employeeId": 1092, "customEffectiveDate": "2022-02-14", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588343}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6605, "employeeId": 1092, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8001, "employeeId": 1092, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12017, "employeeId": 1092, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-207", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4117, "employeeId": 1093, "customEffectiveDate": "2022-09-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5776, "employeeId": 1093, "customEffectiveDate": "2022-09-08", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5914, "employeeId": 1093, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6745, "employeeId": 1093, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12154, "employeeId": 1093, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4227, "employeeId": 1095, "customEffectiveDate": "2022-03-28", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6478, "employeeId": 1095, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9137, "employeeId": 1095, "customEffectiveDate": "2023-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10004, "employeeId": 1095, "customEffectiveDate": "2023-05-17", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10198, "employeeId": 1095, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11810, "employeeId": 1095, "customEffectiveDate": "2023-05-17", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Promotion", "customPosition": "PRD-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16058, "employeeId": 1095, "customEffectiveDate": "2024-02-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "No longer People Manager", "customPosition": "PRD-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4673, "employeeId": 1096, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7659, "employeeId": 1096, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "SYS-3", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4705, "employeeId": 1097, "customEffectiveDate": "2022-04-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588344}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4127, "employeeId": 1098, "customEffectiveDate": "2022-01-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6437, "employeeId": 1098, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8417, "employeeId": 1098, "customEffectiveDate": "2023-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11897, "employeeId": 1098, "customEffectiveDate": "2023-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4131, "employeeId": 1099, "customEffectiveDate": "2022-01-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6606, "employeeId": 1099, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7996, "employeeId": 1099, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12025, "employeeId": 1099, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17243, "employeeId": 1099, "customEffectiveDate": "2024-03-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-394", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4645, "employeeId": 1100, "customEffectiveDate": "2022-03-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6188, "employeeId": 1100, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8009, "employeeId": 1100, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11902, "employeeId": 1100, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-211", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4140, "employeeId": 1101, "customEffectiveDate": "2022-02-07", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4143, "employeeId": 1102, "customEffectiveDate": "2022-02-14", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6177, "employeeId": 1102, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8002, "employeeId": 1102, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11429, "employeeId": 1102, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588345}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11658, "employeeId": 1102, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-206", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17417, "employeeId": 1102, "customEffectiveDate": "2024-03-18", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-254", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4144, "employeeId": 1103, "customEffectiveDate": "2022-05-10", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6388, "employeeId": 1103, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12327, "employeeId": 1103, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4148, "employeeId": 1104, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4953, "employeeId": 1104, "customEffectiveDate": "2022-04-11", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6244, "employeeId": 1104, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8016, "employeeId": 1104, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12061, "employeeId": 1104, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-217", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4608, "employeeId": 1105, "customEffectiveDate": "2022-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6421, "employeeId": 1105, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4658, "employeeId": 1107, "customEffectiveDate": "2022-03-07", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6358, "employeeId": 1107, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8011, "employeeId": 1107, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12074, "employeeId": 1107, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-214", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4210, "employeeId": 1108, "customEffectiveDate": "2022-02-09", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588346}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5378, "employeeId": 1108, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4225, "employeeId": 1109, "customEffectiveDate": "2022-02-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6433, "employeeId": 1109, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12294, "employeeId": 1109, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4697, "employeeId": 1110, "customEffectiveDate": "2022-03-21", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6490, "employeeId": 1110, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6723, "employeeId": 1110, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4625, "employeeId": 1111, "customEffectiveDate": "2022-02-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6407, "employeeId": 1111, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12177, "employeeId": 1111, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4230, "employeeId": 1112, "customEffectiveDate": "2022-05-16", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6095, "employeeId": 1112, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8229, "employeeId": 1112, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11876, "employeeId": 1112, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-161", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4244, "employeeId": 1113, "customEffectiveDate": "2022-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6330, "employeeId": 1113, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8014, "employeeId": 1113, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12082, "employeeId": 1113, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-216", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588347}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4623, "employeeId": 1114, "customEffectiveDate": "2022-02-28", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6353, "employeeId": 1114, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8004, "employeeId": 1114, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12013, "employeeId": 1114, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-209", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4657, "employeeId": 1115, "customEffectiveDate": "2022-03-07", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5947, "employeeId": 1115, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10466, "employeeId": 1115, "customEffectiveDate": "2023-08-21", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11740, "employeeId": 1115, "customEffectiveDate": "2023-08-21", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4624, "employeeId": 1116, "customEffectiveDate": "2022-02-28", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6690, "employeeId": 1116, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17166, "employeeId": 1116, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4627, "employeeId": 1117, "customEffectiveDate": "2022-03-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6453, "employeeId": 1117, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12302, "employeeId": 1117, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "MKG-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4626, "employeeId": 1118, "customEffectiveDate": "2022-02-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6586, "employeeId": 1118, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8005, "employeeId": 1118, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4660, "employeeId": 1119, "customEffectiveDate": "2022-03-21", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588348}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6674, "employeeId": 1119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13721, "employeeId": 1119, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4622, "employeeId": 1120, "customEffectiveDate": "2022-02-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6439, "employeeId": 1120, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4702, "employeeId": 1121, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6291, "employeeId": 1121, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8017, "employeeId": 1121, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4649, "employeeId": 1122, "customEffectiveDate": "2022-03-14", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6174, "employeeId": 1122, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8013, "employeeId": 1122, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11433, "employeeId": 1122, "customEffectiveDate": "2023-11-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11668, "employeeId": 1122, "customEffectiveDate": "2023-11-15", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-215", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4621, "employeeId": 1124, "customEffectiveDate": "2022-02-28", "customDepartment#": "3720", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6180, "employeeId": 1124, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8006, "employeeId": 1124, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11426, "employeeId": 1124, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11665, "employeeId": 1124, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-210", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4659, "employeeId": 1126, "customEffectiveDate": "2022-03-07", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588349}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6208, "employeeId": 1126, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8012, "employeeId": 1126, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4632, "employeeId": 1127, "customEffectiveDate": "2022-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6042, "employeeId": 1127, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8272, "employeeId": 1127, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11213, "employeeId": 1127, "customEffectiveDate": "2023-11-06", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11673, "employeeId": 1127, "customEffectiveDate": "2023-11-06", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team", "customPosition": "ENG-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4639, "employeeId": 1128, "customEffectiveDate": "2022-03-21", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6053, "employeeId": 1128, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12339, "employeeId": 1128, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-156", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4646, "employeeId": 1129, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6034, "employeeId": 1129, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12233, "employeeId": 1129, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-158", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4679, "employeeId": 1130, "customEffectiveDate": "2022-06-06", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12202, "employeeId": 1130, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-168", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5138, "employeeId": 1131, "customEffectiveDate": "2022-05-23", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4755, "employeeId": 1132, "customEffectiveDate": "2022-05-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9184, "employeeId": 1132, "customEffectiveDate": "2023-05-30", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588350}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4664, "employeeId": 1133, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6041, "employeeId": 1133, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12252, "employeeId": 1133, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-162", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4656, "employeeId": 1134, "customEffectiveDate": "2022-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6435, "employeeId": 1134, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4676, "employeeId": 1136, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6639, "employeeId": 1136, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8120, "employeeId": 1136, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10043, "employeeId": 1136, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4682, "employeeId": 1138, "customEffectiveDate": "2022-06-06", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8044, "employeeId": 1138, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11923, "employeeId": 1138, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-242", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4686, "employeeId": 1139, "customEffectiveDate": "2022-03-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6614, "employeeId": 1139, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8010, "employeeId": 1139, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12059, "employeeId": 1139, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-213", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4692, "employeeId": 1140, "customEffectiveDate": "2022-03-21", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588351}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5737, "employeeId": 1140, "customEffectiveDate": "2022-09-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6269, "employeeId": 1140, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8015, "employeeId": 1140, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4698, "employeeId": 1141, "customEffectiveDate": "2022-03-28", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5949, "employeeId": 1141, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4763, "employeeId": 1142, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6640, "employeeId": 1142, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8121, "employeeId": 1142, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10044, "employeeId": 1142, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11799, "employeeId": 1142, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-225", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4751, "employeeId": 1143, "customEffectiveDate": "2022-04-25", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6203, "employeeId": 1143, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7721, "employeeId": 1143, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8025, "employeeId": 1143, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11914, "employeeId": 1143, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-226", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4704, "employeeId": 1144, "customEffectiveDate": "2022-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6285, "employeeId": 1144, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8018, "employeeId": 1144, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588352}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11963, "employeeId": 1144, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-219", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4758, "employeeId": 1145, "customEffectiveDate": "2022-04-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6426, "employeeId": 1145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12270, "employeeId": 1145, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4703, "employeeId": 1146, "customEffectiveDate": "2022-04-04", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4750, "employeeId": 1147, "customEffectiveDate": "2022-04-04", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6205, "employeeId": 1147, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8019, "employeeId": 1147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11946, "employeeId": 1147, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-218", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4769, "employeeId": 1148, "customEffectiveDate": "2022-05-16", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6696, "employeeId": 1148, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17157, "employeeId": 1148, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4754, "employeeId": 1149, "customEffectiveDate": "2022-06-27", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5929, "employeeId": 1149, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8050, "employeeId": 1149, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12117, "employeeId": 1149, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-248", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4757, "employeeId": 1150, "customEffectiveDate": "2022-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6418, "employeeId": 1150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588353}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12220, "employeeId": 1150, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4746, "employeeId": 1151, "customEffectiveDate": "2022-03-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4766, "employeeId": 1152, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6481, "employeeId": 1152, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6751, "employeeId": 1152, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4752, "employeeId": 1154, "customEffectiveDate": "2022-04-11", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6519, "employeeId": 1154, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6770, "employeeId": 1154, "customEffectiveDate": "2022-11-07", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8021, "employeeId": 1154, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4742, "employeeId": 1155, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5563, "employeeId": 1155, "customEffectiveDate": "2022-10-19", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6014, "employeeId": 1155, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12160, "employeeId": 1155, "customEffectiveDate": "2022-10-19", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-194", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4753, "employeeId": 1156, "customEffectiveDate": "2022-04-18", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6233, "employeeId": 1156, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8022, "employeeId": 1156, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11940, "employeeId": 1156, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-221", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588354}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4772, "employeeId": 1157, "customEffectiveDate": "2022-06-20", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6320, "employeeId": 1157, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8048, "employeeId": 1157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11991, "employeeId": 1157, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-244", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4805, "employeeId": 1158, "customEffectiveDate": "2022-04-26", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6449, "employeeId": 1158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12251, "employeeId": 1158, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4777, "employeeId": 1159, "customEffectiveDate": "2022-04-04", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "James Webber", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5187, "employeeId": 1160, "customEffectiveDate": "2022-06-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6275, "employeeId": 1160, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8037, "employeeId": 1160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12065, "employeeId": 1160, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-238", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4808, "employeeId": 1161, "customEffectiveDate": "2022-05-02", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6197, "employeeId": 1161, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7719, "employeeId": 1161, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8028, "employeeId": 1161, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11904, "employeeId": 1161, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-227", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4969, "employeeId": 1162, "customEffectiveDate": "2022-05-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588355}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6403, "employeeId": 1162, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4786, "employeeId": 1163, "customEffectiveDate": "2022-03-28", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6413, "employeeId": 1163, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4787, "employeeId": 1164, "customEffectiveDate": "2022-06-07", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4789, "employeeId": 1165, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8339, "employeeId": 1165, "customEffectiveDate": "2023-06-19", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4791, "employeeId": 1166, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4793, "employeeId": 1167, "customEffectiveDate": "2022-06-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4796, "employeeId": 1168, "customEffectiveDate": "2022-08-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6004, "employeeId": 1168, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12261, "employeeId": 1168, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16933, "employeeId": 1168, "customEffectiveDate": "2024-02-12", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Team", "customPosition": "ENG-173", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4795, "employeeId": 1169, "customEffectiveDate": "2022-04-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6367, "employeeId": 1169, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12185, "employeeId": 1169, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17153, "employeeId": 1169, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4809, "employeeId": 1170, "customEffectiveDate": "2022-04-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4804, "employeeId": 1171, "customEffectiveDate": "2022-04-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588356}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6593, "employeeId": 1171, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8020, "employeeId": 1171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11985, "employeeId": 1171, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-220", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4818, "employeeId": 1172, "customEffectiveDate": "2022-04-18", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6282, "employeeId": 1172, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8023, "employeeId": 1172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11956, "employeeId": 1172, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4819, "employeeId": 1173, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6345, "employeeId": 1173, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8026, "employeeId": 1173, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11932, "employeeId": 1173, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-224", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4812, "employeeId": 1174, "customEffectiveDate": "2022-04-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6704, "employeeId": 1174, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15896, "employeeId": 1174, "customEffectiveDate": "2024-01-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17161, "employeeId": 1174, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4932, "employeeId": 1175, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6488, "employeeId": 1175, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6721, "employeeId": 1175, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588357}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12142, "employeeId": 1175, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4858, "employeeId": 1176, "customEffectiveDate": "2022-06-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6510, "employeeId": 1176, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8038, "employeeId": 1176, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11998, "employeeId": 1176, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-235", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4936, "employeeId": 1178, "customEffectiveDate": "2022-05-09", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6277, "employeeId": 1178, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8031, "employeeId": 1178, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12124, "employeeId": 1178, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15901, "employeeId": 1178, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4956, "employeeId": 1179, "customEffectiveDate": "2022-05-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6338, "employeeId": 1179, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8029, "employeeId": 1179, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4933, "employeeId": 1180, "customEffectiveDate": "2022-04-25", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6705, "employeeId": 1180, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17176, "employeeId": 1180, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4934, "employeeId": 1181, "customEffectiveDate": "2022-04-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588358}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6646, "employeeId": 1181, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8122, "employeeId": 1181, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4925, "employeeId": 1182, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6018, "employeeId": 1182, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10381, "employeeId": 1182, "customEffectiveDate": "2022-11-30", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4935, "employeeId": 1183, "customEffectiveDate": "2022-04-25", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6671, "employeeId": 1183, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4954, "employeeId": 1184, "customEffectiveDate": "2022-04-25", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6112, "employeeId": 1184, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10351, "employeeId": 1184, "customEffectiveDate": "2023-06-23", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13710, "employeeId": 1184, "customEffectiveDate": "2023-06-23", "customDepartment#": "2110", "customJobCode": "Langstar", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "ENG-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4940, "employeeId": 1185, "customEffectiveDate": "2022-06-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6087, "employeeId": 1185, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10165, "employeeId": 1185, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11782, "employeeId": 1185, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-167", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4957, "employeeId": 1186, "customEffectiveDate": "2022-05-02", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6271, "employeeId": 1186, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8030, "employeeId": 1186, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588359}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12035, "employeeId": 1186, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-228", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4937, "employeeId": 1187, "customEffectiveDate": "2022-04-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4967, "employeeId": 1188, "customEffectiveDate": "2022-05-02", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4950, "employeeId": 1190, "customEffectiveDate": "2022-06-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6001, "employeeId": 1190, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12300, "employeeId": 1190, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-166", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4958, "employeeId": 1191, "customEffectiveDate": "2022-06-20", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6247, "employeeId": 1191, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8049, "employeeId": 1191, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11994, "employeeId": 1191, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-245", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4985, "employeeId": 1193, "customEffectiveDate": "2022-04-25", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6344, "employeeId": 1193, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8027, "employeeId": 1193, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11924, "employeeId": 1193, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4973, "employeeId": 1194, "customEffectiveDate": "2022-05-30", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6157, "employeeId": 1194, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12187, "employeeId": 1194, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12345, "employeeId": 1194, "customEffectiveDate": "2023-12-19", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588360}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4970, "employeeId": 1195, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6102, "employeeId": 1195, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12260, "employeeId": 1195, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-177", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5055, "employeeId": 1196, "customEffectiveDate": "2022-05-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5054, "employeeId": 1197, "customEffectiveDate": "2022-05-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4986, "employeeId": 1198, "customEffectiveDate": "2022-06-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6319, "employeeId": 1198, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8039, "employeeId": 1198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11989, "employeeId": 1198, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-234", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4987, "employeeId": 1199, "customEffectiveDate": "2022-04-25", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6092, "employeeId": 1199, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12219, "employeeId": 1199, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4992, "employeeId": 1200, "customEffectiveDate": "2022-05-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6063, "employeeId": 1200, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12340, "employeeId": 1200, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-160", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 4996, "employeeId": 1201, "customEffectiveDate": "2022-05-30", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5979, "employeeId": 1201, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10184, "employeeId": 1201, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588361}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11778, "employeeId": 1201, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-164", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5008, "employeeId": 1203, "customEffectiveDate": "2022-05-30", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5976, "employeeId": 1203, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10182, "employeeId": 1203, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11774, "employeeId": 1203, "customEffectiveDate": "2023-06-20", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-163", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5001, "employeeId": 1204, "customEffectiveDate": "2022-04-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6575, "employeeId": 1204, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5002, "employeeId": 1205, "customEffectiveDate": "2022-05-23", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5925, "employeeId": 1205, "customEffectiveDate": "2022-10-01", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8033, "employeeId": 1205, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12072, "employeeId": 1205, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-232", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5131, "employeeId": 1206, "customEffectiveDate": "2022-07-11", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6167, "employeeId": 1206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12314, "employeeId": 1206, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-172", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5056, "employeeId": 1207, "customEffectiveDate": "2022-05-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8325, "employeeId": 1207, "customEffectiveDate": "2023-02-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Rehire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11867, "employeeId": 1207, "customEffectiveDate": "2023-02-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Rehire", "customPosition": "FO-301", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5097, "employeeId": 1208, "customEffectiveDate": "2022-05-23", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588362}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6268, "employeeId": 1208, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8034, "employeeId": 1208, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11996, "employeeId": 1208, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-231", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5543, "employeeId": 1209, "customEffectiveDate": "2022-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6373, "employeeId": 1209, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6731, "employeeId": 1209, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12156, "employeeId": 1209, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5070, "employeeId": 1210, "customEffectiveDate": "2022-05-09", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6199, "employeeId": 1210, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8032, "employeeId": 1210, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10082, "employeeId": 1210, "customEffectiveDate": "2023-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Converted to FTE", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11806, "employeeId": 1210, "customEffectiveDate": "2023-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Converted to FTE", "customPosition": "FO-229", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5066, "employeeId": 1211, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7723, "employeeId": 1211, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8040, "employeeId": 1211, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11910, "employeeId": 1211, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15905, "employeeId": 1211, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588363}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5067, "employeeId": 1212, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6529, "employeeId": 1212, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8041, "employeeId": 1212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12115, "employeeId": 1212, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-241", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5093, "employeeId": 1213, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5990, "employeeId": 1213, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12243, "employeeId": 1213, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-184", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5134, "employeeId": 1214, "customEffectiveDate": "2022-05-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6569, "employeeId": 1214, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8035, "employeeId": 1214, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5117, "employeeId": 1215, "customEffectiveDate": "2022-06-13", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5231, "employeeId": 1216, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6404, "employeeId": 1216, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12285, "employeeId": 1216, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-42", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5121, "employeeId": 1217, "customEffectiveDate": "2022-05-23", "customDepartment#": "2110", "customJobCode": "Devtools", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5376, "employeeId": 1219, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6447, "employeeId": 1219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12181, "employeeId": 1219, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588364}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5454, "employeeId": 1220, "customEffectiveDate": "2022-07-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6198, "employeeId": 1220, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8059, "employeeId": 1220, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5192, "employeeId": 1222, "customEffectiveDate": "2022-06-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6219, "employeeId": 1222, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8051, "employeeId": 1222, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9117, "employeeId": 1222, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11895, "employeeId": 1222, "customEffectiveDate": "2023-01-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-247", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5155, "employeeId": 1223, "customEffectiveDate": "2022-05-31", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6647, "employeeId": 1223, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8123, "employeeId": 1223, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10126, "employeeId": 1223, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11797, "employeeId": 1223, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-233", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5173, "employeeId": 1224, "customEffectiveDate": "2022-09-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6386, "employeeId": 1224, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12211, "employeeId": 1224, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-47", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5191, "employeeId": 1225, "customEffectiveDate": "2022-06-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6202, "employeeId": 1225, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588365}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8046, "employeeId": 1225, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5161, "employeeId": 1227, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12170, "employeeId": 1227, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-174", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5160, "employeeId": 1228, "customEffectiveDate": "2022-06-01", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6230, "employeeId": 1228, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8042, "employeeId": 1228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12067, "employeeId": 1228, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-239", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5165, "employeeId": 1229, "customEffectiveDate": "2022-07-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5917, "employeeId": 1229, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10187, "employeeId": 1229, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11839, "employeeId": 1229, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5193, "employeeId": 1230, "customEffectiveDate": "2022-06-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6220, "employeeId": 1230, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8045, "employeeId": 1230, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12126, "employeeId": 1230, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-243", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5176, "employeeId": 1231, "customEffectiveDate": "2022-08-15", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6691, "employeeId": 1231, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588366}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17183, "employeeId": 1231, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5174, "employeeId": 1232, "customEffectiveDate": "2022-09-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6060, "employeeId": 1232, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12299, "employeeId": 1232, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-185", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5170, "employeeId": 1233, "customEffectiveDate": "2022-07-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6527, "employeeId": 1233, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8055, "employeeId": 1233, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5178, "employeeId": 1234, "customEffectiveDate": "2022-06-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6552, "employeeId": 1234, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8043, "employeeId": 1234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12051, "employeeId": 1234, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-236", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5184, "employeeId": 1235, "customEffectiveDate": "2022-05-31", "customDepartment#": "3800", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5499, "employeeId": 1235, "customEffectiveDate": "2022-07-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6572, "employeeId": 1235, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8036, "employeeId": 1235, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5190, "employeeId": 1237, "customEffectiveDate": "2022-07-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6393, "employeeId": 1237, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12308, "employeeId": 1237, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-43", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588367}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5198, "employeeId": 1238, "customEffectiveDate": "2022-07-25", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6454, "employeeId": 1238, "customEffectiveDate": "2022-10-01", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10190, "employeeId": 1238, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11028, "employeeId": 1238, "customEffectiveDate": "2023-09-27", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "Aura Role assigned", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11126, "employeeId": 1238, "customEffectiveDate": "2023-10-06", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Aura Role assigned", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11693, "employeeId": 1238, "customEffectiveDate": "2023-10-06", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Aura Role assigned", "customPosition": "PRD-18", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5379, "employeeId": 1239, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6486, "employeeId": 1239, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6722, "employeeId": 1239, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8370, "employeeId": 1239, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11889, "employeeId": 1239, "customEffectiveDate": "2023-01-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-15", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5216, "employeeId": 1240, "customEffectiveDate": "2022-06-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6570, "employeeId": 1240, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8047, "employeeId": 1240, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5200, "employeeId": 1241, "customEffectiveDate": "2022-06-06", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8235, "employeeId": 1241, "customEffectiveDate": "2023-01-26", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10380, "employeeId": 1241, "customEffectiveDate": "2023-02-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5202, "employeeId": 1242, "customEffectiveDate": "2022-06-06", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588368}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5217, "employeeId": 1243, "customEffectiveDate": "2022-06-13", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6381, "employeeId": 1243, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6737, "employeeId": 1243, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12152, "employeeId": 1243, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-14", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5492, "employeeId": 1244, "customEffectiveDate": "2022-07-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6339, "employeeId": 1244, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8063, "employeeId": 1244, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12092, "employeeId": 1244, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-257", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5380, "employeeId": 1245, "customEffectiveDate": "2022-07-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6400, "employeeId": 1245, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10301, "employeeId": 1245, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11763, "employeeId": 1245, "customEffectiveDate": "2023-07-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-41", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5234, "employeeId": 1246, "customEffectiveDate": "2022-07-04", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6322, "employeeId": 1246, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8057, "employeeId": 1246, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12043, "employeeId": 1246, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-252", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5457, "employeeId": 1247, "customEffectiveDate": "2022-07-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6195, "employeeId": 1247, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588369}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8060, "employeeId": 1247, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11901, "employeeId": 1247, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-254", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15944, "employeeId": 1247, "customEffectiveDate": "2024-01-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-386", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5223, "employeeId": 1248, "customEffectiveDate": "2022-06-13", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10013, "employeeId": 1248, "customEffectiveDate": "2023-06-27", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5291, "employeeId": 1250, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6184, "employeeId": 1250, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8067, "employeeId": 1250, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8197, "employeeId": 1250, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11879, "employeeId": 1250, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-258", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5448, "employeeId": 1251, "customEffectiveDate": "2022-07-11", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6638, "employeeId": 1251, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8125, "employeeId": 1251, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10042, "employeeId": 1251, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11791, "employeeId": 1251, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-255", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5232, "employeeId": 1252, "customEffectiveDate": "2022-08-15", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5982, "employeeId": 1252, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588370}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12214, "employeeId": 1252, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-176", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5374, "employeeId": 1254, "customEffectiveDate": "2022-07-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6200, "employeeId": 1254, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8058, "employeeId": 1254, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12060, "employeeId": 1254, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-253", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5493, "employeeId": 1255, "customEffectiveDate": "2022-07-18", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6194, "employeeId": 1255, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8064, "employeeId": 1255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11934, "employeeId": 1255, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-256", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5273, "employeeId": 1256, "customEffectiveDate": "2022-06-27", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6672, "employeeId": 1256, "customEffectiveDate": "2022-10-01", "customDepartment#": "3220", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5320, "employeeId": 1258, "customEffectiveDate": "2022-07-18", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8065, "employeeId": 1258, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5692, "employeeId": 1259, "customEffectiveDate": "2022-06-15", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5420, "employeeId": 1260, "customEffectiveDate": "2022-07-25", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8066, "employeeId": 1260, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-436", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5314, "employeeId": 1261, "customEffectiveDate": "2022-06-27", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6568, "employeeId": 1261, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588371}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8052, "employeeId": 1261, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11995, "employeeId": 1261, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-246", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5268, "employeeId": 1262, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10548, "employeeId": 1262, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11710, "employeeId": 1262, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-209", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5494, "employeeId": 1264, "customEffectiveDate": "2022-07-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6406, "employeeId": 1264, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12317, "employeeId": 1264, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-44", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5455, "employeeId": 1265, "customEffectiveDate": "2022-07-11", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6273, "employeeId": 1265, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8061, "employeeId": 1265, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5375, "employeeId": 1266, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6489, "employeeId": 1266, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6725, "employeeId": 1266, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12153, "employeeId": 1266, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-17", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5453, "employeeId": 1267, "customEffectiveDate": "2022-07-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6571, "employeeId": 1267, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8062, "employeeId": 1267, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588372}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5284, "employeeId": 1268, "customEffectiveDate": "2022-08-29", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6035, "employeeId": 1268, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10464, "employeeId": 1268, "customEffectiveDate": "2023-09-30", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Termination", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5456, "employeeId": 1269, "customEffectiveDate": "2022-07-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17167, "employeeId": 1269, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5305, "employeeId": 1270, "customEffectiveDate": "2022-08-22", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6139, "employeeId": 1270, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8228, "employeeId": 1270, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11874, "employeeId": 1270, "customEffectiveDate": "2023-01-17", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-180", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5592, "employeeId": 1271, "customEffectiveDate": "2022-08-15", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6140, "employeeId": 1271, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10547, "employeeId": 1271, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11712, "employeeId": 1271, "customEffectiveDate": "2023-09-06", "customDepartment#": "2110", "customJobCode": "Ops Manager", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-175", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5310, "employeeId": 1272, "customEffectiveDate": "2022-06-28", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8053, "employeeId": 1272, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11929, "employeeId": 1272, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-249", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5719, "employeeId": 1273, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11863, "employeeId": 1273, "customEffectiveDate": "2023-02-27", "customDepartment#": "2110", "customJobCode": "Graphql", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-189", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588373}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5321, "employeeId": 1274, "customEffectiveDate": "2022-09-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6526, "employeeId": 1274, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8077, "employeeId": 1274, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11969, "employeeId": 1274, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-264", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5495, "employeeId": 1275, "customEffectiveDate": "2022-07-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5372, "employeeId": 1276, "customEffectiveDate": "2022-07-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6186, "employeeId": 1276, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7714, "employeeId": 1276, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8056, "employeeId": 1276, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11906, "employeeId": 1276, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-251", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5373, "employeeId": 1277, "customEffectiveDate": "2022-06-30", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6185, "employeeId": 1277, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8054, "employeeId": 1277, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8196, "employeeId": 1277, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11881, "employeeId": 1277, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-250", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5578, "employeeId": 1278, "customEffectiveDate": "2022-08-08", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6520, "employeeId": 1278, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588374}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8069, "employeeId": 1278, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5443, "employeeId": 1280, "customEffectiveDate": "2022-07-05", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6487, "employeeId": 1280, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6720, "employeeId": 1280, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12143, "employeeId": 1280, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-16", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5540, "employeeId": 1281, "customEffectiveDate": "2022-10-10", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6706, "employeeId": 1281, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17174, "employeeId": 1281, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5656, "employeeId": 1283, "customEffectiveDate": "2022-08-31", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6387, "employeeId": 1283, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12274, "employeeId": 1283, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-46", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5542, "employeeId": 1284, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8087, "employeeId": 1284, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5725, "employeeId": 1285, "customEffectiveDate": "2022-10-10", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5954, "employeeId": 1285, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12163, "employeeId": 1285, "customEffectiveDate": "2022-10-10", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-192", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5459, "employeeId": 1286, "customEffectiveDate": "2022-07-11", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5461, "employeeId": 1287, "customEffectiveDate": "2022-07-11", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588375}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6070, "employeeId": 1287, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10499, "employeeId": 1287, "customEffectiveDate": "2023-08-28", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11733, "employeeId": 1287, "customEffectiveDate": "2023-08-28", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-171", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5709, "employeeId": 1288, "customEffectiveDate": "2022-09-06", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6196, "employeeId": 1288, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8079, "employeeId": 1288, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11957, "employeeId": 1288, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-266", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5721, "employeeId": 1289, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8088, "employeeId": 1289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11964, "employeeId": 1289, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-272", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5557, "employeeId": 1290, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12136, "employeeId": 1290, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-198", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5490, "employeeId": 1291, "customEffectiveDate": "2022-07-18", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6697, "employeeId": 1291, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17164, "employeeId": 1291, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5498, "employeeId": 1292, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5505, "employeeId": 1293, "customEffectiveDate": "2022-08-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6650, "employeeId": 1293, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588376}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8126, "employeeId": 1293, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10133, "employeeId": 1293, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11801, "employeeId": 1293, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-260", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5504, "employeeId": 1294, "customEffectiveDate": "2022-08-22", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8072, "employeeId": 1294, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12107, "employeeId": 1294, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-263", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5544, "employeeId": 1295, "customEffectiveDate": "2022-08-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6272, "employeeId": 1295, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8068, "employeeId": 1295, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8414, "employeeId": 1295, "customEffectiveDate": "2023-04-03", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11340, "employeeId": 1295, "customEffectiveDate": "2023-11-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11661, "employeeId": 1295, "customEffectiveDate": "2023-11-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-303", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5547, "employeeId": 1296, "customEffectiveDate": "2022-08-08", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6651, "employeeId": 1296, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8127, "employeeId": 1296, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5548, "employeeId": 1297, "customEffectiveDate": "2022-08-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6368, "employeeId": 1297, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588377}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12199, "employeeId": 1297, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "GA-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17162, "employeeId": 1297, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5559, "employeeId": 1298, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6058, "employeeId": 1298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12283, "employeeId": 1298, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-190", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5715, "employeeId": 1299, "customEffectiveDate": "2022-09-05", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6147, "employeeId": 1299, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8166, "employeeId": 1299, "customEffectiveDate": "2023-01-03", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9177, "employeeId": 1299, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11838, "employeeId": 1299, "customEffectiveDate": "2023-04-03", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-186", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5565, "employeeId": 1300, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12130, "employeeId": 1300, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-204", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5551, "employeeId": 1301, "customEffectiveDate": "2022-08-28", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6224, "employeeId": 1301, "customEffectiveDate": "2022-10-01", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8074, "employeeId": 1301, "customEffectiveDate": "2022-12-05", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5713, "employeeId": 1302, "customEffectiveDate": "2022-09-05", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5985, "employeeId": 1302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12248, "employeeId": 1302, "customEffectiveDate": "2022-10-01", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-187", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588378}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5574, "employeeId": 1303, "customEffectiveDate": "2022-12-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8096, "employeeId": 1303, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8200, "employeeId": 1303, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11911, "employeeId": 1303, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-279", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6479, "employeeId": 1304, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12147, "employeeId": 1304, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5787, "employeeId": 1305, "customEffectiveDate": "2022-08-08", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5946, "employeeId": 1305, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12167, "employeeId": 1305, "customEffectiveDate": "2022-10-01", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-45", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5571, "employeeId": 1306, "customEffectiveDate": "2022-08-16", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8071, "employeeId": 1306, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11878, "employeeId": 1306, "customEffectiveDate": "2023-01-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-261", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5729, "employeeId": 1307, "customEffectiveDate": "2022-11-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6463, "employeeId": 1307, "customEffectiveDate": "2022-10-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10201, "employeeId": 1307, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11836, "employeeId": 1307, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5700, "employeeId": 1308, "customEffectiveDate": "2022-09-12", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588379}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6270, "employeeId": 1308, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8081, "employeeId": 1308, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12026, "employeeId": 1308, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-268", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16083, "employeeId": 1308, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-268", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5585, "employeeId": 1309, "customEffectiveDate": "2022-05-03", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6434, "employeeId": 1309, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5589, "employeeId": 1310, "customEffectiveDate": "2022-08-08", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6321, "employeeId": 1310, "customEffectiveDate": "2022-10-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8070, "employeeId": 1310, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12001, "employeeId": 1310, "customEffectiveDate": "2022-12-05", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-259", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5617, "employeeId": 1311, "customEffectiveDate": "2022-08-22", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6276, "employeeId": 1311, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8073, "employeeId": 1311, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12083, "employeeId": 1311, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-262", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5619, "employeeId": 1312, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11888, "employeeId": 1312, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-205", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5654, "employeeId": 1313, "customEffectiveDate": "2022-08-29", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6566, "employeeId": 1313, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588380}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8075, "employeeId": 1313, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13713, "employeeId": 1313, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-364", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5646, "employeeId": 1314, "customEffectiveDate": "2022-08-29", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5627, "employeeId": 1315, "customEffectiveDate": "2022-08-22", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6480, "employeeId": 1315, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6750, "employeeId": 1315, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10361, "employeeId": 1315, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11750, "employeeId": 1315, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6246, "employeeId": 1316, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8089, "employeeId": 1316, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11973, "employeeId": 1316, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-273", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5701, "employeeId": 1317, "customEffectiveDate": "2022-09-12", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6648, "employeeId": 1317, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8129, "employeeId": 1317, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10132, "employeeId": 1317, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13714, "employeeId": 1317, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-371", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5655, "employeeId": 1318, "customEffectiveDate": "2022-08-30", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6164, "employeeId": 1318, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588381}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12267, "employeeId": 1318, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-182", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5727, "employeeId": 1319, "customEffectiveDate": "2022-10-25", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12159, "employeeId": 1319, "customEffectiveDate": "2022-10-25", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5718, "employeeId": 1320, "customEffectiveDate": "2022-09-19", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6172, "employeeId": 1320, "customEffectiveDate": "2022-10-01", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8083, "employeeId": 1320, "customEffectiveDate": "2022-12-05", "customDepartment#": "3720", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11434, "employeeId": 1320, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11664, "employeeId": 1320, "customEffectiveDate": "2023-11-16", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-271", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5711, "employeeId": 1321, "customEffectiveDate": "2022-09-05", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6166, "employeeId": 1321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12310, "employeeId": 1321, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-188", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5723, "employeeId": 1322, "customEffectiveDate": "2022-10-03", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9136, "employeeId": 1322, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11831, "employeeId": 1322, "customEffectiveDate": "2023-04-04", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Adjustment", "customPosition": "ENG-191", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5652, "employeeId": 1323, "customEffectiveDate": "2022-08-29", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6168, "employeeId": 1323, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12320, "employeeId": 1323, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5658, "employeeId": 1324, "customEffectiveDate": "2022-08-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588382}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6412, "employeeId": 1324, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5783, "employeeId": 1325, "customEffectiveDate": "2022-09-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6402, "employeeId": 1325, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12242, "employeeId": 1325, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5708, "employeeId": 1326, "customEffectiveDate": "2022-09-06", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6573, "employeeId": 1326, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8080, "employeeId": 1326, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12112, "employeeId": 1326, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-267", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5697, "employeeId": 1327, "customEffectiveDate": "2022-08-29", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6670, "employeeId": 1327, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8128, "employeeId": 1327, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5717, "employeeId": 1328, "customEffectiveDate": "2022-09-19", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6507, "employeeId": 1328, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8084, "employeeId": 1328, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5704, "employeeId": 1329, "customEffectiveDate": "2022-09-06", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6380, "employeeId": 1329, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6736, "employeeId": 1329, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12146, "employeeId": 1329, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588383}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5710, "employeeId": 1330, "customEffectiveDate": "2022-09-07", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6379, "employeeId": 1330, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6735, "employeeId": 1330, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5731, "employeeId": 1331, "customEffectiveDate": "2022-09-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6217, "employeeId": 1331, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8082, "employeeId": 1331, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12075, "employeeId": 1331, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-269", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5734, "employeeId": 1332, "customEffectiveDate": "2022-09-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6517, "employeeId": 1332, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8078, "employeeId": 1332, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5739, "employeeId": 1333, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11893, "employeeId": 1333, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-207", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5759, "employeeId": 1334, "customEffectiveDate": "2022-09-09", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6074, "employeeId": 1334, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10375, "employeeId": 1334, "customEffectiveDate": "2023-01-31", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5775, "employeeId": 1335, "customEffectiveDate": "2022-09-12", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6698, "employeeId": 1335, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588384}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17171, "employeeId": 1335, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5773, "employeeId": 1336, "customEffectiveDate": "2022-09-09", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6078, "employeeId": 1336, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10349, "employeeId": 1336, "customEffectiveDate": "2023-01-31", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5795, "employeeId": 1338, "customEffectiveDate": "2022-09-19", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6267, "employeeId": 1338, "customEffectiveDate": "2022-10-01", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8085, "employeeId": 1338, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11945, "employeeId": 1338, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-270", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5785, "employeeId": 1339, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12135, "employeeId": 1339, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-197", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5805, "employeeId": 1340, "customEffectiveDate": "2022-10-03", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6204, "employeeId": 1340, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7720, "employeeId": 1340, "customEffectiveDate": "2022-12-12", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8090, "employeeId": 1340, "customEffectiveDate": "2022-12-05", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10369, "employeeId": 1340, "customEffectiveDate": "2023-04-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5793, "employeeId": 1341, "customEffectiveDate": "2022-11-15", "customDepartment#": "2110", "customJobCode": "NX", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11020, "employeeId": 1341, "customEffectiveDate": "2023-09-25", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Team Name", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11155, "employeeId": 1341, "customEffectiveDate": "2023-10-17", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588385}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11682, "employeeId": 1341, "customEffectiveDate": "2023-10-17", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Change of Aura Role", "customPosition": "ENG-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5792, "employeeId": 1342, "customEffectiveDate": "2022-09-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6512, "employeeId": 1342, "customEffectiveDate": "2022-10-01", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8086, "employeeId": 1342, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5806, "employeeId": 1343, "customEffectiveDate": "2022-10-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12162, "employeeId": 1343, "customEffectiveDate": "2022-10-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-49", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5802, "employeeId": 1344, "customEffectiveDate": "2022-10-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6626, "employeeId": 1344, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8092, "employeeId": 1344, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11931, "employeeId": 1344, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-275", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5808, "employeeId": 1345, "customEffectiveDate": "2022-09-26", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6129, "employeeId": 1345, "customEffectiveDate": "2022-10-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10376, "employeeId": 1345, "customEffectiveDate": "2023-03-13", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5815, "employeeId": 1346, "customEffectiveDate": "2022-10-17", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6649, "employeeId": 1346, "customEffectiveDate": "2022-10-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8130, "employeeId": 1346, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10120, "employeeId": 1346, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5867, "employeeId": 1347, "customEffectiveDate": "2022-10-17", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588386}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12161, "employeeId": 1347, "customEffectiveDate": "2022-10-17", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-193", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5819, "employeeId": 1348, "customEffectiveDate": "2022-10-03", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6574, "employeeId": 1348, "customEffectiveDate": "2022-10-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8091, "employeeId": 1348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12123, "employeeId": 1348, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-274", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5840, "employeeId": 1349, "customEffectiveDate": "2022-12-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17168, "employeeId": 1349, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5842, "employeeId": 1350, "customEffectiveDate": "2022-10-17", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8093, "employeeId": 1350, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11993, "employeeId": 1350, "customEffectiveDate": "2022-12-05", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-276", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5839, "employeeId": 1351, "customEffectiveDate": "2021-09-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6401, "employeeId": 1351, "customEffectiveDate": "2022-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5844, "employeeId": 1352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11892, "employeeId": 1352, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-206", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5847, "employeeId": 1353, "customEffectiveDate": "2022-10-10", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6383, "employeeId": 1353, "customEffectiveDate": "2022-10-01", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6734, "employeeId": 1353, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588387}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6839, "employeeId": 1354, "customEffectiveDate": "2023-01-30", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10166, "employeeId": 1354, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11780, "employeeId": 1354, "customEffectiveDate": "2023-06-20", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-210", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6818, "employeeId": 1355, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12132, "employeeId": 1355, "customEffectiveDate": "2022-11-14", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-200", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5898, "employeeId": 1356, "customEffectiveDate": "2022-09-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11288, "employeeId": 1356, "customEffectiveDate": "2023-10-23", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5900, "employeeId": 1357, "customEffectiveDate": "2022-10-17", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6769, "employeeId": 1357, "customEffectiveDate": "2022-11-01", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9182, "employeeId": 1357, "customEffectiveDate": "2023-04-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11824, "employeeId": 1357, "customEffectiveDate": "2023-04-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "Contractor to FT", "customPosition": "PEO-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6707, "employeeId": 1358, "customEffectiveDate": "2022-11-07", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8094, "employeeId": 1358, "customEffectiveDate": "2022-12-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10303, "employeeId": 1358, "customEffectiveDate": "2023-05-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11820, "employeeId": 1358, "customEffectiveDate": "2023-05-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-277", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 5911, "employeeId": 1360, "customEffectiveDate": "2022-10-17", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8131, "employeeId": 1360, "customEffectiveDate": "2022-12-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10129, "employeeId": 1360, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588388}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6838, "employeeId": 1361, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11898, "employeeId": 1361, "customEffectiveDate": "2023-01-01", "customDepartment#": "2110", "customJobCode": "Drivers", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17358, "employeeId": 1361, "customEffectiveDate": "2024-04-01", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Team Transfer", "customPosition": "ENG-208", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6714, "employeeId": 1362, "customEffectiveDate": "2022-10-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12158, "employeeId": 1362, "customEffectiveDate": "2022-10-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-51", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6718, "employeeId": 1363, "customEffectiveDate": "2022-10-31", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12157, "employeeId": 1363, "customEffectiveDate": "2022-10-31", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-50", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6752, "employeeId": 1364, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12134, "employeeId": 1364, "customEffectiveDate": "2022-11-07", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-196", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6824, "employeeId": 1365, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12128, "employeeId": 1365, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-203", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6758, "employeeId": 1366, "customEffectiveDate": "2022-11-07", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8132, "employeeId": 1366, "customEffectiveDate": "2022-12-01", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10116, "employeeId": 1366, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6759, "employeeId": 1367, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10343, "employeeId": 1367, "customEffectiveDate": "2023-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6763, "employeeId": 1368, "customEffectiveDate": "2022-11-28", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Lars Nordwall", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8095, "employeeId": 1368, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588389}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12096, "employeeId": 1368, "customEffectiveDate": "2022-12-05", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-278", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6764, "employeeId": 1369, "customEffectiveDate": "2022-11-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10344, "employeeId": 1369, "customEffectiveDate": "2023-03-23", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6771, "employeeId": 1370, "customEffectiveDate": "2022-01-31", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6772, "employeeId": 1370, "customEffectiveDate": "2022-11-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6806, "employeeId": 1371, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12127, "employeeId": 1371, "customEffectiveDate": "2022-12-01", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-202", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6828, "employeeId": 1372, "customEffectiveDate": "2022-12-12", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11913, "employeeId": 1372, "customEffectiveDate": "2022-12-12", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15906, "employeeId": 1372, "customEffectiveDate": "2024-01-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-55", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7665, "employeeId": 1373, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12099, "employeeId": 1373, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-54", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6840, "employeeId": 1374, "customEffectiveDate": "2023-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11872, "employeeId": 1374, "customEffectiveDate": "2023-02-01", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-211", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6831, "employeeId": 1375, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12131, "employeeId": 1375, "customEffectiveDate": "2022-11-21", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-52", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6842, "employeeId": 1376, "customEffectiveDate": "2023-01-02", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588390}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11849, "employeeId": 1376, "customEffectiveDate": "2023-04-03", "customDepartment#": "2820", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-20", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7648, "employeeId": 1378, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12000, "employeeId": 1378, "customEffectiveDate": "2022-12-05", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-53", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7651, "employeeId": 1379, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11885, "employeeId": 1379, "customEffectiveDate": "2023-01-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-284", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7738, "employeeId": 1381, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13725, "employeeId": 1381, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8144, "employeeId": 1382, "customEffectiveDate": "2023-01-05", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10211, "employeeId": 1382, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11842, "employeeId": 1382, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7664, "employeeId": 1383, "customEffectiveDate": "2022-12-12", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11903, "employeeId": 1383, "customEffectiveDate": "2022-12-12", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-281", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8205, "employeeId": 1384, "customEffectiveDate": "2022-12-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10122, "employeeId": 1384, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13719, "employeeId": 1384, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Transfer", "customPosition": "FO-377", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8194, "employeeId": 1385, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10551, "employeeId": 1385, "customEffectiveDate": "2023-10-01", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Transfer", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11589, "employeeId": 1385, "customEffectiveDate": "2023-11-24", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Promotion", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588391}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11653, "employeeId": 1385, "customEffectiveDate": "2023-11-24", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "Promotion", "customPosition": "MKG-57", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8297, "employeeId": 1386, "customEffectiveDate": "2023-03-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Philip Rathle", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10207, "employeeId": 1386, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11852, "employeeId": 1386, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-22", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7707, "employeeId": 1387, "customEffectiveDate": "2022-12-19", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17184, "employeeId": 1387, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-33", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7675, "employeeId": 1388, "customEffectiveDate": "2022-12-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7752, "employeeId": 1388, "customEffectiveDate": "2022-12-05", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7672, "employeeId": 1389, "customEffectiveDate": "2022-12-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12121, "employeeId": 1389, "customEffectiveDate": "2022-12-05", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "FO-280", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7708, "employeeId": 1390, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11886, "employeeId": 1390, "customEffectiveDate": "2023-01-03", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-56", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7726, "employeeId": 1391, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11871, "employeeId": 1391, "customEffectiveDate": "2023-02-06", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "", "customPosition": "ENG-212", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7734, "employeeId": 1392, "customEffectiveDate": "2022-12-27", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11899, "employeeId": 1392, "customEffectiveDate": "2022-12-27", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-282", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7735, "employeeId": 1393, "customEffectiveDate": "2023-01-03", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11887, "employeeId": 1393, "customEffectiveDate": "2023-01-03", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-283", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588392}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7739, "employeeId": 1394, "customEffectiveDate": "2023-01-23", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17175, "employeeId": 1394, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-35", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8204, "employeeId": 1395, "customEffectiveDate": "2023-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11880, "employeeId": 1395, "customEffectiveDate": "2023-01-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-286", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15902, "employeeId": 1395, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-286", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8195, "employeeId": 1397, "customEffectiveDate": "2023-02-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11870, "employeeId": 1397, "customEffectiveDate": "2023-02-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-287", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15891, "employeeId": 1397, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-287", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8154, "employeeId": 1398, "customEffectiveDate": "2023-01-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11883, "employeeId": 1398, "customEffectiveDate": "2023-01-09", "customDepartment#": "3500", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-285", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8188, "employeeId": 1399, "customEffectiveDate": "2023-02-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11865, "employeeId": 1399, "customEffectiveDate": "2023-02-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-300", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8169, "employeeId": 1400, "customEffectiveDate": "2023-01-16", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10373, "employeeId": 1400, "customEffectiveDate": "2023-06-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8173, "employeeId": 1401, "customEffectiveDate": "2023-01-16", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10348, "employeeId": 1401, "customEffectiveDate": "2023-06-30", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Removed Aura Role", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8184, "employeeId": 1402, "customEffectiveDate": "2023-01-17", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17170, "employeeId": 1402, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-34", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588393}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8191, "employeeId": 1403, "customEffectiveDate": "2023-01-23", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10128, "employeeId": 1403, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8290, "employeeId": 1404, "customEffectiveDate": "2023-02-13", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11868, "employeeId": 1404, "customEffectiveDate": "2023-02-13", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-288", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8240, "employeeId": 1405, "customEffectiveDate": "2023-01-30", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8328, "employeeId": 1406, "customEffectiveDate": "2023-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11864, "employeeId": 1406, "customEffectiveDate": "2023-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-58", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8294, "employeeId": 1407, "customEffectiveDate": "2023-02-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11869, "employeeId": 1407, "customEffectiveDate": "2023-02-13", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-289", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8310, "employeeId": 1408, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10596, "employeeId": 1408, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11729, "employeeId": 1408, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment", "customPosition": "FO-297", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8299, "employeeId": 1409, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8300, "employeeId": 1410, "customEffectiveDate": "2023-02-06", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8301, "employeeId": 1411, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11354, "employeeId": 1411, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11730, "employeeId": 1411, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-298", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8304, "employeeId": 1412, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588394}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11355, "employeeId": 1412, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11731, "employeeId": 1412, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-299", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8385, "employeeId": 1413, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11353, "employeeId": 1413, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11728, "employeeId": 1413, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-296", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8306, "employeeId": 1414, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11350, "employeeId": 1414, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11725, "employeeId": 1414, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-293", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8307, "employeeId": 1415, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13715, "employeeId": 1415, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-373", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8309, "employeeId": 1416, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11352, "employeeId": 1416, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Change to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11727, "employeeId": 1416, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Change to department", "customPosition": "FO-295", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9125, "employeeId": 1417, "customEffectiveDate": "2023-05-02", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11817, "employeeId": 1417, "customEffectiveDate": "2023-05-02", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-213", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8350, "employeeId": 1418, "customEffectiveDate": "2023-03-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11861, "employeeId": 1418, "customEffectiveDate": "2023-03-07", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-59", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8313, "employeeId": 1419, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588395}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11349, "employeeId": 1419, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11723, "employeeId": 1419, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-292", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8316, "employeeId": 1420, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11351, "employeeId": 1420, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11726, "employeeId": 1420, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-294", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8319, "employeeId": 1421, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11345, "employeeId": 1421, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11718, "employeeId": 1421, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-290", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8322, "employeeId": 1422, "customEffectiveDate": "2023-02-20", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Contractor to FT", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11347, "employeeId": 1422, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11721, "employeeId": 1422, "customEffectiveDate": "2023-09-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Adjustment to department", "customPosition": "FO-291", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8346, "employeeId": 1424, "customEffectiveDate": "2023-03-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11862, "employeeId": 1424, "customEffectiveDate": "2023-03-06", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-302", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9065, "employeeId": 1425, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11837, "employeeId": 1425, "customEffectiveDate": "2023-04-03", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Emil Eifr\u00e9m", "customJobChangeReason": "", "customPosition": "PRD-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8341, "employeeId": 1426, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15953, "employeeId": 1426, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588396}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8343, "employeeId": 1427, "customEffectiveDate": "2023-06-16", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8366, "employeeId": 1428, "customEffectiveDate": "2023-01-30", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8367, "employeeId": 1429, "customEffectiveDate": "2023-02-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8391, "employeeId": 1430, "customEffectiveDate": "2023-03-20", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17172, "employeeId": 1430, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-36", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8373, "employeeId": 1431, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8374, "employeeId": 1432, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8375, "employeeId": 1433, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8376, "employeeId": 1434, "customEffectiveDate": "2023-02-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8377, "employeeId": 1435, "customEffectiveDate": "2022-04-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8378, "employeeId": 1436, "customEffectiveDate": "2022-09-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8379, "employeeId": 1437, "customEffectiveDate": "2022-08-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8380, "employeeId": 1438, "customEffectiveDate": "2023-02-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8381, "employeeId": 1439, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8382, "employeeId": 1440, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8383, "employeeId": 1441, "customEffectiveDate": "2022-06-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8384, "employeeId": 1442, "customEffectiveDate": "2022-10-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8418, "employeeId": 1443, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588397}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9120, "employeeId": 1444, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11826, "employeeId": 1444, "customEffectiveDate": "2023-04-11", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-305", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8420, "employeeId": 1445, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11854, "employeeId": 1445, "customEffectiveDate": "2023-03-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-60", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8422, "employeeId": 1446, "customEffectiveDate": "2023-03-27", "customDepartment#": "3210", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9179, "employeeId": 1448, "customEffectiveDate": "2023-04-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11825, "employeeId": 1448, "customEffectiveDate": "2023-04-17", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-307", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9168, "employeeId": 1449, "customEffectiveDate": "2023-04-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11829, "employeeId": 1449, "customEffectiveDate": "2023-04-10", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-304", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9172, "employeeId": 1451, "customEffectiveDate": "2023-04-17", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11823, "employeeId": 1451, "customEffectiveDate": "2023-04-17", "customDepartment#": "3710", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-306", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9193, "employeeId": 1452, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9188, "employeeId": 1453, "customEffectiveDate": "2023-05-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9185, "employeeId": 1454, "customEffectiveDate": "2023-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16085, "employeeId": 1454, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9186, "employeeId": 1455, "customEffectiveDate": "2023-04-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9190, "employeeId": 1456, "customEffectiveDate": "2023-04-24", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588398}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9192, "employeeId": 1457, "customEffectiveDate": "2023-05-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10447, "employeeId": 1457, "customEffectiveDate": "2023-08-21", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10597, "employeeId": 1457, "customEffectiveDate": "2023-09-20", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Added AuraRole", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11704, "employeeId": 1457, "customEffectiveDate": "2023-09-20", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "Added AuraRole", "customPosition": "FO-308", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10239, "employeeId": 1458, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11761, "employeeId": 1458, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-63", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9230, "employeeId": 1459, "customEffectiveDate": "2023-05-03", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16084, "employeeId": 1459, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9980, "employeeId": 1460, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11798, "employeeId": 1460, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-312", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9251, "employeeId": 1461, "customEffectiveDate": "2023-06-05", "customDepartment#": "3220", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10053, "employeeId": 1462, "customEffectiveDate": "2023-07-17", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11759, "employeeId": 1462, "customEffectiveDate": "2023-07-17", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-317", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9247, "employeeId": 1463, "customEffectiveDate": "2023-05-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13724, "employeeId": 1463, "customEffectiveDate": "2023-05-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10015, "employeeId": 1464, "customEffectiveDate": "2023-08-21", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "New Hire", "customPosition": "GA-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17185, "employeeId": 1464, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-39", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9250, "employeeId": 1465, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588399}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10003, "employeeId": 1466, "customEffectiveDate": "2023-05-29", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10005, "employeeId": 1467, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11793, "employeeId": 1467, "customEffectiveDate": "2023-06-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-310", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10008, "employeeId": 1468, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10009, "employeeId": 1469, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10010, "employeeId": 1470, "customEffectiveDate": "2023-05-22", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10047, "employeeId": 1471, "customEffectiveDate": "2023-06-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11766, "employeeId": 1471, "customEffectiveDate": "2023-06-26", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10011, "employeeId": 1472, "customEffectiveDate": "2023-06-07", "customDepartment#": "2110", "customJobCode": "Design", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10018, "employeeId": 1473, "customEffectiveDate": "2023-06-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11792, "employeeId": 1473, "customEffectiveDate": "2023-06-05", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-309", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10028, "employeeId": 1474, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17299, "employeeId": 1474, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Re-Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10078, "employeeId": 1475, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11795, "employeeId": 1475, "customEffectiveDate": "2023-06-05", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-311", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10034, "employeeId": 1476, "customEffectiveDate": "2023-06-12", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10036, "employeeId": 1477, "customEffectiveDate": "2023-09-04", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15984, "employeeId": 1477, "customEffectiveDate": "2024-03-05", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Intern to FTE", "customPosition": "ENG-226", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588400}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10038, "employeeId": 1478, "customEffectiveDate": "2023-09-04", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10080, "employeeId": 1479, "customEffectiveDate": "2023-09-04", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10050, "employeeId": 1480, "customEffectiveDate": "2023-07-03", "customDepartment#": "1100", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17169, "employeeId": 1480, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-37", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10057, "employeeId": 1481, "customEffectiveDate": "2023-05-19", "customDepartment#": "", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10058, "employeeId": 1482, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10059, "employeeId": 1483, "customEffectiveDate": "2023-04-06", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10060, "employeeId": 1484, "customEffectiveDate": "2023-03-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10061, "employeeId": 1485, "customEffectiveDate": "2021-08-02", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10062, "employeeId": 1486, "customEffectiveDate": "2023-03-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10065, "employeeId": 1487, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10066, "employeeId": 1488, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10067, "employeeId": 1489, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10068, "employeeId": 1490, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10069, "employeeId": 1491, "customEffectiveDate": "2020-06-22", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10070, "employeeId": 1492, "customEffectiveDate": "2020-10-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10071, "employeeId": 1493, "customEffectiveDate": "2022-03-21", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10072, "employeeId": 1494, "customEffectiveDate": "2022-02-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588401}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10073, "employeeId": 1495, "customEffectiveDate": "2022-09-28", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10076, "employeeId": 1496, "customEffectiveDate": "2023-05-26", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15895, "employeeId": 1496, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10171, "employeeId": 1497, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11767, "employeeId": 1497, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-314", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10146, "employeeId": 1498, "customEffectiveDate": "2023-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11784, "employeeId": 1498, "customEffectiveDate": "2023-06-14", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-61", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10084, "employeeId": 1499, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10085, "employeeId": 1500, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10086, "employeeId": 1501, "customEffectiveDate": "2023-05-17", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10087, "employeeId": 1502, "customEffectiveDate": "2023-05-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10157, "employeeId": 1503, "customEffectiveDate": "2023-06-19", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11783, "employeeId": 1503, "customEffectiveDate": "2023-06-19", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-62", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10149, "employeeId": 1504, "customEffectiveDate": "2023-07-10", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11760, "employeeId": 1504, "customEffectiveDate": "2023-07-10", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-316", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10151, "employeeId": 1505, "customEffectiveDate": "2023-04-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588402}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10173, "employeeId": 1506, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11765, "employeeId": 1506, "customEffectiveDate": "2023-06-26", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-313", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10168, "employeeId": 1507, "customEffectiveDate": "2023-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11762, "employeeId": 1507, "customEffectiveDate": "2023-07-05", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-315", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10152, "employeeId": 1508, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10154, "employeeId": 1510, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10155, "employeeId": 1511, "customEffectiveDate": "2023-06-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10156, "employeeId": 1512, "customEffectiveDate": "2023-06-21", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10160, "employeeId": 1513, "customEffectiveDate": "2023-06-07", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10521, "employeeId": 1514, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11694, "employeeId": 1514, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-336", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10278, "employeeId": 1515, "customEffectiveDate": "2023-07-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11758, "employeeId": 1515, "customEffectiveDate": "2023-07-17", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-23", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10265, "employeeId": 1516, "customEffectiveDate": "2023-06-27", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10273, "employeeId": 1518, "customEffectiveDate": "2023-07-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10235, "employeeId": 1520, "customEffectiveDate": "2023-07-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10339, "employeeId": 1521, "customEffectiveDate": "2023-08-01", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588403}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17180, "employeeId": 1521, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10364, "employeeId": 1522, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11749, "employeeId": 1522, "customEffectiveDate": "2023-08-07", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "", "customPosition": "PEO-24", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10277, "employeeId": 1523, "customEffectiveDate": "2023-07-13", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10333, "employeeId": 1524, "customEffectiveDate": "2023-07-31", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11755, "employeeId": 1524, "customEffectiveDate": "2023-07-31", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-320", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10336, "employeeId": 1525, "customEffectiveDate": "2023-07-31", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11756, "employeeId": 1525, "customEffectiveDate": "2023-07-31", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-321", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10305, "employeeId": 1526, "customEffectiveDate": "2023-07-24", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11757, "employeeId": 1526, "customEffectiveDate": "2023-07-24", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-318", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10320, "employeeId": 1527, "customEffectiveDate": "2023-07-31", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11754, "employeeId": 1527, "customEffectiveDate": "2023-07-31", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-319", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10326, "employeeId": 1528, "customEffectiveDate": "2023-08-28", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11734, "employeeId": 1528, "customEffectiveDate": "2023-08-28", "customDepartment#": "3550", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-328", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10323, "employeeId": 1529, "customEffectiveDate": "2023-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11753, "employeeId": 1529, "customEffectiveDate": "2023-08-01", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-322", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10327, "employeeId": 1530, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10328, "employeeId": 1531, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588404}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10329, "employeeId": 1532, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10330, "employeeId": 1533, "customEffectiveDate": "2023-07-31", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10494, "employeeId": 1534, "customEffectiveDate": "2023-08-28", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11736, "employeeId": 1534, "customEffectiveDate": "2023-08-28", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-330", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10492, "employeeId": 1535, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11732, "employeeId": 1535, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-327", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10460, "employeeId": 1536, "customEffectiveDate": "2023-08-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11739, "employeeId": 1536, "customEffectiveDate": "2023-08-21", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-326", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10363, "employeeId": 1538, "customEffectiveDate": "2023-08-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10386, "employeeId": 1539, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11746, "employeeId": 1539, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-323", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10395, "employeeId": 1540, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16019, "employeeId": 1540, "customEffectiveDate": "2024-02-05", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "Intern to FTE", "customPosition": "ENG-77", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10397, "employeeId": 1541, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "Cypher - Runtime", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10437, "employeeId": 1542, "customEffectiveDate": "2023-08-14", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11747, "employeeId": 1542, "customEffectiveDate": "2023-08-14", "customDepartment#": "3110", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-324", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10435, "employeeId": 1543, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11748, "employeeId": 1543, "customEffectiveDate": "2023-08-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-325", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588405}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10434, "employeeId": 1544, "customEffectiveDate": "2023-08-10", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10453, "employeeId": 1545, "customEffectiveDate": "2023-09-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11716, "employeeId": 1545, "customEffectiveDate": "2023-09-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-332", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10488, "employeeId": 1546, "customEffectiveDate": "2023-08-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11735, "employeeId": 1546, "customEffectiveDate": "2023-08-28", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-329", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15900, "employeeId": 1546, "customEffectiveDate": "2024-01-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-329", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10468, "employeeId": 1547, "customEffectiveDate": "2023-08-29", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10486, "employeeId": 1548, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11737, "employeeId": 1548, "customEffectiveDate": "2023-08-28", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-331", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10498, "employeeId": 1549, "customEffectiveDate": "2023-08-24", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10502, "employeeId": 1550, "customEffectiveDate": "2023-08-28", "customDepartment#": "2110", "customJobCode": "ReleaseOps", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10527, "employeeId": 1551, "customEffectiveDate": "2023-09-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11708, "employeeId": 1551, "customEffectiveDate": "2023-09-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-64", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10524, "employeeId": 1552, "customEffectiveDate": "2023-09-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11700, "employeeId": 1552, "customEffectiveDate": "2023-09-25", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-334", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10531, "employeeId": 1553, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11695, "employeeId": 1553, "customEffectiveDate": "2023-10-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-337", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588406}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10509, "employeeId": 1554, "customEffectiveDate": "2023-09-01", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11101, "employeeId": 1555, "customEffectiveDate": "2023-10-09", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11692, "employeeId": 1555, "customEffectiveDate": "2023-10-09", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-338", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10529, "employeeId": 1556, "customEffectiveDate": "2023-09-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11706, "employeeId": 1556, "customEffectiveDate": "2023-09-18", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-333", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10554, "employeeId": 1557, "customEffectiveDate": "2023-11-13", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11670, "employeeId": 1557, "customEffectiveDate": "2023-11-13", "customDepartment#": "1600", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "PEO-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10562, "employeeId": 1558, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11683, "employeeId": 1558, "customEffectiveDate": "2023-10-16", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-215", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10564, "employeeId": 1559, "customEffectiveDate": "2023-11-15", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11667, "employeeId": 1559, "customEffectiveDate": "2023-11-15", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-218", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10580, "employeeId": 1560, "customEffectiveDate": "2023-09-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11701, "employeeId": 1560, "customEffectiveDate": "2023-09-25", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-335", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10583, "employeeId": 1561, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11677, "employeeId": 1561, "customEffectiveDate": "2023-11-01", "customDepartment#": "3100", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-345", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10589, "employeeId": 1562, "customEffectiveDate": "2023-10-09", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11691, "employeeId": 1562, "customEffectiveDate": "2023-10-09", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-214", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11021, "employeeId": 1563, "customEffectiveDate": "2024-01-02", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-100", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588407}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11027, "employeeId": 1564, "customEffectiveDate": "2023-10-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11032, "employeeId": 1565, "customEffectiveDate": "2023-11-01", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11675, "employeeId": 1565, "customEffectiveDate": "2023-11-01", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-25", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11033, "employeeId": 1566, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11687, "employeeId": 1566, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-341", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11047, "employeeId": 1567, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11686, "employeeId": 1567, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-340", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11044, "employeeId": 1568, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11688, "employeeId": 1568, "customEffectiveDate": "2023-10-16", "customDepartment#": "3710", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-342", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11039, "employeeId": 1569, "customEffectiveDate": "2023-10-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11684, "employeeId": 1569, "customEffectiveDate": "2023-10-16", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-339", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11051, "employeeId": 1570, "customEffectiveDate": "2023-09-01", "customDepartment#": "", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11056, "employeeId": 1571, "customEffectiveDate": "2023-10-02", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11098, "employeeId": 1572, "customEffectiveDate": "2021-07-14", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11099, "employeeId": 1573, "customEffectiveDate": "2021-07-14", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11100, "employeeId": 1574, "customEffectiveDate": "2023-06-08", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17181, "employeeId": 1574, "customEffectiveDate": "2024-03-01", "customDepartment#": "1130", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588408}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11105, "employeeId": 1575, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11689, "employeeId": 1575, "customEffectiveDate": "2023-10-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-343", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11112, "employeeId": 1576, "customEffectiveDate": "2023-10-30", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11678, "employeeId": 1576, "customEffectiveDate": "2023-10-30", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-216", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11159, "employeeId": 1577, "customEffectiveDate": "2023-10-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11680, "employeeId": 1577, "customEffectiveDate": "2023-10-23", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-344", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11139, "employeeId": 1578, "customEffectiveDate": "2023-11-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11674, "employeeId": 1578, "customEffectiveDate": "2023-11-06", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-347", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11336, "employeeId": 1579, "customEffectiveDate": "2024-01-02", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-362", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11150, "employeeId": 1580, "customEffectiveDate": "2023-10-30", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11679, "employeeId": 1580, "customEffectiveDate": "2023-10-30", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-217", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11157, "employeeId": 1581, "customEffectiveDate": "2023-10-23", "customDepartment#": "3110", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Sub-Contractor", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11168, "employeeId": 1582, "customEffectiveDate": "2024-02-01", "customDepartment#": "2120", "customJobCode": "Enablement - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-225", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11197, "employeeId": 1583, "customEffectiveDate": "2023-10-30", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11330, "employeeId": 1584, "customEffectiveDate": "2023-11-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11651, "employeeId": 1584, "customEffectiveDate": "2023-11-27", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-354", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11323, "employeeId": 1585, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11652, "employeeId": 1585, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-5", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588409}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11214, "employeeId": 1586, "customEffectiveDate": "2023-10-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16086, "employeeId": 1586, "customEffectiveDate": "2024-02-01", "customDepartment#": "3600", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11216, "employeeId": 1587, "customEffectiveDate": "2023-12-04", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11643, "employeeId": 1587, "customEffectiveDate": "2023-12-04", "customDepartment#": "2110", "customJobCode": "Workspace", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-219", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11220, "employeeId": 1588, "customEffectiveDate": "2023-11-06", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11672, "employeeId": 1588, "customEffectiveDate": "2023-11-06", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-346", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11252, "employeeId": 1589, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11647, "employeeId": 1589, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-357", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11263, "employeeId": 1590, "customEffectiveDate": "2023-11-15", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11320, "employeeId": 1591, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11669, "employeeId": 1591, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-348", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11316, "employeeId": 1592, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11671, "employeeId": 1592, "customEffectiveDate": "2023-11-13", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-349", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11265, "employeeId": 1593, "customEffectiveDate": "2023-10-30", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11384, "employeeId": 1595, "customEffectiveDate": "2023-11-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11655, "employeeId": 1595, "customEffectiveDate": "2023-11-20", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-350", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11357, "employeeId": 1597, "customEffectiveDate": "2024-01-15", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "", "customJobChangeReason": null, "customPosition": "FO-369", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11366, "employeeId": 1598, "customEffectiveDate": "2023-11-20", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588410}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11367, "employeeId": 1599, "customEffectiveDate": "2023-11-24", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11368, "employeeId": 1600, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11648, "employeeId": 1600, "customEffectiveDate": "2023-11-27", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-65", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11371, "employeeId": 1601, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-224", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11388, "employeeId": 1602, "customEffectiveDate": "2023-11-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11656, "employeeId": 1602, "customEffectiveDate": "2023-11-20", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-351", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11378, "employeeId": 1603, "customEffectiveDate": "2023-11-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11376, "employeeId": 1604, "customEffectiveDate": "2023-11-13", "customDepartment#": "3600", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11381, "employeeId": 1605, "customEffectiveDate": "2024-01-15", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-371", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11392, "employeeId": 1606, "customEffectiveDate": "2023-11-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11650, "employeeId": 1606, "customEffectiveDate": "2023-11-27", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-353", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11397, "employeeId": 1607, "customEffectiveDate": "2024-01-08", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11400, "employeeId": 1608, "customEffectiveDate": "2024-01-08", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-366", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13707, "employeeId": 1608, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11406, "employeeId": 1609, "customEffectiveDate": "2024-01-03", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-222", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11410, "employeeId": 1610, "customEffectiveDate": "2023-11-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11649, "employeeId": 1610, "customEffectiveDate": "2023-11-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-352", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588411}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11415, "employeeId": 1611, "customEffectiveDate": "2023-11-16", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17173, "employeeId": 1611, "customEffectiveDate": "2024-03-01", "customDepartment#": "1120", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11421, "employeeId": 1612, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11645, "employeeId": 1612, "customEffectiveDate": "2023-12-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-355", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11435, "employeeId": 1613, "customEffectiveDate": "2024-01-02", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-221", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11440, "employeeId": 1614, "customEffectiveDate": "2023-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11639, "employeeId": 1614, "customEffectiveDate": "2023-12-13", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-220", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11444, "employeeId": 1615, "customEffectiveDate": "2023-12-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11646, "employeeId": 1615, "customEffectiveDate": "2023-12-04", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-356", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11448, "employeeId": 1616, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11517, "employeeId": 1617, "customEffectiveDate": "2023-12-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11641, "employeeId": 1617, "customEffectiveDate": "2023-12-11", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-358", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15889, "employeeId": 1617, "customEffectiveDate": "2024-01-01", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-358", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11450, "employeeId": 1618, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11644, "employeeId": 1618, "customEffectiveDate": "2023-12-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": "New Hire", "customPosition": "PEO-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11454, "employeeId": 1619, "customEffectiveDate": "2023-11-29", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11457, "employeeId": 1620, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Cypher - Composite", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-223", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11460, "employeeId": 1621, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588412}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11510, "employeeId": 1622, "customEffectiveDate": "2024-03-07", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-227", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11565, "employeeId": 1623, "customEffectiveDate": "2023-12-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11638, "employeeId": 1623, "customEffectiveDate": "2023-12-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-360", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11522, "employeeId": 1624, "customEffectiveDate": "2023-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11642, "employeeId": 1624, "customEffectiveDate": "2023-12-06", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-19", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11559, "employeeId": 1625, "customEffectiveDate": "2023-12-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11637, "employeeId": 1625, "customEffectiveDate": "2023-12-18", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-48", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11556, "employeeId": 1626, "customEffectiveDate": "2024-01-02", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-365", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11561, "employeeId": 1627, "customEffectiveDate": "2024-01-08", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-70", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11551, "employeeId": 1628, "customEffectiveDate": "2024-01-02", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-364", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11636, "employeeId": 1629, "customEffectiveDate": "2023-12-18", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "", "customPosition": "PRD-26", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11583, "employeeId": 1630, "customEffectiveDate": "2024-01-02", "customDepartment#": "2120", "customJobCode": "SRE - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-165", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11590, "employeeId": 1631, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Cluster", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11593, "employeeId": 1632, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Graph data science", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11596, "employeeId": 1633, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11599, "employeeId": 1634, "customEffectiveDate": "2024-01-22", "customDepartment#": "2110", "customJobCode": "Benchmark", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11602, "employeeId": 1635, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11605, "employeeId": 1636, "customEffectiveDate": "2024-03-18", "customDepartment#": "2110", "customJobCode": "Kernel", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588413}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11613, "employeeId": 1637, "customEffectiveDate": "2023-12-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11635, "employeeId": 1637, "customEffectiveDate": "2023-12-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "", "customPosition": "FO-195", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12342, "employeeId": 1638, "customEffectiveDate": "2024-01-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-368", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13706, "employeeId": 1638, "customEffectiveDate": "2023-12-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11619, "employeeId": 1639, "customEffectiveDate": "2024-01-15", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-370", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11627, "employeeId": 1640, "customEffectiveDate": "2024-01-02", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-363", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11631, "employeeId": 1641, "customEffectiveDate": "2024-01-02", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-69", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11634, "employeeId": 1642, "customEffectiveDate": "2023-12-14", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12341, "employeeId": 1643, "customEffectiveDate": "2024-01-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-367", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13708, "employeeId": 1643, "customEffectiveDate": "2023-12-14", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "On an advisor agreement until FTE start date.", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12524, "employeeId": 1644, "customEffectiveDate": "2024-01-15", "customDepartment#": "2110", "customJobCode": "Documentation", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-230", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15988, "employeeId": 1645, "customEffectiveDate": "2024-01-22", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14703, "employeeId": 1646, "customEffectiveDate": "2024-01-29", "customDepartment#": "2820", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-28", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15998, "employeeId": 1647, "customEffectiveDate": "2024-02-12", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-239", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15928, "employeeId": 1648, "customEffectiveDate": "2024-01-16", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-377", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15932, "employeeId": 1649, "customEffectiveDate": "2024-01-22", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15935, "employeeId": 1650, "customEffectiveDate": "2024-01-16", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-383", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15945, "employeeId": 1651, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588414}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15949, "employeeId": 1652, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16003, "employeeId": 1653, "customEffectiveDate": "2024-03-11", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-382", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16031, "employeeId": 1654, "customEffectiveDate": "2024-01-29", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-389", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16035, "employeeId": 1655, "customEffectiveDate": "2024-02-01", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-380", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16039, "employeeId": 1656, "customEffectiveDate": "2024-02-26", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16061, "employeeId": 1657, "customEffectiveDate": "2024-02-05", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-21", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16053, "employeeId": 1658, "customEffectiveDate": "2024-02-19", "customDepartment#": "2110", "customJobCode": "Design System", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-234", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16063, "employeeId": 1659, "customEffectiveDate": "2024-02-12", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16066, "employeeId": 1660, "customEffectiveDate": "2024-02-19", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-78", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16070, "employeeId": 1661, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Germany GmbH", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-372", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16078, "employeeId": 1662, "customEffectiveDate": "2024-04-01", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-238", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16076, "employeeId": 1663, "customEffectiveDate": "2024-01-22", "customDepartment#": "3400", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16894, "employeeId": 1664, "customEffectiveDate": "2024-02-19", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-409", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16859, "employeeId": 1665, "customEffectiveDate": "2024-03-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-395", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16848, "employeeId": 1666, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-32", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16852, "employeeId": 1667, "customEffectiveDate": "2024-03-04", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16856, "employeeId": 1668, "customEffectiveDate": "2024-03-18", "customDepartment#": "3300", "customJobCode": "", "customHRTitle": "Neo4j Singapore Pte Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-181", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588415}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16878, "employeeId": 1669, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-91", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16882, "employeeId": 1670, "customEffectiveDate": "2024-02-26", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-201", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16886, "employeeId": 1671, "customEffectiveDate": "2024-03-04", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-27", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16905, "employeeId": 1672, "customEffectiveDate": "2024-03-05", "customDepartment#": "1600", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Kristin Cabot", "customJobChangeReason": null, "customPosition": "PEO-31", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16909, "employeeId": 1673, "customEffectiveDate": "2024-03-11", "customDepartment#": "1100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": null, "customPosition": "GA-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17159, "employeeId": 1673, "customEffectiveDate": "2024-03-01", "customDepartment#": "1110", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Michael Asher", "customJobChangeReason": "Adjusted Division # as requested by Finance due to new sub-departments under G&A", "customPosition": "GA-40", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16913, "employeeId": 1674, "customEffectiveDate": "2024-03-04", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-397", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16919, "employeeId": 1675, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-13", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16943, "employeeId": 1676, "customEffectiveDate": "2024-05-06", "customDepartment#": "2120", "customJobCode": "Infra - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-237", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16924, "employeeId": 1677, "customEffectiveDate": "2024-04-02", "customDepartment#": "2120", "customJobCode": "Orchestration - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-236", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16934, "employeeId": 1678, "customEffectiveDate": "2024-02-13", "customDepartment#": "", "customJobCode": "", "customHRTitle": "", "customHeadcount": "No", "customE-staff": "", "customJobChangeReason": "TEST USER", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16948, "employeeId": 1680, "customEffectiveDate": "2024-04-12", "customDepartment#": "2110", "customJobCode": "Security", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-233", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16975, "employeeId": 1681, "customEffectiveDate": "2024-04-08", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": "New Hire", "customPosition": "PRD-29", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16955, "employeeId": 1682, "customEffectiveDate": "2024-02-26", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-384", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16960, "employeeId": 1683, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New HIre", "customPosition": "FO-381", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16966, "employeeId": 1684, "customEffectiveDate": "2024-02-26", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-235", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17138, "employeeId": 1685, "customEffectiveDate": "2024-03-04", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-375", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16980, "employeeId": 1686, "customEffectiveDate": "2024-04-08", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-231", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588416}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16985, "employeeId": 1687, "customEffectiveDate": "2024-06-03", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-244", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17150, "employeeId": 1689, "customEffectiveDate": "2024-04-08", "customDepartment#": "3500", "customJobCode": "", "customHRTitle": "Neo4j Australia Pty Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-379", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17197, "employeeId": 1690, "customEffectiveDate": "2024-02-22", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17199, "employeeId": 1691, "customEffectiveDate": "2024-03-01", "customDepartment#": "2110", "customJobCode": "Cypher - Planner", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-155", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17205, "employeeId": 1692, "customEffectiveDate": "2024-03-11", "customDepartment#": "3200", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "", "customPosition": "MKG-73", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17215, "employeeId": 1693, "customEffectiveDate": "2024-02-29", "customDepartment#": "3210", "customJobCode": "N/A", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17217, "employeeId": 1694, "customEffectiveDate": "2024-05-28", "customDepartment#": "2110", "customJobCode": "Generative AI", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-248", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17222, "employeeId": 1695, "customEffectiveDate": "2024-02-27", "customDepartment#": "3550", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17224, "employeeId": 1696, "customEffectiveDate": "2024-04-08", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-229", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17235, "employeeId": 1697, "customEffectiveDate": "2024-03-01", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17269, "employeeId": 1698, "customEffectiveDate": "2024-03-18", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-159", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17275, "employeeId": 1699, "customEffectiveDate": "2024-04-01", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "MKG-72", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17281, "employeeId": 1700, "customEffectiveDate": "2024-03-11", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "No", "customE-staff": "Chandra Rangan", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17288, "employeeId": 1701, "customEffectiveDate": "2024-04-22", "customDepartment#": "2110", "customJobCode": "Connectors", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-232", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17295, "employeeId": 1702, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Bloom", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17303, "employeeId": 1703, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Surface", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17307, "employeeId": 1704, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "Cypher - Operations", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17311, "employeeId": 1705, "customEffectiveDate": "2024-05-20", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-247", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588417}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17316, "employeeId": 1706, "customEffectiveDate": "2024-05-13", "customDepartment#": "2110", "customJobCode": "Browser", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-246", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17324, "employeeId": 1707, "customEffectiveDate": "2024-03-25", "customDepartment#": "3400", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-396", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17328, "employeeId": 1708, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-385", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17334, "employeeId": 1709, "customEffectiveDate": "2024-04-01", "customDepartment#": "3100", "customJobCode": "", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": null, "customPosition": "FO-393", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17347, "employeeId": 1710, "customEffectiveDate": "2024-04-01", "customDepartment#": "2810", "customJobCode": "N/A", "customHRTitle": "Neo4j, Inc.", "customHeadcount": "Yes", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "PRD-30", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17352, "employeeId": 1711, "customEffectiveDate": "2024-04-02", "customDepartment#": "2120", "customJobCode": "Platform - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-243", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17359, "employeeId": 1712, "customEffectiveDate": "2024-06-24", "customDepartment#": "2120", "customJobCode": "Console - Aura", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "ENG-253", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17384, "employeeId": 1713, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17386, "employeeId": 1714, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17388, "employeeId": 1715, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17390, "employeeId": 1716, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17392, "employeeId": 1717, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17394, "employeeId": 1718, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17396, "employeeId": 1719, "customEffectiveDate": "2024-03-18", "customDepartment#": "2810", "customJobCode": "", "customHRTitle": "Neo4j, Inc - APAC", "customHeadcount": "No", "customE-staff": "Sudhir Hasbe", "customJobChangeReason": null, "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17398, "employeeId": 1720, "customEffectiveDate": "2024-06-17", "customDepartment#": "2120", "customJobCode": "Usage and Billing Systems (UBS)", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New HIre", "customPosition": "ENG-252", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17403, "employeeId": 1721, "customEffectiveDate": "2024-04-02", "customDepartment#": "3300", "customJobCode": "N/A", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Alyson Welch", "customJobChangeReason": "New Hire", "customPosition": "FO-322", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17411, "employeeId": 1722, "customEffectiveDate": "2024-05-07", "customDepartment#": "3200", "customJobCode": "", "customHRTitle": "Neo4j UK Ltd", "customHeadcount": "Yes", "customE-staff": "Chandra Rangan", "customJobChangeReason": "New Hire", "customPosition": "MKG-38", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588418}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17420, "employeeId": 1723, "customEffectiveDate": "2024-06-10", "customDepartment#": "2110", "customJobCode": "", "customHRTitle": "Neo4j Sweden AB", "customHeadcount": "No", "customE-staff": "Magnus Vejlstrup", "customJobChangeReason": "New Hire", "customPosition": "", "knoetic_table_name": "customAdditionalJobInformation"}, "emitted_at": 1710872588419}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7641, "employeeId": 114, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "FI.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9341, "employeeId": 114, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7193, "employeeId": 116, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9368, "employeeId": 116, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6860, "employeeId": 117, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9908, "employeeId": 117, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589006}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7067, "employeeId": 119, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7366, "employeeId": 120, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7448, "employeeId": 121, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9342, "employeeId": 121, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6947, "employeeId": 124, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACCO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9909, "employeeId": 124, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACCO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12349, "employeeId": 124, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACCO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7082, "employeeId": 126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9372, "employeeId": 126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7431, "employeeId": 127, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9910, "employeeId": 127, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12350, "employeeId": 127, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589007}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7058, "employeeId": 130, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9824, "employeeId": 130, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7069, "employeeId": 134, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.ISBS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7115, "employeeId": 135, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9825, "employeeId": 135, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10213, "employeeId": 135, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-06-27", "customCorporateTitle": "DIRECTOR", "customComments1": "Corrected to reflect appropriate level + corporate title.", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12351, "employeeId": 135, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7440, "employeeId": 136, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9373, "employeeId": 136, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7217, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8512, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9374, "employeeId": 141, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589008}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7460, "employeeId": 142, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7281, "employeeId": 143, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8525, "employeeId": 143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9375, "employeeId": 143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6934, "employeeId": 145, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7581, "employeeId": 146, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9376, "employeeId": 146, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6954, "employeeId": 147, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9377, "employeeId": 147, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7132, "employeeId": 149, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.DIDI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7335, "employeeId": 150, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9911, "employeeId": 150, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589009}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7637, "employeeId": 152, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSGF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9378, "employeeId": 152, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSGF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7477, "employeeId": 153, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8470, "employeeId": 153, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9379, "employeeId": 153, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6899, "employeeId": 155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7508, "employeeId": 157, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8490, "employeeId": 157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": "Confirm level", "customBenchmarkCode": "SA.ISCR.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9255, "employeeId": 157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7307, "employeeId": 159, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSSI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9912, "employeeId": 159, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSSI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17424, "employeeId": 159, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-09", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment requested by HRBP: Donna Leslie", "customBenchmarkCode": "PS.PSSI.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589010}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6946, "employeeId": 160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9380, "employeeId": 160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7070, "employeeId": 163, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.DIWU.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6929, "employeeId": 164, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8519, "employeeId": 164, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9381, "employeeId": 164, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6870, "employeeId": 169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9807, "employeeId": 169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6996, "employeeId": 170, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9970, "employeeId": 170, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7352, "employeeId": 171, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Updated job code to Radford's Head of Business Services. 2023-04-12. By Sadie Percell", "customBenchmarkCode": "PS.PSBS.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589011}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9298, "employeeId": 171, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSBS.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7443, "employeeId": 172, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9343, "employeeId": 172, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7125, "employeeId": 173, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7286, "employeeId": 174, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7501, "employeeId": 176, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9344, "employeeId": 176, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589012}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7577, "employeeId": 177, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9913, "employeeId": 177, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11285, "employeeId": 177, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Promoted", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12352, "employeeId": 177, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7459, "employeeId": 179, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9827, "employeeId": 179, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7468, "employeeId": 180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9914, "employeeId": 180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12353, "employeeId": 180, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6858, "employeeId": 182, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7248, "employeeId": 184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589013}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9382, "employeeId": 184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12354, "employeeId": 184, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17062, "employeeId": 184, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7436, "employeeId": 185, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9383, "employeeId": 185, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7184, "employeeId": 187, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9384, "employeeId": 187, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7072, "employeeId": 189, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9915, "employeeId": 189, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12355, "employeeId": 189, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589014}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6861, "employeeId": 190, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9916, "employeeId": 190, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6955, "employeeId": 191, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9901, "employeeId": 191, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7455, "employeeId": 192, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8522, "employeeId": 192, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9385, "employeeId": 192, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7338, "employeeId": 194, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9833, "employeeId": 194, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7272, "employeeId": 195, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589015}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9386, "employeeId": 195, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6859, "employeeId": 197, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMMO.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7296, "employeeId": 198, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9387, "employeeId": 198, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12356, "employeeId": 198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17072, "employeeId": 198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6869, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9889, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10312, "employeeId": 202, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "PRINCIPAL", "customComments1": "Transfer", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589016}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7467, "employeeId": 205, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7554, "employeeId": 206, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8561, "employeeId": 206, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9345, "employeeId": 206, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7024, "employeeId": 207, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6877, "employeeId": 208, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "FI.GLFI.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9369, "employeeId": 208, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.GLFI.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7117, "employeeId": 210, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9840, "employeeId": 210, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589017}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7573, "employeeId": 212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9388, "employeeId": 212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12357, "employeeId": 212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7318, "employeeId": 213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9820, "employeeId": 213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6957, "employeeId": 214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9389, "employeeId": 214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6867, "employeeId": 217, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9390, "employeeId": 217, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589018}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7085, "employeeId": 219, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9391, "employeeId": 219, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12358, "employeeId": 219, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17042, "employeeId": 219, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6977, "employeeId": 221, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9966, "employeeId": 221, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12359, "employeeId": 221, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7562, "employeeId": 227, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589019}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9917, "employeeId": 227, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7302, "employeeId": 228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9392, "employeeId": 228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7406, "employeeId": 229, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9393, "employeeId": 229, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7552, "employeeId": 232, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9850, "employeeId": 232, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6971, "employeeId": 233, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9394, "employeeId": 233, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589020}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7060, "employeeId": 234, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9395, "employeeId": 234, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7263, "employeeId": 235, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9396, "employeeId": 235, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7567, "employeeId": 240, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9397, "employeeId": 240, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7356, "employeeId": 242, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMDG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9918, "employeeId": 242, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589021}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10264, "employeeId": 242, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6873, "employeeId": 243, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9837, "employeeId": 243, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12360, "employeeId": 243, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17016, "employeeId": 243, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7305, "employeeId": 250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7485, "employeeId": 252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9398, "employeeId": 252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589022}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7599, "employeeId": 253, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9399, "employeeId": 253, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6862, "employeeId": 255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9400, "employeeId": 255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7596, "employeeId": 257, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7065, "employeeId": 260, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589023}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9401, "employeeId": 260, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7607, "employeeId": 261, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.GLSF.E3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9364, "employeeId": 261, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.GLSF.E3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7166, "employeeId": 262, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9402, "employeeId": 262, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7043, "employeeId": 263, "customCorporateJobLevel": "L12", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "CEO", "customComments1": null, "customBenchmarkCode": "LE.GLEC.E6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9346, "employeeId": 263, "customCorporateJobLevel": "L12", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "CEO", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LE.GLEC.E6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589024}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7196, "employeeId": 264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7059, "employeeId": 265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9403, "employeeId": 265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7584, "employeeId": 267, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.OPNC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6880, "employeeId": 268, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9404, "employeeId": 268, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589025}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7614, "employeeId": 269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9405, "employeeId": 269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7587, "employeeId": 273, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "EN.DVDD.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9347, "employeeId": 273, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.DVDD.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7050, "employeeId": 278, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9406, "employeeId": 278, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7135, "employeeId": 280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589026}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9407, "employeeId": 280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7324, "employeeId": 281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9408, "employeeId": 281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7494, "employeeId": 286, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7586, "employeeId": 287, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9864, "employeeId": 287, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12363, "employeeId": 287, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17124, "employeeId": 287, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589027}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7227, "employeeId": 289, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9348, "employeeId": 289, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7580, "employeeId": 290, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7476, "employeeId": 291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9409, "employeeId": 291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10475, "employeeId": 291, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7096, "employeeId": 292, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9410, "employeeId": 292, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589028}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7012, "employeeId": 293, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9879, "employeeId": 293, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7265, "employeeId": 294, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9411, "employeeId": 294, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6894, "employeeId": 295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8472, "employeeId": 295, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9919, "employeeId": 295, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7011, "employeeId": 296, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589029}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8531, "employeeId": 296, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9412, "employeeId": 296, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7368, "employeeId": 297, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8430, "employeeId": 297, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9413, "employeeId": 297, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7612, "employeeId": 298, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9414, "employeeId": 298, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7402, "employeeId": 299, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589030}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9920, "employeeId": 299, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7192, "employeeId": 300, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9415, "employeeId": 300, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7178, "employeeId": 301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9416, "employeeId": 301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7634, "employeeId": 302, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9417, "employeeId": 302, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6932, "employeeId": 304, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589031}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8431, "employeeId": 304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9418, "employeeId": 304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7409, "employeeId": 307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9419, "employeeId": 307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7336, "employeeId": 309, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7427, "employeeId": 310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9420, "employeeId": 310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7556, "employeeId": 311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589032}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9421, "employeeId": 311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7275, "employeeId": 312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9921, "employeeId": 312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7375, "employeeId": 314, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9422, "employeeId": 314, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7521, "employeeId": 315, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9423, "employeeId": 315, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12364, "employeeId": 315, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589033}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17107, "employeeId": 315, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6856, "employeeId": 316, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9424, "employeeId": 316, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7418, "employeeId": 317, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8444, "employeeId": 317, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9425, "employeeId": 317, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7377, "employeeId": 318, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "FI.ACMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9922, "employeeId": 318, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11365, "employeeId": 318, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: New title, level and benchmark code. Approved by Kelly Zawalski.", "customBenchmarkCode": "FI.ACMF.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589034}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9315, "employeeId": 319, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2019-02-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17204, "employeeId": 319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2021-08-09", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Became a People Manager", "customBenchmarkCode": "CB.ADAA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7104, "employeeId": 320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9426, "employeeId": 320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12365, "employeeId": 320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17045, "employeeId": 320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7223, "employeeId": 321, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9427, "employeeId": 321, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7480, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589035}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8489, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9923, "employeeId": 322, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7199, "employeeId": 324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9428, "employeeId": 324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7412, "employeeId": 326, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9429, "employeeId": 326, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7218, "employeeId": 327, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9430, "employeeId": 327, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7376, "employeeId": 328, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8448, "employeeId": 328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589036}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9431, "employeeId": 328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11261, "employeeId": 328, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made by Nicole Fridvall after request from People Strategy Partner Lotta Almryd. Role levelled higher than other directors.", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6993, "employeeId": 329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8524, "employeeId": 329, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9432, "employeeId": 329, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7122, "employeeId": 330, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7313, "employeeId": 331, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9821, "employeeId": 331, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7383, "employeeId": 332, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589037}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9855, "employeeId": 332, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7149, "employeeId": 335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8467, "employeeId": 335, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9433, "employeeId": 335, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7504, "employeeId": 336, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8494, "employeeId": 336, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9434, "employeeId": 336, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7526, "employeeId": 337, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9435, "employeeId": 337, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7322, "employeeId": 339, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589038}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9436, "employeeId": 339, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7351, "employeeId": 340, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8521, "employeeId": 340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9437, "employeeId": 340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7014, "employeeId": 341, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9858, "employeeId": 341, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12367, "employeeId": 341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17033, "employeeId": 341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7108, "employeeId": 342, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SDSD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589039}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6912, "employeeId": 343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SP.BOBC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9365, "employeeId": 343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7066, "employeeId": 347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9438, "employeeId": 347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10457, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Promotion. Added by Nicole Fridvall", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12368, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17041, "employeeId": 347, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6960, "employeeId": 348, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7594, "employeeId": 351, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9439, "employeeId": 351, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589040}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7645, "employeeId": 352, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8562, "employeeId": 352, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9349, "employeeId": 352, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7226, "employeeId": 353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9440, "employeeId": 353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7514, "employeeId": 354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9441, "employeeId": 354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7208, "employeeId": 355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9847, "employeeId": 355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11260, "employeeId": 355, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made by Nicole Fridvall after request from People Strategy Partner Lotta Almryd. Role levelled higher than other directors.", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589041}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7610, "employeeId": 356, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SP.BDIN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6848, "employeeId": 357, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8473, "employeeId": 357, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9924, "employeeId": 357, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7615, "employeeId": 358, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9442, "employeeId": 358, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6875, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9443, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11362, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Added to management path, new Corporate title and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SP.BOBI.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12371, "employeeId": 359, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589042}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7288, "employeeId": 361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9444, "employeeId": 361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7388, "employeeId": 362, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9445, "employeeId": 362, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7454, "employeeId": 363, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8438, "employeeId": 363, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9446, "employeeId": 363, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6847, "employeeId": 364, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7194, "employeeId": 365, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9447, "employeeId": 365, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7407, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589043}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8459, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9448, "employeeId": 366, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10484, "employeeId": 366, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7279, "employeeId": 368, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9449, "employeeId": 368, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7538, "employeeId": 369, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9450, "employeeId": 369, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12372, "employeeId": 369, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17112, "employeeId": 369, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7173, "employeeId": 370, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8488, "employeeId": 370, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589044}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9451, "employeeId": 370, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6952, "employeeId": 371, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7185, "employeeId": 372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9452, "employeeId": 372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7511, "employeeId": 373, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9868, "employeeId": 373, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6871, "employeeId": 374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9453, "employeeId": 374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7363, "employeeId": 375, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9925, "employeeId": 375, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7466, "employeeId": 376, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589045}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9454, "employeeId": 376, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6904, "employeeId": 380, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9455, "employeeId": 380, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7032, "employeeId": 381, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9456, "employeeId": 381, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7235, "employeeId": 382, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8493, "employeeId": 382, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9457, "employeeId": 382, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7164, "employeeId": 383, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9458, "employeeId": 383, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589046}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6911, "employeeId": 384, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9926, "employeeId": 384, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7041, "employeeId": 385, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9459, "employeeId": 385, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7246, "employeeId": 386, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9460, "employeeId": 386, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7473, "employeeId": 388, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9461, "employeeId": 388, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7228, "employeeId": 389, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9462, "employeeId": 389, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6995, "employeeId": 391, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589047}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8481, "employeeId": 391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9463, "employeeId": 391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6864, "employeeId": 392, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9464, "employeeId": 392, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6939, "employeeId": 393, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8474, "employeeId": 393, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASPS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9465, "employeeId": 393, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12373, "employeeId": 393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6920, "employeeId": 395, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9466, "employeeId": 395, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7061, "employeeId": 396, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589048}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9467, "employeeId": 396, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7174, "employeeId": 398, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9468, "employeeId": 398, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7438, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9927, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12374, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17093, "employeeId": 399, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7539, "employeeId": 400, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9890, "employeeId": 400, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7405, "employeeId": 401, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8559, "employeeId": 401, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "HR.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589049}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9469, "employeeId": 401, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7472, "employeeId": 402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9883, "employeeId": 402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6906, "employeeId": 403, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9470, "employeeId": 403, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7479, "employeeId": 405, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9471, "employeeId": 405, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12375, "employeeId": 405, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17101, "employeeId": 405, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589050}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6978, "employeeId": 406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9472, "employeeId": 406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7146, "employeeId": 408, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9473, "employeeId": 408, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7293, "employeeId": 409, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9474, "employeeId": 409, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10358, "employeeId": 409, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7369, "employeeId": 410, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9475, "employeeId": 410, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7158, "employeeId": 411, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9476, "employeeId": 411, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8453, "employeeId": 412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589051}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9477, "employeeId": 412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10474, "employeeId": 412, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7576, "employeeId": 413, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9478, "employeeId": 413, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7215, "employeeId": 414, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7550, "employeeId": 416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9479, "employeeId": 416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7091, "employeeId": 418, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9928, "employeeId": 418, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7210, "employeeId": 421, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9839, "employeeId": 421, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7020, "employeeId": 499, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589052}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9480, "employeeId": 499, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6854, "employeeId": 533, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8456, "employeeId": 533, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9481, "employeeId": 533, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7530, "employeeId": 546, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9482, "employeeId": 546, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7101, "employeeId": 569, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9483, "employeeId": 569, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7326, "employeeId": 570, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9484, "employeeId": 570, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7005, "employeeId": 572, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9485, "employeeId": 572, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7495, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589053}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9929, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12376, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17102, "employeeId": 573, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7292, "employeeId": 574, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9486, "employeeId": 574, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7204, "employeeId": 575, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8455, "employeeId": 575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9487, "employeeId": 575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7623, "employeeId": 576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9841, "employeeId": 576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7362, "employeeId": 578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9904, "employeeId": 578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589054}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6936, "employeeId": 580, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.CRHR.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9370, "employeeId": 580, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRHR.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7087, "employeeId": 583, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DMDE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9488, "employeeId": 583, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DMDE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7139, "employeeId": 587, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8523, "employeeId": 587, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9860, "employeeId": 587, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7304, "employeeId": 588, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7575, "employeeId": 590, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9489, "employeeId": 590, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12377, "employeeId": 590, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17120, "employeeId": 590, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589055}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6986, "employeeId": 592, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9896, "employeeId": 592, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6887, "employeeId": 593, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6989, "employeeId": 595, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.APAD.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9367, "employeeId": 595, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAD.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7299, "employeeId": 599, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9490, "employeeId": 599, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7237, "employeeId": 600, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7257, "employeeId": 602, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9491, "employeeId": 602, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7403, "employeeId": 603, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8504, "employeeId": 603, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9492, "employeeId": 603, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589056}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7423, "employeeId": 604, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9493, "employeeId": 604, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7449, "employeeId": 605, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9494, "employeeId": 605, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7051, "employeeId": 606, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9495, "employeeId": 606, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7268, "employeeId": 607, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9496, "employeeId": 607, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12378, "employeeId": 607, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17068, "employeeId": 607, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7489, "employeeId": 608, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589057}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9930, "employeeId": 608, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7542, "employeeId": 610, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9497, "employeeId": 610, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6865, "employeeId": 611, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8446, "employeeId": 611, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9498, "employeeId": 611, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7616, "employeeId": 613, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7557, "employeeId": 615, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8482, "employeeId": 615, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9499, "employeeId": 615, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7372, "employeeId": 616, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8483, "employeeId": 616, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9500, "employeeId": 616, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589058}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7319, "employeeId": 618, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9501, "employeeId": 618, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7205, "employeeId": 619, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8503, "employeeId": 619, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9974, "employeeId": 619, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6895, "employeeId": 620, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9502, "employeeId": 620, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10262, "employeeId": 620, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7003, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8497, "employeeId": 622, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9887, "employeeId": 622, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12379, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17030, "employeeId": 622, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7597, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589059}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8514, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": "Confirm level", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9256, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12380, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17126, "employeeId": 625, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7413, "employeeId": 626, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9931, "employeeId": 626, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7635, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9973, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12381, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17135, "employeeId": 627, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589060}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7138, "employeeId": 628, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9503, "employeeId": 628, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7509, "employeeId": 629, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8507, "employeeId": 629, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": "Confirm new level post promotion with Wen", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9258, "employeeId": 629, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7216, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9504, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12361, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17059, "employeeId": 630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6888, "employeeId": 633, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8484, "employeeId": 633, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9505, "employeeId": 633, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7084, "employeeId": 634, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7154, "employeeId": 635, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589061}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9506, "employeeId": 635, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7301, "employeeId": 636, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8518, "employeeId": 636, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9932, "employeeId": 636, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7039, "employeeId": 637, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8485, "employeeId": 637, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9933, "employeeId": 637, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7278, "employeeId": 638, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9826, "employeeId": 638, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12384, "employeeId": 638, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17070, "employeeId": 638, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6846, "employeeId": 639, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8471, "employeeId": 639, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589062}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9907, "employeeId": 639, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6868, "employeeId": 643, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7532, "employeeId": 644, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9507, "employeeId": 644, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7144, "employeeId": 645, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9508, "employeeId": 645, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7000, "employeeId": 646, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9509, "employeeId": 646, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7143, "employeeId": 647, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9802, "employeeId": 647, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7027, "employeeId": 648, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8445, "employeeId": 648, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9510, "employeeId": 648, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7613, "employeeId": 649, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589063}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9511, "employeeId": 649, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7282, "employeeId": 650, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9512, "employeeId": 650, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6903, "employeeId": 651, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7134, "employeeId": 652, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7354, "employeeId": 653, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9366, "employeeId": 653, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7243, "employeeId": 656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9513, "employeeId": 656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7505, "employeeId": 658, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9812, "employeeId": 658, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10354, "employeeId": 658, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7148, "employeeId": 659, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.p3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8429, "employeeId": 659, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589064}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9514, "employeeId": 659, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7018, "employeeId": 662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9515, "employeeId": 662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7317, "employeeId": 663, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9934, "employeeId": 663, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12385, "employeeId": 663, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7092, "employeeId": 664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-04-04", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Reviewed by Kent Corson and\nadjusted level made by Sadie Percell, April 4 2023.", "customBenchmarkCode": "SA.OPSA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9297, "employeeId": 664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12386, "employeeId": 664, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7189, "employeeId": 667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9893, "employeeId": 667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7201, "employeeId": 668, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9813, "employeeId": 668, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589065}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7260, "employeeId": 669, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9299, "employeeId": 669, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7289, "employeeId": 670, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6983, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9935, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17214, "employeeId": 671, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-05-05", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7543, "employeeId": 672, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9516, "employeeId": 672, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7458, "employeeId": 674, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9517, "employeeId": 674, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7385, "employeeId": 676, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7605, "employeeId": 677, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9518, "employeeId": 677, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6892, "employeeId": 678, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9805, "employeeId": 678, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589066}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7209, "employeeId": 679, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9519, "employeeId": 679, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7264, "employeeId": 684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9520, "employeeId": 684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7541, "employeeId": 685, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9976, "employeeId": 685, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7256, "employeeId": 687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9869, "employeeId": 687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7186, "employeeId": 688, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8478, "employeeId": 688, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9873, "employeeId": 688, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6997, "employeeId": 691, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CMCM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9521, "employeeId": 691, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CMCM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10255, "employeeId": 691, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.CMCM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6931, "employeeId": 694, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589067}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9300, "employeeId": 694, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7025, "employeeId": 695, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9522, "employeeId": 695, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7211, "employeeId": 696, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7035, "employeeId": 698, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8538, "employeeId": 698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9523, "employeeId": 698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12387, "employeeId": 698, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17038, "employeeId": 698, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7004, "employeeId": 699, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9851, "employeeId": 699, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7044, "employeeId": 700, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9524, "employeeId": 700, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6876, "employeeId": 702, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7094, "employeeId": 703, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589068}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9525, "employeeId": 703, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7546, "employeeId": 704, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7040, "employeeId": 706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9526, "employeeId": 706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10269, "employeeId": 706, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMC.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7620, "employeeId": 707, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8433, "employeeId": 707, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9527, "employeeId": 707, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7183, "employeeId": 708, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7034, "employeeId": 710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9528, "employeeId": 710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7017, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9529, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10271, "employeeId": 711, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIWP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12389, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589069}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17035, "employeeId": 711, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.DIWP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6927, "employeeId": 712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9530, "employeeId": 712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6919, "employeeId": 713, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9531, "employeeId": 713, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7262, "employeeId": 714, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9902, "employeeId": 714, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6950, "employeeId": 715, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSCW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7083, "employeeId": 716, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9848, "employeeId": 716, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7627, "employeeId": 718, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9532, "employeeId": 718, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11364, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: New Corporate title, level and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SP.BOBI.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12390, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17131, "employeeId": 718, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.BOBI.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589070}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7238, "employeeId": 719, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9936, "employeeId": 719, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7481, "employeeId": 722, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7591, "employeeId": 723, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "TE.INNS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8565, "employeeId": 723, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9797, "employeeId": 723, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7528, "employeeId": 725, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9533, "employeeId": 725, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6914, "employeeId": 726, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9534, "employeeId": 726, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7046, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8510, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9891, "employeeId": 727, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7349, "employeeId": 728, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8447, "employeeId": 728, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9535, "employeeId": 728, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589071}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7545, "employeeId": 729, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9536, "employeeId": 729, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7500, "employeeId": 730, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7640, "employeeId": 734, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9537, "employeeId": 734, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7160, "employeeId": 735, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8457, "employeeId": 735, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9538, "employeeId": 735, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7357, "employeeId": 736, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "TE.DADS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9539, "employeeId": 736, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7583, "employeeId": 738, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9540, "employeeId": 738, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6921, "employeeId": 739, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8564, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9541, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589072}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10360, "employeeId": 739, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15997, "employeeId": 739, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Re-hired", "customBenchmarkCode": "EN.PGPG.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7029, "employeeId": 740, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9542, "employeeId": 740, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7220, "employeeId": 741, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9795, "employeeId": 741, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7632, "employeeId": 744, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8520, "employeeId": 744, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9543, "employeeId": 744, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7159, "employeeId": 745, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6874, "employeeId": 747, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9544, "employeeId": 747, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6913, "employeeId": 748, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8460, "employeeId": 748, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16013, "employeeId": 748, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "SPECIALIST", "customComments1": "Re-hired", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589073}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7578, "employeeId": 751, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9828, "employeeId": 751, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7334, "employeeId": 752, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9545, "employeeId": 752, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7200, "employeeId": 753, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9937, "employeeId": 753, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7001, "employeeId": 754, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9546, "employeeId": 754, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6902, "employeeId": 755, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8500, "employeeId": 755, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9900, "employeeId": 755, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6866, "employeeId": 757, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9547, "employeeId": 757, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7602, "employeeId": 758, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9548, "employeeId": 758, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7076, "employeeId": 759, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.FSMC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7222, "employeeId": 760, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589074}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9842, "employeeId": 760, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7247, "employeeId": 762, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.APMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9363, "employeeId": 762, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7081, "employeeId": 763, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6984, "employeeId": 766, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8486, "employeeId": 766, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9549, "employeeId": 766, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7533, "employeeId": 767, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7450, "employeeId": 768, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9870, "employeeId": 768, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7609, "employeeId": 769, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9550, "employeeId": 769, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7320, "employeeId": 770, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7628, "employeeId": 771, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9903, "employeeId": 771, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12391, "employeeId": 771, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17132, "employeeId": 771, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589075}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7291, "employeeId": 772, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9551, "employeeId": 772, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7224, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "TEAM LEAD", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8535, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "TEAM LEAD", "customComments1": "Confirm level", "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9257, "employeeId": 773, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "TEAM LEAD", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12392, "employeeId": 773, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17060, "employeeId": 773, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7315, "employeeId": 774, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8543, "employeeId": 774, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9316, "employeeId": 774, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10593, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-09-18", "customCorporateTitle": "", "customComments1": "Transfer to New Role", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12393, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17076, "employeeId": 774, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7358, "employeeId": 775, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589076}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9350, "employeeId": 775, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7568, "employeeId": 778, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "HR.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9351, "employeeId": 778, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7488, "employeeId": 785, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9552, "employeeId": 785, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7086, "employeeId": 786, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8425, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9253, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12394, "employeeId": 786, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.ARIS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6898, "employeeId": 787, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9553, "employeeId": 787, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7073, "employeeId": 790, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7172, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8544, "employeeId": 791, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9317, "employeeId": 791, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12395, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17054, "employeeId": 791, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589077}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7365, "employeeId": 792, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9554, "employeeId": 792, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12474, "employeeId": 792, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17082, "employeeId": 792, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7540, "employeeId": 794, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9555, "employeeId": 794, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7595, "employeeId": 795, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9371, "employeeId": 795, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6961, "employeeId": 796, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9897, "employeeId": 796, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7410, "employeeId": 798, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8528, "employeeId": 798, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9556, "employeeId": 798, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7142, "employeeId": 799, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9938, "employeeId": 799, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589078}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7131, "employeeId": 800, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9557, "employeeId": 800, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7395, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9558, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12397, "employeeId": 801, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.APES.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7068, "employeeId": 802, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9559, "employeeId": 802, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7343, "employeeId": 803, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9560, "employeeId": 803, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7161, "employeeId": 804, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9314, "employeeId": 804, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6988, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9939, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12398, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17029, "employeeId": 805, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7373, "employeeId": 806, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589079}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9561, "employeeId": 806, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7176, "employeeId": 809, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9562, "employeeId": 809, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7175, "employeeId": 812, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8449, "employeeId": 812, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9563, "employeeId": 812, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6857, "employeeId": 813, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8432, "employeeId": 813, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9819, "employeeId": 813, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6881, "employeeId": 814, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9564, "employeeId": 814, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SP.BOBI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12399, "employeeId": 814, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17017, "employeeId": 814, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.BOBI.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7339, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8508, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9565, "employeeId": 816, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7038, "employeeId": 818, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589080}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9566, "employeeId": 818, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7422, "employeeId": 819, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9567, "employeeId": 819, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7408, "employeeId": 820, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9940, "employeeId": 820, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7240, "employeeId": 821, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9568, "employeeId": 821, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6924, "employeeId": 822, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "LG.ATGC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9941, "employeeId": 822, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12400, "employeeId": 822, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATGC.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7316, "employeeId": 825, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7049, "employeeId": 826, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.OPSO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7428, "employeeId": 827, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8475, "employeeId": 827, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9874, "employeeId": 827, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12401, "employeeId": 827, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6982, "employeeId": 828, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589081}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9569, "employeeId": 828, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7202, "employeeId": 829, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6956, "employeeId": 830, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8439, "employeeId": 830, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9570, "employeeId": 830, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7355, "employeeId": 831, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9571, "employeeId": 831, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7399, "employeeId": 832, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9572, "employeeId": 832, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10272, "employeeId": 832, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIWU.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7394, "employeeId": 833, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9573, "employeeId": 833, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7342, "employeeId": 834, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9898, "employeeId": 834, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10357, "employeeId": 834, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7482, "employeeId": 836, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8462, "employeeId": 836, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9574, "employeeId": 836, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589082}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7625, "employeeId": 837, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9575, "employeeId": 837, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7523, "employeeId": 839, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9576, "employeeId": 839, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7331, "employeeId": 843, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9318, "employeeId": 843, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7323, "employeeId": 844, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7325, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9942, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12402, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17077, "employeeId": 845, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7644, "employeeId": 846, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7180, "employeeId": 847, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8461, "employeeId": 847, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9577, "employeeId": 847, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7631, "employeeId": 848, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9849, "employeeId": 848, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7026, "employeeId": 849, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589083}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7169, "employeeId": 850, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9578, "employeeId": 850, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7510, "employeeId": 851, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7273, "employeeId": 852, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9579, "employeeId": 852, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6953, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8539, "employeeId": 853, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9319, "employeeId": 853, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12403, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17024, "employeeId": 853, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7353, "employeeId": 854, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9301, "employeeId": 854, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7330, "employeeId": 855, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9859, "employeeId": 855, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6944, "employeeId": 856, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9580, "employeeId": 856, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6992, "employeeId": 858, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9352, "employeeId": 858, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589084}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7461, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8545, "employeeId": 859, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9320, "employeeId": 859, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12404, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17094, "employeeId": 859, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7285, "employeeId": 860, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9972, "employeeId": 860, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7254, "employeeId": 862, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9581, "employeeId": 862, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6909, "employeeId": 864, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9302, "employeeId": 864, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7604, "employeeId": 865, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8499, "employeeId": 865, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9582, "employeeId": 865, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7371, "employeeId": 866, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8424, "employeeId": 866, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9583, "employeeId": 866, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7561, "employeeId": 867, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589085}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9584, "employeeId": 867, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7364, "employeeId": 869, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9585, "employeeId": 869, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7453, "employeeId": 870, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9586, "employeeId": 870, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7496, "employeeId": 871, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9943, "employeeId": 871, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7515, "employeeId": 872, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8463, "employeeId": 872, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9587, "employeeId": 872, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6975, "employeeId": 874, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7484, "employeeId": 875, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9588, "employeeId": 875, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7090, "employeeId": 876, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9589, "employeeId": 876, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6985, "employeeId": 877, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589086}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9590, "employeeId": 877, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7042, "employeeId": 878, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8527, "employeeId": 878, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9591, "employeeId": 878, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10259, "employeeId": 878, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7490, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8495, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9592, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12405, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17234, "employeeId": 879, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6964, "employeeId": 880, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9593, "employeeId": 880, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6883, "employeeId": 881, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9594, "employeeId": 881, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7512, "employeeId": 882, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9595, "employeeId": 882, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12406, "employeeId": 882, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589087}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17106, "employeeId": 882, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7147, "employeeId": 883, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9814, "employeeId": 883, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7337, "employeeId": 884, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8516, "employeeId": 884, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9596, "employeeId": 884, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7002, "employeeId": 887, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9303, "employeeId": 887, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7198, "employeeId": 888, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9597, "employeeId": 888, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12407, "employeeId": 888, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17058, "employeeId": 888, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7271, "employeeId": 889, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9894, "employeeId": 889, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7621, "employeeId": 890, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9944, "employeeId": 890, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7128, "employeeId": 891, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9872, "employeeId": 891, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589088}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7048, "employeeId": 893, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9598, "employeeId": 893, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7105, "employeeId": 894, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9599, "employeeId": 894, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7520, "employeeId": 895, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6970, "employeeId": 898, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9815, "employeeId": 898, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7498, "employeeId": 901, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9600, "employeeId": 901, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7009, "employeeId": 904, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9852, "employeeId": 904, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7618, "employeeId": 905, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9601, "employeeId": 905, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7611, "employeeId": 909, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9602, "employeeId": 909, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6886, "employeeId": 910, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6900, "employeeId": 911, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9603, "employeeId": 911, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589089}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7547, "employeeId": 912, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8464, "employeeId": 912, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9604, "employeeId": 912, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6990, "employeeId": 914, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9880, "employeeId": 914, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10471, "employeeId": 914, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to level due to promotion. By Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7380, "employeeId": 916, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8434, "employeeId": 916, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9605, "employeeId": 916, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7327, "employeeId": 921, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9606, "employeeId": 921, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7426, "employeeId": 922, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7332, "employeeId": 923, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8540, "employeeId": 923, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9321, "employeeId": 923, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7590, "employeeId": 924, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8477, "employeeId": 924, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9607, "employeeId": 924, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7415, "employeeId": 925, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589090}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8542, "employeeId": 925, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9322, "employeeId": 925, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7420, "employeeId": 926, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.MRUE.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8560, "employeeId": 926, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.MRUE.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9608, "employeeId": 926, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.MRUE.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10352, "employeeId": 926, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP\nFunctional Job Level added by SP 082323", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6958, "employeeId": 927, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9830, "employeeId": 927, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7389, "employeeId": 928, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7478, "employeeId": 929, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9803, "employeeId": 929, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6863, "employeeId": 930, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9339, "employeeId": 930, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7006, "employeeId": 932, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9609, "employeeId": 932, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6941, "employeeId": 933, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9610, "employeeId": 933, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7404, "employeeId": 935, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7381, "employeeId": 936, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.GLMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589091}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9611, "employeeId": 936, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10267, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12408, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17085, "employeeId": 936, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.GLMF.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7079, "employeeId": 937, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9612, "employeeId": 937, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7374, "employeeId": 938, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9877, "employeeId": 938, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7522, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9906, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12409, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17108, "employeeId": 939, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7367, "employeeId": 940, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8498, "employeeId": 940, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9613, "employeeId": 940, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6922, "employeeId": 941, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9614, "employeeId": 941, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10254, "employeeId": 941, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7150, "employeeId": 942, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589092}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9843, "employeeId": 942, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7056, "employeeId": 943, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9615, "employeeId": 943, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6890, "employeeId": 944, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9616, "employeeId": 944, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7348, "employeeId": 946, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9304, "employeeId": 946, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7274, "employeeId": 947, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9617, "employeeId": 947, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7033, "employeeId": 948, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9618, "employeeId": 948, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7643, "employeeId": 951, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7563, "employeeId": 952, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9619, "employeeId": 952, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7598, "employeeId": 953, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7182, "employeeId": 954, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9620, "employeeId": 954, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7177, "employeeId": 955, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9621, "employeeId": 955, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589093}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6967, "employeeId": 957, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9862, "employeeId": 957, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7537, "employeeId": 958, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8506, "employeeId": 958, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9969, "employeeId": 958, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12411, "employeeId": 958, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CSRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7463, "employeeId": 959, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6965, "employeeId": 960, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9622, "employeeId": 960, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6897, "employeeId": 961, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9623, "employeeId": 961, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7113, "employeeId": 962, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9624, "employeeId": 962, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7525, "employeeId": 963, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9625, "employeeId": 963, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7527, "employeeId": 967, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6908, "employeeId": 968, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8546, "employeeId": 968, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9323, "employeeId": 968, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589094}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6872, "employeeId": 969, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9626, "employeeId": 969, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7414, "employeeId": 970, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9305, "employeeId": 970, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7088, "employeeId": 972, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9945, "employeeId": 972, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7390, "employeeId": 973, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8440, "employeeId": 973, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9627, "employeeId": 973, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6938, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8534, "employeeId": 974, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9324, "employeeId": 974, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12412, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17023, "employeeId": 974, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7397, "employeeId": 977, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8476, "employeeId": 977, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9628, "employeeId": 977, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12413, "employeeId": 977, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7359, "employeeId": 978, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589095}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8479, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Does this role have people responsibilty?", "customBenchmarkCode": "SA.APAP.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9259, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12414, "employeeId": 978, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7297, "employeeId": 979, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9946, "employeeId": 979, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7432, "employeeId": 980, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8492, "employeeId": 980, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9971, "employeeId": 980, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6907, "employeeId": 981, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9810, "employeeId": 981, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6852, "employeeId": 982, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9629, "employeeId": 982, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACRR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6916, "employeeId": 983, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8517, "employeeId": 983, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9630, "employeeId": 983, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7437, "employeeId": 984, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7179, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8511, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9631, "employeeId": 985, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589096}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7287, "employeeId": 986, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9632, "employeeId": 986, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7016, "employeeId": 987, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7340, "employeeId": 990, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9947, "employeeId": 990, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7284, "employeeId": 991, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7601, "employeeId": 992, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9633, "employeeId": 992, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6853, "employeeId": 994, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9634, "employeeId": 994, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7487, "employeeId": 996, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7244, "employeeId": 997, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.APAP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9948, "employeeId": 997, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6930, "employeeId": 998, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9306, "employeeId": 998, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7168, "employeeId": 999, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9635, "employeeId": 999, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7231, "employeeId": 1000, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9245, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589097}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9636, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12415, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17061, "employeeId": 1000, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6987, "employeeId": 1002, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9637, "employeeId": 1002, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7603, "employeeId": 1004, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9888, "employeeId": 1004, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7300, "employeeId": 1005, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9638, "employeeId": 1005, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10274, "employeeId": 1005, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DIIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7593, "employeeId": 1006, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9639, "employeeId": 1006, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6943, "employeeId": 1007, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6915, "employeeId": 1008, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9640, "employeeId": 1008, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7074, "employeeId": 1009, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "TE.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9353, "employeeId": 1009, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7384, "employeeId": 1010, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "HR.TMTA.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7524, "employeeId": 1011, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9876, "employeeId": 1011, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589098}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7626, "employeeId": 1012, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9641, "employeeId": 1012, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7491, "employeeId": 1013, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7483, "employeeId": 1014, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9642, "employeeId": 1014, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevel adjustment May 17, 2023 by Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7187, "employeeId": 1015, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9804, "employeeId": 1015, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7036, "employeeId": 1016, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9643, "employeeId": 1016, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12416, "employeeId": 1016, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PMPM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7267, "employeeId": 1017, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9644, "employeeId": 1017, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6969, "employeeId": 1018, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7055, "employeeId": 1019, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9307, "employeeId": 1019, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIDM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7439, "employeeId": 1020, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7151, "employeeId": 1021, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7230, "employeeId": 1022, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9645, "employeeId": 1022, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589099}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7492, "employeeId": 1024, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7571, "employeeId": 1025, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9949, "employeeId": 1025, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10256, "employeeId": 1025, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7398, "employeeId": 1026, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9308, "employeeId": 1026, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7152, "employeeId": 1027, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7109, "employeeId": 1028, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9646, "employeeId": 1028, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7054, "employeeId": 1029, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9647, "employeeId": 1029, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7156, "employeeId": 1031, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9648, "employeeId": 1031, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7080, "employeeId": 1032, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SOPS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9950, "employeeId": 1032, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6882, "employeeId": 1033, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9892, "employeeId": 1033, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6937, "employeeId": 1034, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8530, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9899, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589100}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17409, "employeeId": 1034, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-15", "customCorporateTitle": "PRINCIPAL", "customComments1": "Moving to Manager Path as per request from HRBP (Cassie Geraghty)", "customBenchmarkCode": "MK.PMDG.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7129, "employeeId": 1035, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9951, "employeeId": 1035, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7008, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8547, "employeeId": 1036, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9325, "employeeId": 1036, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12419, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17031, "employeeId": 1036, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7170, "employeeId": 1037, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9649, "employeeId": 1037, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6896, "employeeId": 1038, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9650, "employeeId": 1038, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6851, "employeeId": 1039, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9651, "employeeId": 1039, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7411, "employeeId": 1040, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "CS.FSTS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9967, "employeeId": 1040, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12420, "employeeId": 1040, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7321, "employeeId": 1041, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9652, "employeeId": 1041, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589101}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7469, "employeeId": 1042, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9809, "employeeId": 1042, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12421, "employeeId": 1042, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17097, "employeeId": 1042, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7239, "employeeId": 1043, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DION.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6945, "employeeId": 1044, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9354, "employeeId": 1044, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7633, "employeeId": 1045, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9952, "employeeId": 1045, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7534, "employeeId": 1046, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9653, "employeeId": 1046, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12422, "employeeId": 1046, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17109, "employeeId": 1046, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6942, "employeeId": 1048, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9654, "employeeId": 1048, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7031, "employeeId": 1049, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7608, "employeeId": 1050, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9655, "employeeId": 1050, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10263, "employeeId": 1050, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589102}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7047, "employeeId": 1051, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9656, "employeeId": 1051, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6974, "employeeId": 1053, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9657, "employeeId": 1053, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7444, "employeeId": 1054, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9831, "employeeId": 1054, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10469, "employeeId": 1054, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/21/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7535, "employeeId": 1055, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9658, "employeeId": 1055, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7462, "employeeId": 1056, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9863, "employeeId": 1056, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7471, "employeeId": 1057, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LG.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9355, "employeeId": 1057, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7290, "employeeId": 1058, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9659, "employeeId": 1058, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7188, "employeeId": 1059, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9798, "employeeId": 1059, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12423, "employeeId": 1059, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17056, "employeeId": 1059, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589103}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7191, "employeeId": 1060, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8435, "employeeId": 1060, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9660, "employeeId": 1060, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7400, "employeeId": 1061, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9661, "employeeId": 1061, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7465, "employeeId": 1062, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9662, "employeeId": 1062, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6885, "employeeId": 1063, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8428, "employeeId": 1063, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9663, "employeeId": 1063, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7555, "employeeId": 1064, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9664, "employeeId": 1064, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12424, "employeeId": 1064, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17116, "employeeId": 1064, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6935, "employeeId": 1065, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9362, "employeeId": 1065, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7120, "employeeId": 1066, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9665, "employeeId": 1066, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7393, "employeeId": 1067, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "CB.ASAS.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7022, "employeeId": 1068, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589104}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9666, "employeeId": 1068, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7098, "employeeId": 1069, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9667, "employeeId": 1069, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7344, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8548, "employeeId": 1073, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9340, "employeeId": 1073, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12425, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17078, "employeeId": 1073, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7441, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8502, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9953, "employeeId": 1074, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRRM.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7269, "employeeId": 1075, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9668, "employeeId": 1075, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12426, "employeeId": 1075, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17069, "employeeId": 1075, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7212, "employeeId": 1076, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9669, "employeeId": 1076, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7636, "employeeId": 1077, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7141, "employeeId": 1078, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589105}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9670, "employeeId": 1078, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7513, "employeeId": 1079, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9671, "employeeId": 1079, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10359, "employeeId": 1079, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7419, "employeeId": 1080, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9954, "employeeId": 1080, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7531, "employeeId": 1083, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9978, "employeeId": 1083, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12427, "employeeId": 1083, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6980, "employeeId": 1084, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACGA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9672, "employeeId": 1084, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7021, "employeeId": 1085, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9673, "employeeId": 1085, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7447, "employeeId": 1086, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9356, "employeeId": 1086, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6878, "employeeId": 1088, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7107, "employeeId": 1089, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8465, "employeeId": 1089, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9882, "employeeId": 1089, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589106}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7007, "employeeId": 1090, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8549, "employeeId": 1090, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9326, "employeeId": 1090, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7579, "employeeId": 1091, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SP.BOBI.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7206, "employeeId": 1092, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9674, "employeeId": 1092, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7566, "employeeId": 1093, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9675, "employeeId": 1093, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10511, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-06-01", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: adjusting level after promotion", "customBenchmarkCode": "LG.ATEL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12428, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATEL.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17118, "employeeId": 1093, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.ATEL.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7421, "employeeId": 1095, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8563, "employeeId": 1095, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9676, "employeeId": 1095, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10355, "employeeId": 1095, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7565, "employeeId": 1096, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9838, "employeeId": 1096, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7559, "employeeId": 1098, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DISM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9881, "employeeId": 1098, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DISM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589107}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10270, "employeeId": 1098, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DISM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7251, "employeeId": 1099, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9677, "employeeId": 1099, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17246, "employeeId": 1099, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6959, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8505, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9678, "employeeId": 1100, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12430, "employeeId": 1100, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17026, "employeeId": 1100, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7103, "employeeId": 1102, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9816, "employeeId": 1102, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17232, "employeeId": 1102, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7600, "employeeId": 1103, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9806, "employeeId": 1103, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7401, "employeeId": 1104, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9955, "employeeId": 1104, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11344, "employeeId": 1104, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-09", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjusted level to role, according to Stefan Kolmar.", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12431, "employeeId": 1104, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7234, "employeeId": 1105, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.MRMR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589108}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7456, "employeeId": 1107, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9679, "employeeId": 1107, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7417, "employeeId": 1109, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9886, "employeeId": 1109, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10266, "employeeId": 1109, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6968, "employeeId": 1110, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6879, "employeeId": 1111, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INWD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9680, "employeeId": 1111, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INWD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7606, "employeeId": 1112, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9681, "employeeId": 1112, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7474, "employeeId": 1113, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9682, "employeeId": 1113, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12432, "employeeId": 1113, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17099, "employeeId": 1113, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7190, "employeeId": 1114, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9818, "employeeId": 1114, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7229, "employeeId": 1115, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9683, "employeeId": 1115, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10467, "employeeId": 1115, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589109}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12433, "employeeId": 1115, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PK.PMPG.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7110, "employeeId": 1116, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9956, "employeeId": 1116, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACGA.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7446, "employeeId": 1117, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "E-STAFF", "customComments1": null, "customBenchmarkCode": "MK.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9357, "employeeId": 1117, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7015, "employeeId": 1118, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9684, "employeeId": 1118, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7280, "employeeId": 1119, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9796, "employeeId": 1119, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.DADA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7588, "employeeId": 1120, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7167, "employeeId": 1121, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7624, "employeeId": 1122, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9685, "employeeId": 1122, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7564, "employeeId": 1124, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9686, "employeeId": 1124, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7116, "employeeId": 1126, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7252, "employeeId": 1127, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9687, "employeeId": 1127, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589110}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7642, "employeeId": 1128, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9845, "employeeId": 1128, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7153, "employeeId": 1129, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9688, "employeeId": 1129, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7037, "employeeId": 1130, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9689, "employeeId": 1130, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7245, "employeeId": 1133, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9836, "employeeId": 1133, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7445, "employeeId": 1134, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9309, "employeeId": 1134, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7137, "employeeId": 1136, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8537, "employeeId": 1136, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9327, "employeeId": 1136, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6884, "employeeId": 1138, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9690, "employeeId": 1138, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7386, "employeeId": 1139, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9691, "employeeId": 1139, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7236, "employeeId": 1140, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSOS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589111}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7549, "employeeId": 1141, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7306, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8541, "employeeId": 1142, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9328, "employeeId": 1142, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12434, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17073, "employeeId": 1142, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7544, "employeeId": 1143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9692, "employeeId": 1143, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7010, "employeeId": 1144, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9693, "employeeId": 1144, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7350, "employeeId": 1145, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9694, "employeeId": 1145, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWU.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6976, "employeeId": 1147, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9905, "employeeId": 1147, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6951, "employeeId": 1148, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9695, "employeeId": 1148, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7589, "employeeId": 1149, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9834, "employeeId": 1149, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589112}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7102, "employeeId": 1150, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9696, "employeeId": 1150, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7617, "employeeId": 1152, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7551, "employeeId": 1154, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7518, "employeeId": 1155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9697, "employeeId": 1155, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6948, "employeeId": 1156, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9698, "employeeId": 1156, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7119, "employeeId": 1157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9699, "employeeId": 1157, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7242, "employeeId": 1158, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.GLSC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9358, "employeeId": 1158, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.GLSC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7100, "employeeId": 1159, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9310, "employeeId": 1159, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7416, "employeeId": 1160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9700, "employeeId": 1160, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7118, "employeeId": 1161, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9701, "employeeId": 1161, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589113}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7270, "employeeId": 1162, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6966, "employeeId": 1163, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9311, "employeeId": 1163, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.CSDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7312, "employeeId": 1168, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9702, "employeeId": 1168, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6901, "employeeId": 1169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CB.ADEA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9703, "employeeId": 1169, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CB.ADEA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7097, "employeeId": 1171, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9878, "employeeId": 1171, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589114}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6998, "employeeId": 1172, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9704, "employeeId": 1172, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6926, "employeeId": 1173, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9705, "employeeId": 1173, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6981, "employeeId": 1174, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9312, "employeeId": 1174, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7155, "employeeId": 1175, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589117}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8558, "employeeId": 1175, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9706, "employeeId": 1175, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7145, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPDD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9707, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11363, "employeeId": 1176, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-10", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Added to management path, new Corporate title and benchmark code, approved by Kent Corson.", "customBenchmarkCode": "SA.OPDD.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12435, "employeeId": 1176, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPDD.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7622, "employeeId": 1178, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9708, "employeeId": 1178, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12436, "employeeId": 1178, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17129, "employeeId": 1178, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7127, "employeeId": 1179, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9709, "employeeId": 1179, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7309, "employeeId": 1180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.ATGC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9710, "employeeId": 1180, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.ATGC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12437, "employeeId": 1180, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17074, "employeeId": 1180, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.ATGC.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6923, "employeeId": 1181, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589118}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8550, "employeeId": 1181, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7329, "employeeId": 1182, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7089, "employeeId": 1183, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7276, "employeeId": 1184, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8443, "employeeId": 1184, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "RD.GLEN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9853, "employeeId": 1184, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "RD.GLEN.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7506, "employeeId": 1185, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8441, "employeeId": 1185, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9808, "employeeId": 1185, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7283, "employeeId": 1186, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9711, "employeeId": 1186, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7435, "employeeId": 1190, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9712, "employeeId": 1190, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7124, "employeeId": 1191, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9713, "employeeId": 1191, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6893, "employeeId": 1193, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9835, "employeeId": 1193, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12438, "employeeId": 1193, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589119}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17018, "employeeId": 1193, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6925, "employeeId": 1194, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9714, "employeeId": 1194, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7298, "employeeId": 1195, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9715, "employeeId": 1195, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10491, "employeeId": 1195, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7111, "employeeId": 1198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9716, "employeeId": 1198, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7095, "employeeId": 1199, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9717, "employeeId": 1199, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7646, "employeeId": 1200, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8450, "employeeId": 1200, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9718, "employeeId": 1200, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7379, "employeeId": 1201, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8458, "employeeId": 1201, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589122}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9719, "employeeId": 1201, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7140, "employeeId": 1203, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9799, "employeeId": 1203, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7451, "employeeId": 1205, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDSD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9865, "employeeId": 1205, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDSD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7529, "employeeId": 1206, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9800, "employeeId": 1206, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9105, "employeeId": 1207, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9263, "employeeId": 1207, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7130, "employeeId": 1208, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8501, "employeeId": 1208, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9854, "employeeId": 1208, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7630, "employeeId": 1209, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9720, "employeeId": 1209, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7345, "employeeId": 1210, "customCorporateJobLevel": "", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10331, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-06-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12439, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17079, "employeeId": 1210, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589123}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7361, "employeeId": 1211, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9721, "employeeId": 1211, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASPN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7582, "employeeId": 1212, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8496, "employeeId": 1212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9722, "employeeId": 1212, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7197, "employeeId": 1213, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8468, "employeeId": 1213, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9723, "employeeId": 1213, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7294, "employeeId": 1214, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7387, "employeeId": 1216, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9817, "employeeId": 1216, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10250, "employeeId": 1216, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6891, "employeeId": 1219, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9359, "employeeId": 1219, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7277, "employeeId": 1220, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9823, "employeeId": 1220, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7516, "employeeId": 1222, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9968, "employeeId": 1222, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7259, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589124}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8551, "employeeId": 1223, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9329, "employeeId": 1223, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12440, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17066, "employeeId": 1223, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7057, "employeeId": 1224, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9724, "employeeId": 1224, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIMF.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7497, "employeeId": 1225, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6855, "employeeId": 1227, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8436, "employeeId": 1227, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9725, "employeeId": 1227, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7434, "employeeId": 1228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9846, "employeeId": 1228, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7181, "employeeId": 1229, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9726, "employeeId": 1229, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7639, "employeeId": 1230, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "CS.TRCO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9957, "employeeId": 1230, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.TRCO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589125}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12441, "employeeId": 1230, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7519, "employeeId": 1231, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9330, "employeeId": 1231, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10276, "employeeId": 1231, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustmed career path and level made on 07/10/23 by Sadie Percell", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11342, "employeeId": 1231, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-09", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjusted Corporate Title to Specialist after conversation with People Strategy Partner Lotta Almryd. Change made by Nicole Fridvall", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7429, "employeeId": 1232, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8451, "employeeId": 1232, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9727, "employeeId": 1232, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7214, "employeeId": 1233, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7341, "employeeId": 1234, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8491, "employeeId": 1234, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9958, "employeeId": 1234, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7499, "employeeId": 1235, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7493, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9728, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12362, "employeeId": 1237, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMMO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7106, "employeeId": 1238, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9861, "employeeId": 1238, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589126}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10353, "employeeId": 1238, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6979, "employeeId": 1239, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9729, "employeeId": 1239, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12442, "employeeId": 1239, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.ARIS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7308, "employeeId": 1240, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7548, "employeeId": 1243, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9871, "employeeId": 1243, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.ARIS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7502, "employeeId": 1244, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9730, "employeeId": 1244, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12443, "employeeId": 1244, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17103, "employeeId": 1244, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6917, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9731, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10249, "employeeId": 1245, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12444, "employeeId": 1245, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMMO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7314, "employeeId": 1246, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9732, "employeeId": 1246, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12445, "employeeId": 1246, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17075, "employeeId": 1246, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589127}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6940, "employeeId": 1247, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9822, "employeeId": 1247, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7063, "employeeId": 1250, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9733, "employeeId": 1250, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12446, "employeeId": 1250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17040, "employeeId": 1250, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7053, "employeeId": 1251, "customCorporateJobLevel": "L1", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ENTRY SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8557, "employeeId": 1251, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9331, "employeeId": 1251, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12447, "employeeId": 1251, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17039, "employeeId": 1251, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7078, "employeeId": 1252, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8466, "employeeId": 1252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9734, "employeeId": 1252, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7396, "employeeId": 1254, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9735, "employeeId": 1254, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12448, "employeeId": 1254, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17087, "employeeId": 1254, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6933, "employeeId": 1255, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589128}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8513, "employeeId": 1255, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9736, "employeeId": 1255, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7311, "employeeId": 1256, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DADA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7346, "employeeId": 1258, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9885, "employeeId": 1258, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6889, "employeeId": 1260, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9895, "employeeId": 1260, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7126, "employeeId": 1261, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9737, "employeeId": 1261, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6928, "employeeId": 1262, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-03", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9738, "employeeId": 1262, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10473, "employeeId": 1262, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7536, "employeeId": 1264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9739, "employeeId": 1264, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10252, "employeeId": 1264, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12449, "employeeId": 1264, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17111, "employeeId": 1264, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7333, "employeeId": 1265, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7560, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589129}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9740, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12450, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17117, "employeeId": 1266, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7424, "employeeId": 1267, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSSI.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7255, "employeeId": 1268, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9741, "employeeId": 1268, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7112, "employeeId": 1269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.ACFP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9742, "employeeId": 1269, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12451, "employeeId": 1269, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17048, "employeeId": 1269, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7052, "employeeId": 1270, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8437, "employeeId": 1270, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9743, "employeeId": 1270, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10472, "employeeId": 1270, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to level due to promotion. By Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7062, "employeeId": 1271, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9866, "employeeId": 1271, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6905, "employeeId": 1272, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9744, "employeeId": 1272, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.COCR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589130}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12452, "employeeId": 1272, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17020, "employeeId": 1272, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.COCR.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7030, "employeeId": 1273, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9745, "employeeId": 1273, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7023, "employeeId": 1274, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9746, "employeeId": 1274, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7266, "employeeId": 1276, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9747, "employeeId": 1276, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7241, "employeeId": 1277, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9748, "employeeId": 1277, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7303, "employeeId": 1278, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.OPHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7157, "employeeId": 1280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "HR.TMTA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9959, "employeeId": 1280, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7249, "employeeId": 1281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9749, "employeeId": 1281, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.COCO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12453, "employeeId": 1281, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17063, "employeeId": 1281, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.COCO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7360, "employeeId": 1283, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9750, "employeeId": 1283, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.APES.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589131}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12454, "employeeId": 1283, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17081, "employeeId": 1283, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.APES.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7123, "employeeId": 1284, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9751, "employeeId": 1284, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7207, "employeeId": 1285, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9752, "employeeId": 1285, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7430, "employeeId": 1287, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10501, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-08-28", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "By Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12455, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17092, "employeeId": 1287, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6999, "employeeId": 1288, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9753, "employeeId": 1288, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7013, "employeeId": 1289, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9754, "employeeId": 1289, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12456, "employeeId": 1289, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17032, "employeeId": 1289, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7470, "employeeId": 1290, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9755, "employeeId": 1290, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589132}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10483, "employeeId": 1290, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7071, "employeeId": 1291, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8566, "employeeId": 1291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "TE.INNS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9960, "employeeId": 1291, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7442, "employeeId": 1292, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7464, "employeeId": 1293, "customCorporateJobLevel": "L1", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ENTRY SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8552, "employeeId": 1293, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9332, "employeeId": 1293, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12457, "employeeId": 1293, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17095, "employeeId": 1293, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7553, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8487, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9801, "employeeId": 1294, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISCR.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12458, "employeeId": 1294, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17114, "employeeId": 1294, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ISCR.S5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7295, "employeeId": 1295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9856, "employeeId": 1295, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7629, "employeeId": 1296, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589133}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8553, "employeeId": 1296, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9333, "employeeId": 1296, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7028, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8426, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9360, "employeeId": 1297, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LE.AMCG.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7382, "employeeId": 1298, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8452, "employeeId": 1298, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9756, "employeeId": 1298, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7165, "employeeId": 1299, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9884, "employeeId": 1299, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7261, "employeeId": 1300, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-12-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9844, "employeeId": 1300, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10482, "employeeId": 1300, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6849, "employeeId": 1301, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7225, "employeeId": 1302, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9757, "employeeId": 1302, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7391, "employeeId": 1303, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-12-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9758, "employeeId": 1303, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7310, "employeeId": 1304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9759, "employeeId": 1304, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589134}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6850, "employeeId": 1305, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9760, "employeeId": 1305, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10260, "employeeId": 1305, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6972, "employeeId": 1306, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9761, "employeeId": 1306, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7114, "employeeId": 1307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9762, "employeeId": 1307, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10356, "employeeId": 1307, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "SPECIALIST", "customComments1": "New level as of 08/01/2023. Change made by SP", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7253, "employeeId": 1308, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9763, "employeeId": 1308, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12459, "employeeId": 1308, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17064, "employeeId": 1308, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7433, "employeeId": 1309, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.XXXX.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7163, "employeeId": 1310, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9764, "employeeId": 1310, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12460, "employeeId": 1310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17053, "employeeId": 1310, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7475, "employeeId": 1311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589135}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9765, "employeeId": 1311, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6910, "employeeId": 1312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.SODE.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9961, "employeeId": 1312, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10470, "employeeId": 1312, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6994, "employeeId": 1313, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9766, "employeeId": 1313, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7585, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12461, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17123, "employeeId": 1315, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.TMTA.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7045, "employeeId": 1316, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9767, "employeeId": 1316, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7378, "employeeId": 1317, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8554, "employeeId": 1317, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9334, "employeeId": 1317, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7328, "employeeId": 1318, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "FI.RMRC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9768, "employeeId": 1318, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.RMRC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7019, "employeeId": 1319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9769, "employeeId": 1319, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7486, "employeeId": 1320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9770, "employeeId": 1320, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589136}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10145, "employeeId": 1320, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevelled up to L6 by manager request 6/8/23, Sadie Percell", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7503, "employeeId": 1321, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9771, "employeeId": 1321, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7232, "employeeId": 1322, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9875, "employeeId": 1322, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7558, "employeeId": 1323, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9772, "employeeId": 1323, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6949, "employeeId": 1324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9313, "employeeId": 1324, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7195, "employeeId": 1325, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9773, "employeeId": 1325, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10257, "employeeId": 1325, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7572, "employeeId": 1326, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9774, "employeeId": 1326, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7213, "employeeId": 1327, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "SA.ISHC.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6963, "employeeId": 1328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.OPSO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9977, "employeeId": 1328, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7250, "employeeId": 1329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9857, "employeeId": 1329, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7099, "employeeId": 1330, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589137}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7457, "employeeId": 1331, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9775, "employeeId": 1331, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7507, "employeeId": 1333, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9776, "employeeId": 1333, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7133, "employeeId": 1334, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7162, "employeeId": 1335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9777, "employeeId": 1335, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7203, "employeeId": 1336, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6973, "employeeId": 1338, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9832, "employeeId": 1338, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7425, "employeeId": 1339, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9778, "employeeId": 1339, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SOPS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7592, "employeeId": 1340, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8509, "employeeId": 1340, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7221, "employeeId": 1341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9867, "employeeId": 1341, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7233, "employeeId": 1342, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7219, "employeeId": 1343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": "CA.COCD.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9361, "employeeId": 1343, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COCD.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6918, "employeeId": 1344, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589138}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9975, "employeeId": 1344, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDS.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7347, "employeeId": 1345, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7392, "employeeId": 1346, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8555, "employeeId": 1346, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9335, "employeeId": 1346, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7171, "employeeId": 1347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9779, "employeeId": 1347, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7619, "employeeId": 1348, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9780, "employeeId": 1348, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7136, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-12-19", "customCorporateTitle": "ADVANCED SUPPORT", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8568, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9336, "employeeId": 1349, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10275, "employeeId": 1349, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjusted career path and level made by Sadie Percell 07/10/23", "customBenchmarkCode": "FI.ACAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7121, "employeeId": 1350, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9829, "employeeId": 1350, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7075, "employeeId": 1351, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7452, "employeeId": 1352, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9781, "employeeId": 1352, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.UUUE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10485, "employeeId": 1352, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.UUUE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7093, "employeeId": 1353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.ARIS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589139}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9811, "employeeId": 1353, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.ARIS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9087, "employeeId": 1354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9264, "employeeId": 1354, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10476, "employeeId": 1354, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8454, "employeeId": 1355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9782, "employeeId": 1355, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10477, "employeeId": 1355, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment to job level by Sadie Percell.", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7370, "employeeId": 1357, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9783, "employeeId": 1357, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7638, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.COSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9784, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.COSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12462, "employeeId": 1358, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.COSC.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7574, "employeeId": 1360, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "JUNIOR SUPPORT", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8556, "employeeId": 1360, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Senior Administrator", "customComments1": null, "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9337, "employeeId": 1360, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9090, "employeeId": 1361, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9265, "employeeId": 1361, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10479, "employeeId": 1361, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7570, "employeeId": 1362, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9785, "employeeId": 1362, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589140}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10248, "employeeId": 1362, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6991, "employeeId": 1363, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9786, "employeeId": 1363, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 6962, "employeeId": 1364, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9787, "employeeId": 1364, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8427, "employeeId": 1365, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": null, "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9962, "employeeId": 1365, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7064, "employeeId": 1366, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "SA.ISMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9963, "employeeId": 1366, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISMF.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7077, "employeeId": 1367, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7517, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8480, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9788, "employeeId": 1368, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SDCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 7258, "employeeId": 1369, "customCorporateJobLevel": "-", "customEffectiveDate-JobLeveling": "2022-11-01", "customCorporateTitle": "-", "customComments1": null, "customBenchmarkCode": "-", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8442, "employeeId": 1371, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9789, "employeeId": 1371, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10478, "employeeId": 1371, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8526, "employeeId": 1372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9790, "employeeId": 1372, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMDG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589141}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10258, "employeeId": 1372, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMDG.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8529, "employeeId": 1373, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "DIRECTOR", "customComments1": null, "customBenchmarkCode": "MK.PMBM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9964, "employeeId": 1373, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMBM.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9088, "employeeId": 1374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9266, "employeeId": 1374, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10480, "employeeId": 1374, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8532, "employeeId": 1375, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "PRINCIPAL", "customComments1": null, "customBenchmarkCode": "MK.DION.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9791, "employeeId": 1375, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10251, "employeeId": 1375, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment made upon request by Cassie on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9089, "employeeId": 1376, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9267, "employeeId": 1376, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8533, "employeeId": 1378, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9792, "employeeId": 1378, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589142}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10247, "employeeId": 1378, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "MK.PMMO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9110, "employeeId": 1379, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9292, "employeeId": 1379, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9074, "employeeId": 1381, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9268, "employeeId": 1381, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9086, "employeeId": 1382, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9269, "employeeId": 1382, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path\nLevel adjustment May 17, 2023 by Sadie Percell", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8515, "employeeId": 1383, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9793, "employeeId": 1383, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PMPM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12463, "employeeId": 1383, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17036, "employeeId": 1383, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8536, "employeeId": 1384, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR MANAGER", "customComments1": null, "customBenchmarkCode": "SA.ISTL.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9965, "employeeId": 1384, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9081, "employeeId": 1385, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9270, "employeeId": 1385, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11588, "employeeId": 1385, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-11-24", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DION.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9091, "employeeId": 1386, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589143}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9271, "employeeId": 1386, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.PGPG.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8567, "employeeId": 1387, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "Advanced Administrator", "customComments1": null, "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9338, "employeeId": 1387, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Advanced Administrator", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACAP.S4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9111, "employeeId": 1389, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "E-STAFF", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9260, "employeeId": 1389, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "E-STAFF", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.GLHD.E5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9076, "employeeId": 1390, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "DIRECTOR", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.DIWC.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9293, "employeeId": 1390, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.DIWC.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9085, "employeeId": 1391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9272, "employeeId": 1391, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10481, "employeeId": 1391, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment to level by Sadie Percell", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 8469, "employeeId": 1392, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-01-01", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9794, "employeeId": 1392, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9082, "employeeId": 1393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9273, "employeeId": 1393, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPDD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9083, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell\nRadford job code only run up to Manager level 6 (M6).", "customBenchmarkCode": "FI.ACFP.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9296, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "FI.ACFP.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12464, "employeeId": 1394, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFX.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9109, "employeeId": 1395, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9274, "employeeId": 1395, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589144}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9104, "employeeId": 1397, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9275, "employeeId": 1397, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9103, "employeeId": 1398, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9276, "employeeId": 1398, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ASRS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9077, "employeeId": 1399, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.OPSO.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9261, "employeeId": 1399, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.OPSO.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9084, "employeeId": 1402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Benchmark role is combination of two Radford job codes since no exact match was found in Radford. \nEditor: Sadie Percell", "customBenchmarkCode": "LG.NAPL.P3/ SA.OPSA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9254, "employeeId": 1402, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "LG.NAPL.P3/ SA.OPSA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12465, "employeeId": 1402, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "LG.NAPL.P4/ SA.OPSA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17052, "employeeId": 1402, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "LG.NAPL.P4/ SA.OPSA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9112, "employeeId": 1403, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.ISTL.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9277, "employeeId": 1403, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "JUNIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.ISTL.P1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9106, "employeeId": 1404, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9295, "employeeId": 1404, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "PS.PSIM.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12466, "employeeId": 1404, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.M2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17294, "employeeId": 1405, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9080, "employeeId": 1406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9291, "employeeId": 1406, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "MK.PMMO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589145}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9107, "employeeId": 1407, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9262, "employeeId": 1407, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9100, "employeeId": 1408, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9294, "employeeId": 1408, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "Regional Vice President/ Senior Director", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9101, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9278, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12467, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17119, "employeeId": 1411, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9102, "employeeId": 1412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9279, "employeeId": 1412, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9099, "employeeId": 1413, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9280, "employeeId": 1413, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9096, "employeeId": 1414, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9281, "employeeId": 1414, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12468, "employeeId": 1414, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17086, "employeeId": 1414, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9092, "employeeId": 1415, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589146}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9282, "employeeId": 1415, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9098, "employeeId": 1416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9283, "employeeId": 1416, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10459, "employeeId": 1417, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-16", "customCorporateTitle": "SPECIALIST", "customComments1": "Added by Sadie Percell 2023-08-16", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9078, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "PRINCIPAL", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9284, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12469, "employeeId": 1418, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CA.COPR.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9095, "employeeId": 1419, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9285, "employeeId": 1419, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12470, "employeeId": 1419, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17071, "employeeId": 1419, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9097, "employeeId": 1420, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9286, "employeeId": 1420, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12471, "employeeId": 1420, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17104, "employeeId": 1420, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.ASCD.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9093, "employeeId": 1421, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9287, "employeeId": 1421, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9094, "employeeId": 1422, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589147}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9288, "employeeId": 1422, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "EN.ASCD.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9108, "employeeId": 1424, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9289, "employeeId": 1424, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10074, "employeeId": 1425, "customCorporateJobLevel": "L11", "customEffectiveDate-JobLeveling": "2023-05-26", "customCorporateTitle": "E-STAFF", "customComments1": "Added by Sadie Percell", "customBenchmarkCode": "EN.PGHC.E4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12472, "employeeId": 1430, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17055, "employeeId": 1430, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "TE.INNS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12473, "employeeId": 1444, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17034, "employeeId": 1444, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9079, "employeeId": 1445, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-03-31", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Editor: Sadie Percell", "customBenchmarkCode": "CA.COPR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 9290, "employeeId": 1445, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-05-12", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment: Adding Corporate Career Path", "customBenchmarkCode": "CA.COPR.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10268, "employeeId": 1445, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment made upon request on 07/10/23 by Sadie Percell", "customBenchmarkCode": "CA.COPR.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10261, "employeeId": 1448, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12366, "employeeId": 1449, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17080, "employeeId": 1449, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10144, "employeeId": 1451, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added by Sadie Percell 6/8/2023", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12475, "employeeId": 1457, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17046, "employeeId": 1457, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12476, "employeeId": 1458, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DIWC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17096, "employeeId": 1458, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "MK.DIWC.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12477, "employeeId": 1460, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589148}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17067, "employeeId": 1460, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12478, "employeeId": 1462, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17127, "employeeId": 1462, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11343, "employeeId": 1464, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added Job Level after conversation with People Strategy Partner Lotta Almryd. Change made by Nicole Fridvall", "customBenchmarkCode": "FI.ACGA.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12479, "employeeId": 1467, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10458, "employeeId": 1471, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-16", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Added by Sadie Percell 2023-08-16", "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12480, "employeeId": 1473, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17049, "employeeId": 1473, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSPO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12481, "employeeId": 1475, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSE.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17258, "employeeId": 1477, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-05", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10382, "employeeId": 1479, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-09-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": "HR.GLGL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12482, "employeeId": 1480, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SP.PLSL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17051, "employeeId": 1480, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SP.PLSL.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10332, "employeeId": 1497, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-06-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12483, "employeeId": 1497, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11057, "employeeId": 1498, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-06-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12369, "employeeId": 1498, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPM.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12484, "employeeId": 1503, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17083, "employeeId": 1503, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.TRCO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11059, "employeeId": 1504, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-07-10", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589149}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12485, "employeeId": 1504, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17050, "employeeId": 1504, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSC.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12486, "employeeId": 1506, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17021, "employeeId": 1506, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11058, "employeeId": 1507, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-07-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12487, "employeeId": 1507, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12488, "employeeId": 1514, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11060, "employeeId": 1515, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-07-17", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12489, "employeeId": 1515, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Senior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.BEBE.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11065, "employeeId": 1521, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12490, "employeeId": 1521, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17091, "employeeId": 1521, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "FI.ACFP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11067, "employeeId": 1522, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-08-07", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12370, "employeeId": 1522, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.CBCB.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11063, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12491, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17084, "employeeId": 1524, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11064, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589150}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12382, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17134, "employeeId": 1525, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11061, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-24", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12383, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17022, "employeeId": 1526, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11062, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-07-31", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12492, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17014, "employeeId": 1527, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11072, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12493, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17100, "employeeId": 1528, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11066, "employeeId": 1529, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-08-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12494, "employeeId": 1529, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11073, "employeeId": 1534, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12495, "employeeId": 1534, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17128, "employeeId": 1534, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589151}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11071, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12496, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17037, "employeeId": 1535, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11070, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-08-21", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12497, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17028, "employeeId": 1536, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 10497, "employeeId": 1539, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-22", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "TE.DMDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17137, "employeeId": 1539, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "TE.DMDB.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17240, "employeeId": 1540, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-05", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11068, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12388, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.APAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17105, "employeeId": 1542, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.APAP.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11069, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-14", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12498, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17122, "employeeId": 1543, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12396, "employeeId": 1545, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17047, "employeeId": 1545, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12499, "employeeId": 1546, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17113, "employeeId": 1546, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589152}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11074, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-08-28", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12500, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17130, "employeeId": 1548, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.OPSO.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11075, "employeeId": 1551, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-09-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12410, "employeeId": 1551, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.DION.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11076, "employeeId": 1552, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-09-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12501, "employeeId": 1552, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.M4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11084, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-10-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12502, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17090, "employeeId": 1553, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "PRINCIPAL", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11103, "employeeId": 1555, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-10-09", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12503, "employeeId": 1555, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12417, "employeeId": 1556, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17136, "employeeId": 1556, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11081, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12504, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17065, "employeeId": 1557, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "HR.GLBP.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11079, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12505, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17015, "employeeId": 1558, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589153}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11082, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12506, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17098, "employeeId": 1559, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11077, "employeeId": 1560, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-09-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12507, "employeeId": 1560, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11080, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12508, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17125, "employeeId": 1561, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11078, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-09", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12509, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17025, "employeeId": 1562, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11083, "employeeId": 1563, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SPECIALIST", "customComments1": "Added by Nicole Fridvall after request from People Partner Lotta Almryd", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12510, "employeeId": 1565, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.PGMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11036, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12511, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17089, "employeeId": 1566, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11050, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12512, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17088, "employeeId": 1567, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11043, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589154}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12513, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17110, "employeeId": 1568, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11042, "employeeId": 1569, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12514, "employeeId": 1569, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17027, "employeeId": 1569, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "PS.PSIM.P5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11104, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12418, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17115, "employeeId": 1575, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11147, "employeeId": 1576, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-30", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12515, "employeeId": 1576, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17019, "employeeId": 1576, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11162, "employeeId": 1577, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-10-23", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12516, "employeeId": 1577, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11140, "employeeId": 1578, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12429, "employeeId": 1578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17133, "employeeId": 1578, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "CS.FSTS.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11339, "employeeId": 1579, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589155}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11153, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-10-30", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12517, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17121, "employeeId": 1580, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11171, "employeeId": 1582, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Added by Nicole Fridvall after request from People Partner Lotta Almryd", "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11211, "employeeId": 1584, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11210, "employeeId": 1585, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15958, "employeeId": 1585, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.GLMF.E1", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11219, "employeeId": 1587, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11223, "employeeId": 1588, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-11-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12518, "employeeId": 1588, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11258, "employeeId": 1589, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17259, "employeeId": 1589, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "Sr. Specialist", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.FSDN.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11264, "employeeId": 1591, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12519, "employeeId": 1591, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11319, "employeeId": 1592, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-11-13", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12520, "employeeId": 1592, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "Junior Administrator", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.ISTL.S2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11387, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-11-20", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12521, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589156}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17043, "employeeId": 1595, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SPECIALIST", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.FSDN.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11360, "employeeId": 1597, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17260, "employeeId": 1597, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "SPECIALIST", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.ASRS.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15959, "employeeId": 1600, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "DIRECTOR", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "MK.PMPM.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11374, "employeeId": 1601, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11391, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-11-20", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12522, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17057, "employeeId": 1602, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CRCS.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11380, "employeeId": 1605, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17261, "employeeId": 1605, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "Sr. Administrator", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "SA.ISTL.S3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11395, "employeeId": 1606, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "VICE PRESIDENT", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15960, "employeeId": 1606, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "VICE PRESIDENT", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.FSDS.M5", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11396, "employeeId": 1607, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11399, "employeeId": 1608, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11409, "employeeId": 1609, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-03", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11413, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-11-27", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12523, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CSCR.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17044, "employeeId": 1610, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "SA.CSCR.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11420, "employeeId": 1612, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589157}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11438, "employeeId": 1613, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11442, "employeeId": 1614, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-13", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11447, "employeeId": 1615, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11449, "employeeId": 1617, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15961, "employeeId": 1617, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "SENIOR MANAGER", "customComments1": "Adjustment per Total Rewards Audit", "customBenchmarkCode": "SA.CRCS.M3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11453, "employeeId": 1618, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17262, "employeeId": 1618, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "SPECIALIST", "customComments1": "Added missing fields per Audit", "customBenchmarkCode": "HR.TMTA.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11462, "employeeId": 1620, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15957, "employeeId": 1622, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-07", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11568, "employeeId": 1623, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11521, "employeeId": 1624, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-06", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11550, "employeeId": 1625, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11558, "employeeId": 1626, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11564, "employeeId": 1627, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11555, "employeeId": 1628, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11569, "employeeId": 1629, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16904, "employeeId": 1629, "customCorporateJobLevel": "L8", "customEffectiveDate-JobLeveling": "2024-02-07", "customCorporateTitle": "SENIOR DIRECTOR", "customComments1": "Correction of job level & career path", "customBenchmarkCode": "EN.PGPG.M6", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11586, "employeeId": 1630, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11611, "employeeId": 1637, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2023-12-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589158}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15990, "employeeId": 1638, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11617, "employeeId": 1639, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11626, "employeeId": 1640, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 11630, "employeeId": 1641, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15943, "employeeId": 1643, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-01-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 12527, "employeeId": 1644, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-01-15", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.TPTW.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 13735, "employeeId": 1645, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-22", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17013, "employeeId": 1645, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 14706, "employeeId": 1646, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-29", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16002, "employeeId": 1647, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15927, "employeeId": 1648, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-01-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 15934, "employeeId": 1650, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-01-16", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16007, "employeeId": 1653, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16030, "employeeId": 1654, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-01-29", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17012, "employeeId": 1654, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-22", "customCorporateTitle": "", "customComments1": "Adjustment per Corp Career Path Audit", "customBenchmarkCode": "", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16034, "employeeId": 1655, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16041, "employeeId": 1656, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16052, "employeeId": 1657, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16057, "employeeId": 1658, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589159}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16064, "employeeId": 1659, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-02-12", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16068, "employeeId": 1660, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16074, "employeeId": 1661, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16081, "employeeId": 1662, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16082, "employeeId": 1664, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-19", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16860, "employeeId": 1665, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16847, "employeeId": 1666, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16853, "employeeId": 1667, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16855, "employeeId": 1668, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16881, "employeeId": 1669, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16885, "employeeId": 1670, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16887, "employeeId": 1671, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16908, "employeeId": 1672, "customCorporateJobLevel": "L3", "customEffectiveDate-JobLeveling": "2024-03-05", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16910, "employeeId": 1673, "customCorporateJobLevel": "L7", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16917, "employeeId": 1674, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16921, "employeeId": 1675, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16947, "employeeId": 1676, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-06", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16928, "employeeId": 1677, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16952, "employeeId": 1680, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-12", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16979, "employeeId": 1681, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SENIOR SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.PGPG.P4", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589160}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16959, "employeeId": 1682, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16964, "employeeId": 1683, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16970, "employeeId": 1684, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-02-26", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17142, "employeeId": 1685, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-04", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16984, "employeeId": 1686, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 16989, "employeeId": 1687, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-03", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17196, "employeeId": 1689, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17203, "employeeId": 1691, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-01", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17208, "employeeId": 1692, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-03-11", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17221, "employeeId": 1694, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-28", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17227, "employeeId": 1696, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-04-08", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17273, "employeeId": 1698, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-03-18", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17280, "employeeId": 1699, "customCorporateJobLevel": "L10", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17292, "employeeId": 1701, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-22", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17315, "employeeId": 1705, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-05-20", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17320, "employeeId": 1706, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-13", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17327, "employeeId": 1707, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-03-25", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17333, "employeeId": 1708, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17338, "employeeId": 1709, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17350, "employeeId": 1710, "customCorporateJobLevel": "L6", "customEffectiveDate-JobLeveling": "2024-04-01", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17356, "employeeId": 1711, "customCorporateJobLevel": "L4", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "SENIOR ASSOCIATE", "customComments1": null, "customBenchmarkCode": "EN.SODE.P2", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589161}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17362, "employeeId": 1712, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-24", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17402, "employeeId": 1720, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-06-17", "customCorporateTitle": "SPECIALIST", "customComments1": null, "customBenchmarkCode": "EN.SODE.P3", "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17407, "employeeId": 1721, "customCorporateJobLevel": "L2", "customEffectiveDate-JobLeveling": "2024-04-02", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} -{"type": "RECORD", "record": {"stream": "tables_stream", "data": {"id": 17415, "employeeId": 1722, "customCorporateJobLevel": "L5", "customEffectiveDate-JobLeveling": "2024-05-07", "customCorporateTitle": "", "customComments1": null, "customBenchmarkCode": null, "knoetic_table_name": "customJobLeveling"}, "emitted_at": 1710872589162}} -{"type": "LOG", "log": {"level": "INFO", "message": "Read 19432 records from tables_stream stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Marking stream tables_stream as STOPPED"}} -{"type": "TRACE", "trace": {"type": "STREAM_STATUS", "emitted_at": 1710872589785.84, "stream_status": {"stream_descriptor": {"name": "tables_stream", "namespace": null}, "status": "COMPLETE"}}} -{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing tables_stream"}} -{"type": "LOG", "log": {"level": "INFO", "message": "SourceBambooHr runtimes:\nSyncing stream custom_reports_stream 0:00:13.229267\nSyncing stream meta_fields_stream 0:00:00.706214\nSyncing stream meta_tables_stream 0:00:00.390416\nSyncing stream tables_stream 0:00:11.121396"}} -{"type": "LOG", "log": {"level": "INFO", "message": "Finished syncing SourceBambooHr"}} diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json index b75a8f2a7baa..6d2085239b26 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json @@ -1,7 +1,8 @@ { + "$schema": "http://json-schema.org/draft-07/schema#", "type": [ "object"], - "required": [], "additionalProperties": true, + "required": [], "properties": { "acaStatus": { "type": ["null", "string"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/employees_directory_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/employees_directory_stream.json index 0cd1291f31f3..0e856bba62ca 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/employees_directory_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/employees_directory_stream.json @@ -1,5 +1,7 @@ { + "$schema": "http://json-schema.org/draft-07/schema#", "type": ["null", "object"], + "additionalProperties": true, "required": [], "properties": { "id": { diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json index b17392bcbfcc..0b7e7ca4f43f 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json @@ -1,4 +1,5 @@ { + "$schema": "http://json-schema.org/draft-07/schema#", "type": ["object"], "required": ["id", "name", "type"], "properties": { diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json index 1058b84749b7..6aafafd68427 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_tables_stream.json @@ -1,5 +1,10 @@ { + "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", + "required": [ + "alias", + "fields" + ], "properties": { "alias": { "type": [ @@ -33,10 +38,6 @@ ] } ] - }, - "required": [ - "alias", - "fields" - ] + } } } \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 18cc94ce4aef..66b0033d9a67 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -1,13 +1,14 @@ { + "$schema": "http://json-schema.org/draft-07/schema#", "type": [ "object"], - "required": ["id","employeeId"], "additionalProperties": true, + "required": ["id","employeeId"], "properties": { "id": { - "type": ["int", "string"] + "type": ["integer", "string"] }, "employeeId": { - "type": ["int", "string"] + "type": ["integer", "string"] } } } From 3c6384a4f649850c879c24dedf8ae78db2877b75 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Tue, 19 Mar 2024 16:24:47 -0400 Subject: [PATCH 10/21] More cleanup. --- .../integration_tests/configured_catalog.json | 6 ++++-- .../schemas/meta_fields_stream.json | 2 +- .../source_bamboo_hr/schemas/tables_stream.json | 17 ++++++++++++----- .../source-bamboo-hr/source_bamboo_hr/source.py | 5 +++++ 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json index 827089f4d23d..1fdde61fe203 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json @@ -65,6 +65,7 @@ "type": [ "object" ], + "additionalProperties": true, "required": [], "properties": { "acaStatus": { @@ -620,17 +621,18 @@ "type": [ "object" ], + "additionalProperties": true, "required": [], "properties": { "id": { "type": [ - "int", + "integer", "string" ] }, "employeeId": { "type": [ - "int", + "integer", "string" ] } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json index 0b7e7ca4f43f..e714473e4560 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/meta_fields_stream.json @@ -4,7 +4,7 @@ "required": ["id", "name", "type"], "properties": { "id": { - "type": ["string"] + "type": ["string","integer"] }, "name": { "type": ["string"] diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 66b0033d9a67..7c5956b53dde 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -1,14 +1,21 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "type": [ "object"], + "type": [ + "object" + ], "additionalProperties": true, - "required": ["id","employeeId"], + "required": [ + "id", + "employeeId" + ], "properties": { "id": { - "type": ["integer", "string"] + "type": [ "string", "integer" ] }, "employeeId": { - "type": ["integer", "string"] + "type": [ + "string", "integer" + ] } } -} +} \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index aa065735a815..d769802a5f32 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -111,6 +111,11 @@ def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: target_table = stream_slice["table"] return f"employees/all/tables/{target_table}" + # def get_json_schema(self) -> Mapping[str, Any]: + # _schema = super().get_json_schema() + # self.logger.info(f"Stream `{self.name}`. Schema: {_schema}") + # return _schema + def parse_response( self, response: requests.Response, From 8894e91e2a5fd39be7d94055fcc0de9609ae69ad Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 10:52:35 -0400 Subject: [PATCH 11/21] More tweaks to try and get custom data to flow through. --- .../schemas/tables_stream.json | 3 + .../source_bamboo_hr/source.py | 80 ++++++++++++++++--- 2 files changed, 71 insertions(+), 12 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 7c5956b53dde..426febcff156 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -16,6 +16,9 @@ "type": [ "string", "integer" ] + }, + "knoetic_table_name": { + "type": [ "string"] } } } \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index d769802a5f32..f59b9cc20f00 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -53,8 +53,6 @@ def next_page_token( class MetaTablesStream(BambooHrStream): - """.bumpversion.cfg""" - primary_key = None def path(self, **kwargs) -> str: @@ -76,6 +74,21 @@ class BambooMetaField(NamedTuple): alias: Optional[str] = None deprecated: Optional[bool] = None +class BambooMetaTableField(NamedTuple): + """Immutable typed representation of the field data returned from the meta/tables + endpoint.""" + id: int + name: str + alias: str + type: str + +class BambooMetaTable(NamedTuple): + """Immutable typed representation of what is returned from the meta/tables + endpoint.""" + + alias: str + fields: List[BambooMetaTableField] + class MetaFieldsStream(BambooHrStream): primary_key = None @@ -88,7 +101,6 @@ def parse_response( ) -> Iterable[Mapping]: yield from response.json() - class TablesStream(BambooHrStream): primary_key = None raise_on_http_errors = False @@ -96,6 +108,53 @@ class TablesStream(BambooHrStream): requests.codes.NOT_FOUND, ] + def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> BambooMetaTable: + return BambooMetaTable( + alias=raw_meta_table.get("alias"), + fields=[ + BambooMetaTableField(**field) for field in raw_meta_table.get("fields") + ], + ) + + # def get_json_schema(self) -> Mapping[str, Any]: + # """ + # 1. Get access to the available tables. + # 2. Construct the Json Schema from the available tables. + # Essentially, + # """ + + # available_tables = self.config.get("available_tables") + # typed_available_tables = map(self._convert_raw_meta_table_to_typed, available_tables) + + # if self._schema is None: + # available_tables = self.config.get("available_tables") + # schema = { + # "type": "object", + # "properties": { + # "knoetic_table_name": {"type": "string"}, + # }, + # } + + # for table in typed_available_tables: + # table_name = table.get("alias") + # fields = table.get("fields") + # schema["properties"][table_name] = { + # "type": "object", + # "properties": { + # "knoetic_table_name": {"type": "string"}, + # }, + # } + # for field in fields: + # field_name = field.get("alias") + # field_type = field.get("type") + # schema["properties"][table_name]["properties"][field_name] = { + # "type": field_type + # } + + # self._schema = schema + + # return self._schema + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self._schema = None @@ -111,22 +170,19 @@ def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: target_table = stream_slice["table"] return f"employees/all/tables/{target_table}" - # def get_json_schema(self) -> Mapping[str, Any]: - # _schema = super().get_json_schema() - # self.logger.info(f"Stream `{self.name}`. Schema: {_schema}") - # return _schema - def parse_response( self, response: requests.Response, stream_state: Mapping[str, Any] = None, + stream_slice: Mapping[str, Any] = None, **kwargs, ) -> Iterable[Mapping]: + table_name = stream_slice["table"] try: # This will raise an exception if the response is not 2xx response.raise_for_status() # If we're here, no issue. - yield from response.json() + yield from (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) except HTTPError as e: # If it's one of the status codes we're skipping, log a warning. # Otherwise, raise the exception. @@ -147,12 +203,12 @@ def read_records( stream_slice: Mapping[str, Any] = None, stream_state: Mapping[str, Any] = None, ) -> Iterable[Mapping[str, Any]]: - table_name = stream_slice["table"] + # table_name = stream_slice["table"] for record in super().read_records( sync_mode, cursor_field, stream_slice, stream_state ): - # Augment the record with the table name. - record["knoetic_table_name"] = table_name + # # Augment the record with the table name. + # record["knoetic_table_name"] = table_name yield record From 02f2013f00b661920e903ad86779937251478812 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 10:53:52 -0400 Subject: [PATCH 12/21] Easier than tweaking docker build number --- .../connectors/source-bamboo-hr/source_bamboo_hr/source.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index f59b9cc20f00..e92eeb83846e 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -321,6 +321,8 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) ) + self.logger.inf("Current version: 1") + config["available_fields"] = available_fields config["available_tables"] = available_tables From ff44d2630fd459bd6bdb81e38bac31ba14793cef Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 13:00:58 -0400 Subject: [PATCH 13/21] More logging. --- .../source_bamboo_hr/schemas/tables_stream.json | 3 ++- .../connectors/source-bamboo-hr/source_bamboo_hr/source.py | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 426febcff156..b0c753c0d29c 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -6,7 +6,8 @@ "additionalProperties": true, "required": [ "id", - "employeeId" + "employeeId", + "knoetic_table_name" ], "properties": { "id": { diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index e92eeb83846e..6014e5dc4b95 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -182,7 +182,10 @@ def parse_response( # This will raise an exception if the response is not 2xx response.raise_for_status() # If we're here, no issue. - yield from (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) + new_record = (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) + for record in new_record: + print("New record: ", record) + yield from new_record except HTTPError as e: # If it's one of the status codes we're skipping, log a warning. # Otherwise, raise the exception. @@ -321,7 +324,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) ) - self.logger.inf("Current version: 1") + print("Current version: 1") config["available_fields"] = available_fields config["available_tables"] = available_tables From a07d9c1ba6d058fb2e17e0f72207d835053851c3 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 13:13:08 -0400 Subject: [PATCH 14/21] More tweaks. --- .../connectors/source-bamboo-hr/source_bamboo_hr/source.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 6014e5dc4b95..a29e4c79a184 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -185,7 +185,8 @@ def parse_response( new_record = (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) for record in new_record: print("New record: ", record) - yield from new_record + yield record + # yield from new_record except HTTPError as e: # If it's one of the status codes we're skipping, log a warning. # Otherwise, raise the exception. @@ -324,7 +325,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) ) - print("Current version: 1") + print("Current version: 3") config["available_fields"] = available_fields config["available_tables"] = available_tables From f9d8857d6a16931d15c0a229771e051d5ba1e911 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 15:33:39 -0400 Subject: [PATCH 15/21] More tweaks. --- .../schemas/tables_stream.json | 2 +- .../source_bamboo_hr/source.py | 21 +++++++++++++++---- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index b0c753c0d29c..514be2d2f757 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -3,7 +3,7 @@ "type": [ "object" ], - "additionalProperties": true, + "additionalProperties": { "type" : "string" }, "required": [ "id", "employeeId", diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index a29e4c79a184..cd9e9837c0c8 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -116,20 +116,32 @@ def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> Bamboo ], ) + # def _create_one_of_schema(bamboo_meta_table: BambooMetaTable) -> Mapping[str, Any]: + # schema = { + # "" : "" + # } + # return schema + # def get_json_schema(self) -> Mapping[str, Any]: # """ # 1. Get access to the available tables. # 2. Construct the Json Schema from the available tables. - # Essentially, + # """ # available_tables = self.config.get("available_tables") # typed_available_tables = map(self._convert_raw_meta_table_to_typed, available_tables) + # tables.forEach { table -> + + + # } + # if self._schema is None: # available_tables = self.config.get("available_tables") # schema = { - # "type": "object", + # "$schema": "http://json-schema.org/draft-07/schema#", + # "type": ["object"] , # "properties": { # "knoetic_table_name": {"type": "string"}, # }, @@ -157,7 +169,8 @@ def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> Bamboo def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self._schema = None + schema = self.get_json_schema() + print(f"The schema is {schema}") def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # Each table has an 'alias' field that we use to grab @@ -184,7 +197,7 @@ def parse_response( # If we're here, no issue. new_record = (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) for record in new_record: - print("New record: ", record) + # print("New record: ", record) yield record # yield from new_record except HTTPError as e: From 3a57682708fc62b0d16853d3b88ba57a07660812 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Wed, 20 Mar 2024 16:50:17 -0400 Subject: [PATCH 16/21] At this point, tables is working. In the parquet version of things, there's columns for everything. Non-string data gets put into _airbyte_additional_properties within the column. --- .../source_bamboo_hr/source.py | 111 ++++++++---------- 1 file changed, 48 insertions(+), 63 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index cd9e9837c0c8..9777aa4704c0 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -74,6 +74,19 @@ class BambooMetaField(NamedTuple): alias: Optional[str] = None deprecated: Optional[bool] = None + + +class MetaFieldsStream(BambooHrStream): + primary_key = None + + def path(self, **kwargs) -> str: + return "meta/fields" + + def parse_response( + self, response: requests.Response, **kwargs + ) -> Iterable[Mapping]: + yield from response.json() + class BambooMetaTableField(NamedTuple): """Immutable typed representation of the field data returned from the meta/tables endpoint.""" @@ -89,18 +102,6 @@ class BambooMetaTable(NamedTuple): alias: str fields: List[BambooMetaTableField] - -class MetaFieldsStream(BambooHrStream): - primary_key = None - - def path(self, **kwargs) -> str: - return "meta/fields" - - def parse_response( - self, response: requests.Response, **kwargs - ) -> Iterable[Mapping]: - yield from response.json() - class TablesStream(BambooHrStream): primary_key = None raise_on_http_errors = False @@ -108,6 +109,7 @@ class TablesStream(BambooHrStream): requests.codes.NOT_FOUND, ] + @staticmethod def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> BambooMetaTable: return BambooMetaTable( alias=raw_meta_table.get("alias"), @@ -116,56 +118,39 @@ def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> Bamboo ], ) - # def _create_one_of_schema(bamboo_meta_table: BambooMetaTable) -> Mapping[str, Any]: - # schema = { - # "" : "" - # } - # return schema - - # def get_json_schema(self) -> Mapping[str, Any]: - # """ - # 1. Get access to the available tables. - # 2. Construct the Json Schema from the available tables. - - # """ - - # available_tables = self.config.get("available_tables") - # typed_available_tables = map(self._convert_raw_meta_table_to_typed, available_tables) - - # tables.forEach { table -> - - - # } - - # if self._schema is None: - # available_tables = self.config.get("available_tables") - # schema = { - # "$schema": "http://json-schema.org/draft-07/schema#", - # "type": ["object"] , - # "properties": { - # "knoetic_table_name": {"type": "string"}, - # }, - # } - - # for table in typed_available_tables: - # table_name = table.get("alias") - # fields = table.get("fields") - # schema["properties"][table_name] = { - # "type": "object", - # "properties": { - # "knoetic_table_name": {"type": "string"}, - # }, - # } - # for field in fields: - # field_name = field.get("alias") - # field_type = field.get("type") - # schema["properties"][table_name]["properties"][field_name] = { - # "type": field_type - # } - - # self._schema = schema - - # return self._schema + + def get_json_schema(self) -> Mapping[str, Any]: + available_tables = map(lambda table: TablesStream._convert_raw_meta_table_to_typed(table), self.config["available_tables"]) + schema = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": [ + "object" + ], + "required": [ + "id", + "employeeId", + "knoetic_table_name" + ], + "properties": { + "id": { + "type": [ "string", "integer" ] + }, + "employeeId": { + "type": [ "string", "integer" ] + }, + "knoetic_table_name": { + "type": [ "string"] + } + } + } + + for table in available_tables: + for field in table.fields: + schema["properties"][field.alias] = { + "type": [ "string", "null", "object" ] + } + + return schema def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -338,7 +323,7 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]: MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) ) - print("Current version: 3") + print("Current version: 4") config["available_fields"] = available_fields config["available_tables"] = available_tables From 215e774811e9f1a28dd546ccca85661b5632f72b Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Thu, 21 Mar 2024 10:13:11 -0400 Subject: [PATCH 17/21] More modification of schema based on what we get from meta tables endpoint. --- .../source_bamboo_hr/source.py | 134 +++++++++++------- .../source_bamboo_hr/utils.py | 20 ++- 2 files changed, 102 insertions(+), 52 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 9777aa4704c0..8f67c4ed95f3 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -21,6 +21,7 @@ ) from .utils import ( chunk_iterable, + get_json_schema_for_field_type, ) @@ -75,7 +76,6 @@ class BambooMetaField(NamedTuple): deprecated: Optional[bool] = None - class MetaFieldsStream(BambooHrStream): primary_key = None @@ -87,14 +87,17 @@ def parse_response( ) -> Iterable[Mapping]: yield from response.json() + class BambooMetaTableField(NamedTuple): """Immutable typed representation of the field data returned from the meta/tables endpoint.""" + id: int name: str alias: str type: str + class BambooMetaTable(NamedTuple): """Immutable typed representation of what is returned from the meta/tables endpoint.""" @@ -102,6 +105,7 @@ class BambooMetaTable(NamedTuple): alias: str fields: List[BambooMetaTableField] + class TablesStream(BambooHrStream): primary_key = None raise_on_http_errors = False @@ -110,7 +114,9 @@ class TablesStream(BambooHrStream): ] @staticmethod - def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> BambooMetaTable: + def _convert_raw_meta_table_to_typed( + raw_meta_table: Mapping[str, Any] + ) -> BambooMetaTable: return BambooMetaTable( alias=raw_meta_table.get("alias"), fields=[ @@ -118,44 +124,47 @@ def _convert_raw_meta_table_to_typed(raw_meta_table: Mapping[str,Any]) -> Bamboo ], ) - def get_json_schema(self) -> Mapping[str, Any]: - available_tables = map(lambda table: TablesStream._convert_raw_meta_table_to_typed(table), self.config["available_tables"]) + available_tables = map( + lambda table: TablesStream._convert_raw_meta_table_to_typed(table), + self.config["available_tables"], + ) schema = { "$schema": "http://json-schema.org/draft-07/schema#", - "type": [ - "object" - ], - "required": [ - "id", - "employeeId", - "knoetic_table_name" - ], + "type": ["object"], + "required": ["id", "employeeId", "knoetic_table_name"], "properties": { - "id": { - "type": [ "string", "integer" ] - }, - "employeeId": { - "type": [ "string", "integer" ] - }, - "knoetic_table_name": { - "type": [ "string"] - } - } + "id": {"type": ["string", "integer"]}, + "employeeId": {"type": ["string", "integer"]}, + "knoetic_table_name": {"type": ["string"]}, + }, } + # As per https://documentation.bamboohr.com/docs/field-types + default_field_schema = {"type": ["string", "null"]} + currency_field_schema = { + "type": ["object", "null"], + "properties": { + "value": {"type": ["string"]}, + "currency": {"type": ["string"]}, + }, + } for table in available_tables: for field in table.fields: - schema["properties"][field.alias] = { - "type": [ "string", "null", "object" ] - } + field_schema = ( + currency_field_schema + if field.type == "currency" + else default_field_schema + ) + field_schema = get_json_schema_for_field_type(field) + schema["properties"][field.alias] = field_schema return schema def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - schema = self.get_json_schema() - print(f"The schema is {schema}") + # schema = self.get_json_schema() + # print(f"The schema is {schema}") def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # Each table has an 'alias' field that we use to grab @@ -179,47 +188,42 @@ def parse_response( try: # This will raise an exception if the response is not 2xx response.raise_for_status() + # If we're here, no issue. - new_record = (dict(record, **{"knoetic_table_name": table_name}) for record in response.json()) - for record in new_record: - # print("New record: ", record) + + # Adding the field here in parsing because I was having + # a little trouble getting it passed along when I tried + # to do it in read_records. + augmented_records = ( + dict(record, **{"knoetic_table_name": table_name}) + for record in response.json() + ) + + for record in augmented_records: yield record - # yield from new_record except HTTPError as e: - # If it's one of the status codes we're skipping, log a warning. - # Otherwise, raise the exception. + # Check to see if this error code is one we expect. + # If so, raise an error. if not ( self.skip_http_status_codes and e.response.status_code in self.skip_http_status_codes ): raise e + + # Otherwise, just log a warning. self.logger.warning( f"Stream `{self.name}`. An error occurred, details: {e}. Skipping for now." ) yield {} - def read_records( - self, - sync_mode: SyncMode, - cursor_field: List[str] = None, - stream_slice: Mapping[str, Any] = None, - stream_state: Mapping[str, Any] = None, - ) -> Iterable[Mapping[str, Any]]: - # table_name = stream_slice["table"] - for record in super().read_records( - sync_mode, cursor_field, stream_slice, stream_state - ): - # # Augment the record with the table name. - # record["knoetic_table_name"] = table_name - yield record - class CustomReportsStream(BambooHrStream): primary_key = None def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self._schema = None + self._schema = self._generate_json_schema() + print(f"The schema for custom reports is {self._schema}") def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: for raw_fields in chunk_iterable(self.config.get("available_fields"), 100): @@ -236,11 +240,38 @@ def http_method(self) -> str: @staticmethod def _convert_field_to_id(field: BambooMetaField) -> str: """Converts a BambooMetaField to an id for the custom report endpoint.""" + + # The reports/custom endpoint takes a list of fields, each of + # which can be referred to by its alias (if one exists) or + # by its stringified id. if field.alias is None: return str(id) else: return field.alias + def get_json_schema(self) -> Mapping[str, Any]: + return self._schema + + def _generate_json_schema(self) -> Mapping[str, Any]: + available_fields = map( + lambda field: BambooMetaField(**field), + self.config["available_fields"], + ) + + schema = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": ["object"], + "additionalProperties" : True, + "properties": {}, + } + + for field in available_fields: + field_schema = get_json_schema_for_field_type(field.type) + field_key = CustomReportsStream._convert_field_to_id(field) + schema["properties"][field_key] = field_schema + + return schema + def request_body_json( self, stream_slice: Mapping[str, Any] = None, **kwargs ) -> Optional[Mapping]: @@ -256,9 +287,10 @@ def parse_response( class EmployeesDirectoryStream(BambooHrStream): """ - This is not currently in use as per - https://documentation.bamboohr.com/reference/get-employees-directory-1 + This is not currently in use as per + https://documentation.bamboohr.com/reference/get-employees-directory-1 """ + primary_key = "id" def parse_response( diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py index c4028b6f3680..daa73a598eb8 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py @@ -1,11 +1,29 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # -from typing import Iterable, Iterator, TypeVar, Tuple +from typing import Iterable, Iterator, TypeVar, Tuple, Mapping, Any import itertools T = TypeVar('T') +def get_json_schema_for_field_type(field_type: str) -> Mapping[str, Any]: + """ + Returns the JSON schema for the given BambooHR field type. + """ + # As per https://documentation.bamboohr.com/docs/field-types + default_field_schema = {"type": ["string", "null"]} + if field_type == "currency": + currency_field_schema = { + "type": ["object", "null"], + "properties": { + "value": {"type": ["string"]}, + "currency": {"type": ["string"]}, + }, + } + return currency_field_schema + else: + return default_field_schema + def chunk_iterable(iterable: Iterable[T], chunk_size: int) -> Iterator[Tuple[T, ...]]: """ Generates chunks of the given iterable with the specified size. From bf8f710ab4e186574664b907dba12c274048de80 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Thu, 21 Mar 2024 15:57:43 -0400 Subject: [PATCH 18/21] More tweaks. --- .../schemas/custom_reports_stream.json | 240 +----------------- .../schemas/tables_stream.json | 12 +- .../source_bamboo_hr/source.py | 176 +++++++------ 3 files changed, 115 insertions(+), 313 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json index 6d2085239b26..ec6dc1e33135 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/custom_reports_stream.json @@ -4,245 +4,11 @@ "additionalProperties": true, "required": [], "properties": { - "acaStatus": { - "type": ["null", "string"] - }, - "acaStatusCategory": { - "type": ["null", "string"] - }, - "address1": { - "type": ["null", "string"] - }, - "address2": { - "type": ["null", "string"] - }, - "age": { - "type": ["null", "string"] - }, - "bestEmail": { - "type": ["null", "string"] - }, - "birthday": { - "type": ["null", "string"] - }, - "bonusAmount": { - "type": ["null", "string"] - }, - "bonusComment": { - "type": ["null", "string"] - }, - "bonusDate": { - "type": ["null", "string"] - }, - "bonusReason": { - "type": ["null", "string"] - }, - "city": { - "type": ["null", "string"] - }, - "commissionAmount": { - "type": ["null", "string"] - }, - "commissionComment": { - "type": ["null", "string"] - }, - "commissionDate": { - "type": ["null", "string"] - }, - "commisionDate": { - "type": ["null", "string"] - }, - "country": { - "type": ["null", "string"] - }, - "createdByUserId": { - "type": ["null", "string"] - }, - "dateOfBirth": { - "type": ["null", "string"] - }, - "department": { - "type": ["null", "string"] - }, - "division": { - "type": ["null", "string"] - }, - "eeo": { - "type": ["null", "string"] - }, - "employeeNumber": { - "type": ["null", "string"] - }, - "employmentHistoryStatus": { - "type": ["null", "string"] - }, - "ethnicity": { - "type": ["null", "string"] - }, - "exempt": { - "type": ["null", "string"] - }, - "firstName": { - "type": ["null", "string"] - }, - "flsaCode": { - "type": ["null", "string"] - }, - "fullName1": { - "type": ["null", "string"] - }, - "fullName2": { - "type": ["null", "string"] - }, - "fullName3": { - "type": ["null", "string"] - }, - "fullName4": { - "type": ["null", "string"] - }, - "fullName5": { - "type": ["null", "string"] - }, - "displayName": { - "type": ["null", "string"] - }, - "gender": { - "type": ["null", "string"] - }, - "hireDate": { - "type": ["null", "string"] - }, - "originalHireDate": { - "type": ["null", "string"] - }, - "homeEmail": { - "type": ["null", "string"] - }, - "homePhone": { - "type": ["null", "string"] - }, "id": { - "type": ["null", "string"] - }, - "isPhotoUploaded": { - "type": ["null", "string"] - }, - "jobTitle": { - "type": ["null", "string"] - }, - "lastChanged": { - "type": ["null", "string"] - }, - "lastName": { - "type": ["null", "string"] - }, - "location": { - "type": ["null", "string"] - }, - "maritalStatus": { - "type": ["null", "string"] - }, - "middleName": { - "type": ["null", "string"] - }, - "mobilePhone": { - "type": ["null", "string"] - }, - "nationalId": { - "type": ["null", "string"] - }, - "nationality": { - "type": ["null", "string"] - }, - "nin": { - "type": ["null", "string"] - }, - "payChangeReason": { - "type": ["null", "string"] - }, - "payGroup": { - "type": ["null", "string"] - }, - "payGroupId": { - "type": ["null", "string"] - }, - "payRate": { - "type": ["null", "string"] - }, - "payRateEffectiveDate": { - "type": ["null", "string"] - }, - "payType": { - "type": ["null", "string"] - }, - "paidPer": { - "type": ["null", "string"] - }, - "paySchedule": { - "type": ["null", "string"] - }, - "payScheduleId": { - "type": ["null", "string"] - }, - "payFrequency": { - "type": ["null", "string"] - }, - "includeInPayroll": { - "type": ["null", "string"] - }, - "timeTrackingEnabled": { - "type": ["null", "string"] - }, - "preferredName": { - "type": ["null", "string"] - }, - "ssn": { - "type": ["null", "string"] - }, - "sin": { - "type": ["null", "string"] - }, - "standardHoursPerWeek": { - "type": ["null", "string"] - }, - "state": { - "type": ["null", "string"] - }, - "stateCode": { - "type": ["null", "string"] - }, - "status": { - "type": ["null", "string"] - }, - "supervisor": { - "type": ["null", "string"] - }, - "supervisorId": { - "type": ["null", "string"] - }, - "supervisorEId": { - "type": ["null", "string"] - }, - "supervisorEmail": { - "type": ["null", "string"] - }, - "terminationDate": { - "type": ["null", "string"] - }, - "workEmail": { - "type": ["null", "string"] - }, - "workPhone": { - "type": ["null", "string"] - }, - "workPhonePlusExtension": { - "type": ["null", "string"] - }, - "workPhoneExtension": { - "type": ["null", "string"] + "type": [ "string" ] }, - "zipcode": { - "type": ["null", "string"] + "data": { + "type": [ "object" ] } } } diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json index 514be2d2f757..e6717d2febe4 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/schemas/tables_stream.json @@ -3,23 +3,27 @@ "type": [ "object" ], - "additionalProperties": { "type" : "string" }, "required": [ "id", "employeeId", - "knoetic_table_name" + "table_name", + "data" ], "properties": { "id": { "type": [ "string", "integer" ] }, - "employeeId": { + "employee_id": { "type": [ "string", "integer" ] }, - "knoetic_table_name": { + "table_name": { "type": [ "string"] + }, + "data": { + "type": [ "object" ], + "additionalProperties": true } } } \ No newline at end of file diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 8f67c4ed95f3..d50b1753f3fe 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -21,7 +21,6 @@ ) from .utils import ( chunk_iterable, - get_json_schema_for_field_type, ) @@ -124,42 +123,66 @@ def _convert_raw_meta_table_to_typed( ], ) - def get_json_schema(self) -> Mapping[str, Any]: - available_tables = map( - lambda table: TablesStream._convert_raw_meta_table_to_typed(table), - self.config["available_tables"], - ) - schema = { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": ["object"], - "required": ["id", "employeeId", "knoetic_table_name"], - "properties": { - "id": {"type": ["string", "integer"]}, - "employeeId": {"type": ["string", "integer"]}, - "knoetic_table_name": {"type": ["string"]}, - }, - } - - # As per https://documentation.bamboohr.com/docs/field-types - default_field_schema = {"type": ["string", "null"]} - currency_field_schema = { - "type": ["object", "null"], - "properties": { - "value": {"type": ["string"]}, - "currency": {"type": ["string"]}, - }, - } - for table in available_tables: - for field in table.fields: - field_schema = ( - currency_field_schema - if field.type == "currency" - else default_field_schema - ) - field_schema = get_json_schema_for_field_type(field) - schema["properties"][field.alias] = field_schema - - return schema + def read_records( + self, + sync_mode: SyncMode, + cursor_field: List[str] = None, + stream_slice: Mapping[str, Any] = None, + stream_state: Mapping[str, Any] = None, + ) -> Iterable[Mapping[str, Any]]: + table_name = stream_slice["table"] + for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): + # Augment the record with the table name. + if record == {}: + continue + else: + new_record = { + "id" : record["id"], + "employee_id" : record["employeeId"], + "table_name" : table_name, + "data" : record, + } + # record["knoetic_table_name"] = table_name + # record[""] + # yield record + yield new_record + + # def get_json_schema(self) -> Mapping[str, Any]: + # available_tables = map( + # lambda table: TablesStream._convert_raw_meta_table_to_typed(table), + # self.config["available_tables"], + # ) + # schema = { + # "$schema": "http://json-schema.org/draft-07/schema#", + # "type": ["object"], + # "required": ["id", "employeeId", "knoetic_table_name"], + # "properties": { + # "id": {"type": ["string", "integer"]}, + # "employeeId": {"type": ["string", "integer"]}, + # "knoetic_table_name": {"type": ["string"]}, + # }, + # } + + # # As per https://documentation.bamboohr.com/docs/field-types + # default_field_schema = {"type": ["string", "null"]} + # currency_field_schema = { + # "type": ["object", "null"], + # "properties": { + # "value": {"type": ["string"]}, + # "currency": {"type": ["string"]}, + # }, + # } + # for table in available_tables: + # for field in table.fields: + # field_schema = ( + # currency_field_schema + # if field.type == "currency" + # else default_field_schema + # ) + # field_schema = get_json_schema_for_field_type(field) + # schema["properties"][field.alias] = field_schema + + # return schema def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -183,24 +206,12 @@ def parse_response( stream_state: Mapping[str, Any] = None, stream_slice: Mapping[str, Any] = None, **kwargs, - ) -> Iterable[Mapping]: - table_name = stream_slice["table"] + ) -> Iterable[Mapping[str, Any]]: + # table_name = stream_slice["table"] try: # This will raise an exception if the response is not 2xx response.raise_for_status() - - # If we're here, no issue. - - # Adding the field here in parsing because I was having - # a little trouble getting it passed along when I tried - # to do it in read_records. - augmented_records = ( - dict(record, **{"knoetic_table_name": table_name}) - for record in response.json() - ) - - for record in augmented_records: - yield record + yield from response.json() except HTTPError as e: # Check to see if this error code is one we expect. # If so, raise an error. @@ -222,8 +233,8 @@ class CustomReportsStream(BambooHrStream): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self._schema = self._generate_json_schema() - print(f"The schema for custom reports is {self._schema}") + # self._schema = self._generate_json_schema() + # print(f"The schema for custom reports is {self._schema}") def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: for raw_fields in chunk_iterable(self.config.get("available_fields"), 100): @@ -233,6 +244,27 @@ def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: def path(self, **kwargs) -> str: return "reports/custom" + def read_records( + self, + sync_mode: SyncMode, + cursor_field: List[str] = None, + stream_slice: Mapping[str, Any] = None, + stream_state: Mapping[str, Any] = None, + ) -> Iterable[Mapping[str, Any]]: + for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): + # Augment the record with the table name. + if record == {}: + continue + else: + new_record = { + "id" : record["id"], + "data" : record, + } + # record["knoetic_table_name"] = table_name + # record[""] + # yield record + yield new_record + @property def http_method(self) -> str: return "POST" @@ -249,28 +281,28 @@ def _convert_field_to_id(field: BambooMetaField) -> str: else: return field.alias - def get_json_schema(self) -> Mapping[str, Any]: - return self._schema + # def get_json_schema(self) -> Mapping[str, Any]: + # return self._schema - def _generate_json_schema(self) -> Mapping[str, Any]: - available_fields = map( - lambda field: BambooMetaField(**field), - self.config["available_fields"], - ) + # def _generate_json_schema(self) -> Mapping[str, Any]: + # available_fields = map( + # lambda field: BambooMetaField(**field), + # self.config["available_fields"], + # ) - schema = { - "$schema": "http://json-schema.org/draft-07/schema#", - "type": ["object"], - "additionalProperties" : True, - "properties": {}, - } + # schema = { + # "$schema": "http://json-schema.org/draft-07/schema#", + # "type": ["object"], + # "additionalProperties" : True, + # "properties": {}, + # } - for field in available_fields: - field_schema = get_json_schema_for_field_type(field.type) - field_key = CustomReportsStream._convert_field_to_id(field) - schema["properties"][field_key] = field_schema + # for field in available_fields: + # field_schema = get_json_schema_for_field_type(field.type) + # field_key = CustomReportsStream._convert_field_to_id(field) + # schema["properties"][field_key] = field_schema - return schema + # return schema def request_body_json( self, stream_slice: Mapping[str, Any] = None, **kwargs From 56e7fcb981b10b4522dff82bf34daa37e88fdc9f Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 25 Mar 2024 16:22:37 -0400 Subject: [PATCH 19/21] Adding default fields, fixing some type annotations. --- .../source_bamboo_hr/source.py | 276 ++++++++++-------- .../source_bamboo_hr/utils.py | 2 +- 2 files changed, 157 insertions(+), 121 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index d50b1753f3fe..166933d7e667 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -6,7 +6,7 @@ import base64 import logging from abc import ABC -from typing import Any, Iterable, List, Mapping, Optional, Tuple, NamedTuple, Union +from typing import Any, Iterable, List, Mapping, Optional, Tuple, NamedTuple, Union, Dict import requests from requests.exceptions import HTTPError @@ -38,8 +38,8 @@ def url_base(self) -> str: def request_headers( self, stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any] = None, - next_page_token: Mapping[str, Any] = None, + stream_slice: Mapping[str, Any] | None = None, + next_page_token: Mapping[str, Any] | None = None, ) -> Mapping[str, Any]: return {"Accept": "application/json"} @@ -113,87 +113,56 @@ class TablesStream(BambooHrStream): ] @staticmethod - def _convert_raw_meta_table_to_typed( + def convert_raw_meta_table_to_typed( raw_meta_table: Mapping[str, Any] ) -> BambooMetaTable: + """ + Converts a raw meta table to a typed BambooMetaTable. + """ return BambooMetaTable( - alias=raw_meta_table.get("alias"), + alias=raw_meta_table.get("alias",""), fields=[ - BambooMetaTableField(**field) for field in raw_meta_table.get("fields") + BambooMetaTableField(**field) for field in raw_meta_table.get("fields",[]) ], ) def read_records( self, sync_mode: SyncMode, - cursor_field: List[str] = None, - stream_slice: Mapping[str, Any] = None, - stream_state: Mapping[str, Any] = None, + cursor_field: List[str] | None = None, + stream_slice: Mapping[str, Any] | None = None, + stream_state: Mapping[str, Any] | None = None, ) -> Iterable[Mapping[str, Any]]: - table_name = stream_slice["table"] - for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): - # Augment the record with the table name. - if record == {}: - continue - else: - new_record = { - "id" : record["id"], - "employee_id" : record["employeeId"], - "table_name" : table_name, - "data" : record, - } - # record["knoetic_table_name"] = table_name - # record[""] - # yield record - yield new_record - - # def get_json_schema(self) -> Mapping[str, Any]: - # available_tables = map( - # lambda table: TablesStream._convert_raw_meta_table_to_typed(table), - # self.config["available_tables"], - # ) - # schema = { - # "$schema": "http://json-schema.org/draft-07/schema#", - # "type": ["object"], - # "required": ["id", "employeeId", "knoetic_table_name"], - # "properties": { - # "id": {"type": ["string", "integer"]}, - # "employeeId": {"type": ["string", "integer"]}, - # "knoetic_table_name": {"type": ["string"]}, - # }, - # } - - # # As per https://documentation.bamboohr.com/docs/field-types - # default_field_schema = {"type": ["string", "null"]} - # currency_field_schema = { - # "type": ["object", "null"], - # "properties": { - # "value": {"type": ["string"]}, - # "currency": {"type": ["string"]}, - # }, - # } - # for table in available_tables: - # for field in table.fields: - # field_schema = ( - # currency_field_schema - # if field.type == "currency" - # else default_field_schema - # ) - # field_schema = get_json_schema_for_field_type(field) - # schema["properties"][field.alias] = field_schema - - # return schema - - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - # schema = self.get_json_schema() - # print(f"The schema is {schema}") + if stream_slice is not None: + table_name = stream_slice["table"] + for record in super().read_records( + sync_mode, cursor_field, stream_slice, stream_state + ): + # If the record is empty, skip it. + # This may occur if parse_response yields an empty record, + # which can happen if the response is not 2xx. + if record == {}: + continue + else: + # Augment the record for easier lookup/better + # performance in the destination. + new_record = { + "id": record["id"], + "employee_id": record["employeeId"], + "table_name": table_name, + "data": record, + } + yield new_record + else: + self.logger.error("Stream slice is None in TablesStream.") + return iter([]) def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # Each table has an 'alias' field that we use to grab # all values. See `path` method for how it's used in the URL. - for meta_table in self.config.get("available_tables"): - table = meta_table.get("alias") + available_tables : List[BambooMetaTable] = self.config.get("available_tables", []) + for meta_table in available_tables: # Add default value of empty list + table = meta_table.alias yield {"table": table} def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: @@ -203,11 +172,10 @@ def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: def parse_response( self, response: requests.Response, - stream_state: Mapping[str, Any] = None, - stream_slice: Mapping[str, Any] = None, + stream_state: Mapping[str, Any] | None = None, + stream_slice: Mapping[str, Any] | None = None, **kwargs, ) -> Iterable[Mapping[str, Any]]: - # table_name = stream_slice["table"] try: # This will raise an exception if the response is not 2xx response.raise_for_status() @@ -220,7 +188,7 @@ def parse_response( and e.response.status_code in self.skip_http_status_codes ): raise e - + # Otherwise, just log a warning. self.logger.warning( f"Stream `{self.name}`. An error occurred, details: {e}. Skipping for now." @@ -233,12 +201,10 @@ class CustomReportsStream(BambooHrStream): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - # self._schema = self._generate_json_schema() - # print(f"The schema for custom reports is {self._schema}") def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: - for raw_fields in chunk_iterable(self.config.get("available_fields"), 100): - fields = map(lambda field: BambooMetaField(**field), raw_fields) + available_fields : List[str] = self.config.get("available_fields", []) + for fields in chunk_iterable(available_fields, 100): yield {"fields": fields} def path(self, **kwargs) -> str: @@ -247,22 +213,21 @@ def path(self, **kwargs) -> str: def read_records( self, sync_mode: SyncMode, - cursor_field: List[str] = None, - stream_slice: Mapping[str, Any] = None, - stream_state: Mapping[str, Any] = None, + cursor_field: List[str] | None = None, + stream_slice: Mapping[str, Any] | None = None, + stream_state: Mapping[str, Any] | None = None, ) -> Iterable[Mapping[str, Any]]: - for record in super().read_records(sync_mode, cursor_field, stream_slice, stream_state): + for record in super().read_records( + sync_mode, cursor_field, stream_slice, stream_state + ): # Augment the record with the table name. if record == {}: continue else: new_record = { - "id" : record["id"], - "data" : record, + "id": record["id"], + "data": record, } - # record["knoetic_table_name"] = table_name - # record[""] - # yield record yield new_record @property @@ -270,7 +235,94 @@ def http_method(self) -> str: return "POST" @staticmethod - def _convert_field_to_id(field: BambooMetaField) -> str: + def get_default_bamboo_fields() -> List[str]: + # As per https://documentation.bamboohr.com/docs/list-of-field-names + return [ + "acaStatus" + "acaStatusCategory" + "address1" + "address2" + "age" + "bestEmail" + "birthday" + "bonusAmount" + "bonusComment" + "bonusDate" + "bonusReason" + "city" + "commissionAmount" + "commissionComment" + "commissionDate" + "commisionDate" + "country" + "createdByUserId" + "dateOfBirth" + "department" + "division" + "eeo" + "employeeNumber" + "employmentHistoryStatus" + "ethnicity" + "exempt" + "firstName" + "flsaCode" + "fullName1" + "fullName2" + "fullName3" + "fullName4" + "fullName5" + "displayName" + "gender" + "hireDate" + "originalHireDate" + "homeEmail" + "homePhone" + "id" + "isPhotoUploaded" + "jobTitle" + "lastChanged" + "lastName" + "location" + "maritalStatus" + "middleName" + "mobilePhone" + "nationalId" + "nationality" + "nin" + "payChangeReason" + "payGroup" + "payGroupId" + "payRate" + "payRateEffectiveDate" + "payType" + "paidPer" + "paySchedule" + "payScheduleId" + "payFrequency" + "includeInPayroll" + "timeTrackingEnabled" + "preferredName" + # This is supported, but we don't want it. + # "ssn" + "sin" + "standardHoursPerWeek" + "state" + "stateCode" + "status" + "supervisor" + "supervisorId" + "supervisorEId" + "supervisorEmail" + "terminationDate" + "workEmail" + "workPhone" + "workPhonePlusExtension" + "workPhoneExtension" + "zipcode" + ] + + @staticmethod + def convert_field_to_id(field: BambooMetaField) -> str: """Converts a BambooMetaField to an id for the custom report endpoint.""" # The reports/custom endpoint takes a list of fields, each of @@ -281,35 +333,12 @@ def _convert_field_to_id(field: BambooMetaField) -> str: else: return field.alias - # def get_json_schema(self) -> Mapping[str, Any]: - # return self._schema - - # def _generate_json_schema(self) -> Mapping[str, Any]: - # available_fields = map( - # lambda field: BambooMetaField(**field), - # self.config["available_fields"], - # ) - - # schema = { - # "$schema": "http://json-schema.org/draft-07/schema#", - # "type": ["object"], - # "additionalProperties" : True, - # "properties": {}, - # } - - # for field in available_fields: - # field_schema = get_json_schema_for_field_type(field.type) - # field_key = CustomReportsStream._convert_field_to_id(field) - # schema["properties"][field_key] = field_schema - - # return schema def request_body_json( - self, stream_slice: Mapping[str, Any] = None, **kwargs + self, stream_slice: Mapping[str, Any] | None = None, **kwargs ) -> Optional[Mapping]: - fields = stream_slice["fields"] - field_ids = tuple(map(CustomReportsStream._convert_field_to_id, fields)) - return {"title": "Airbyte", "fields": field_ids} + fields = stream_slice["fields"] if stream_slice is not None else [] + return {"title": "Airbyte", "fields": fields} def parse_response( self, response: requests.Response, **kwargs @@ -349,7 +378,7 @@ def _get_authenticator(api_key): ) @staticmethod - def add_authenticator_to_config(config: Mapping[str, Any]) -> Mapping[str, Any]: + def add_authenticator_to_config(config: Dict[str, Any]) -> Dict[str, Any]: """ Adds an authenticator entry to the config and returns the config. """ @@ -357,7 +386,7 @@ def add_authenticator_to_config(config: Mapping[str, Any]) -> Mapping[str, Any]: return config def check_connection( - self, logger: logging.Logger, config: Mapping[str, Any] + self, logger: logging.Logger, config: Dict[str, Any] ) -> Tuple[bool, Optional[Any]]: """ Verifies the config and attempts to fetch the fields from the meta/fields endpoint. @@ -375,19 +404,26 @@ def check_connection( except StopIteration: return False, AvailableFieldsAccessDeniedError() - def streams(self, config: Mapping[str, Any]) -> List[Stream]: + def streams(self, config: Dict[str, Any]) -> List[Stream]: config = SourceBambooHr.add_authenticator_to_config(config) # Grabbing these early on and sending them through the config seemed # simpler than passing them along as parent streams. - available_fields = list( + available_fields : List[str]= list(map( + lambda field: CustomReportsStream.convert_field_to_id(BambooMetaField(**field)), MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh) - ) + )) + CustomReportsStream.get_default_bamboo_fields() + available_tables = list( - MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh) + map(lambda meta_table: TablesStream.convert_raw_meta_table_to_typed(meta_table), + MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh)) ) - print("Current version: 4") + """ + 1. Convert fields in to a list of strings. + 2. Create a function that returns a list of strings. + 3. Just pass that all along. + """ config["available_fields"] = available_fields config["available_tables"] = available_tables diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py index daa73a598eb8..3b8ee20d7fb3 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/utils.py @@ -46,4 +46,4 @@ def chunk_iterable(iterable: Iterable[T], chunk_size: int) -> Iterator[Tuple[T, # If the chunk is empty, stop the loop break - yield chunk \ No newline at end of file + yield chunk From ecfed3e1c6175f0ed73d22c71836daa23b382278 Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 25 Mar 2024 16:57:54 -0400 Subject: [PATCH 20/21] More type fixes and tweaks. --- .../connectors/source-bamboo-hr/Dockerfile | 2 +- .../source_bamboo_hr/source.py | 147 +++++++++++------- 2 files changed, 96 insertions(+), 53 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/Dockerfile b/airbyte-integrations/connectors/source-bamboo-hr/Dockerfile index 238106b2127f..5cb1ecec5872 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/Dockerfile +++ b/airbyte-integrations/connectors/source-bamboo-hr/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.10-slim # Bash is installed for more convenient debugging. RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/* diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 166933d7e667..6758fcd7f592 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -6,7 +6,18 @@ import base64 import logging from abc import ABC -from typing import Any, Iterable, List, Mapping, Optional, Tuple, NamedTuple, Union, Dict +from typing import ( + Any, + Iterable, + List, + Mapping, + Optional, + Tuple, + NamedTuple, + Union, + Dict, +) +from typing import cast import requests from requests.exceptions import HTTPError @@ -35,11 +46,11 @@ def url_base(self) -> str: f"https://api.bamboohr.com/api/gateway.php/{self.config['subdomain']}/v1/" ) - def request_headers( + def request_headers( # type: ignore self, stream_state: Mapping[str, Any], - stream_slice: Mapping[str, Any] | None = None, - next_page_token: Mapping[str, Any] | None = None, + stream_slice: Optional[Mapping[str, Any]] = None, + next_page_token: Optional[Mapping[str, Any]] = None, ) -> Mapping[str, Any]: return {"Accept": "application/json"} @@ -53,14 +64,16 @@ def next_page_token( class MetaTablesStream(BambooHrStream): - primary_key = None + primary_key = None # type: ignore - def path(self, **kwargs) -> str: + def path(self, **kwargs) -> str: # type: ignore return "meta/tables" def parse_response( - self, response: requests.Response, **kwargs - ) -> Iterable[Mapping]: + self, + response: requests.Response, + **kwarg, # type: ignore + ) -> Iterable[Mapping[str, Any]]: yield from response.json() @@ -76,14 +89,16 @@ class BambooMetaField(NamedTuple): class MetaFieldsStream(BambooHrStream): - primary_key = None + primary_key = None # type: ignore - def path(self, **kwargs) -> str: + def path(self, **kwargs) -> str: # type: ignore return "meta/fields" def parse_response( - self, response: requests.Response, **kwargs - ) -> Iterable[Mapping]: + self, + response: requests.Response, + **kwargs, # type: ignore + ) -> Iterable[Mapping[str, Any]]: yield from response.json() @@ -106,8 +121,8 @@ class BambooMetaTable(NamedTuple): class TablesStream(BambooHrStream): - primary_key = None - raise_on_http_errors = False + primary_key = None # type: ignore + raise_on_http_errors = False # type: ignore skip_http_status_codes = [ requests.codes.NOT_FOUND, ] @@ -120,9 +135,10 @@ def convert_raw_meta_table_to_typed( Converts a raw meta table to a typed BambooMetaTable. """ return BambooMetaTable( - alias=raw_meta_table.get("alias",""), + alias=raw_meta_table.get("alias", ""), fields=[ - BambooMetaTableField(**field) for field in raw_meta_table.get("fields",[]) + BambooMetaTableField(**field) + for field in raw_meta_table.get("fields", []) ], ) @@ -141,12 +157,14 @@ def read_records( # If the record is empty, skip it. # This may occur if parse_response yields an empty record, # which can happen if the response is not 2xx. - if record == {}: + if record == {} or not isinstance(record,Mapping): + self.logger.warn( + f"Empty record or non-map record encountered in TablesStream. Record: {record}") continue else: # Augment the record for easier lookup/better # performance in the destination. - new_record = { + new_record : Mapping[str,Any] = { "id": record["id"], "employee_id": record["employeeId"], "table_name": table_name, @@ -157,15 +175,17 @@ def read_records( self.logger.error("Stream slice is None in TablesStream.") return iter([]) - def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # type: ignore # Each table has an 'alias' field that we use to grab # all values. See `path` method for how it's used in the URL. - available_tables : List[BambooMetaTable] = self.config.get("available_tables", []) + available_tables: List[BambooMetaTable] = self.config.get( + "available_tables", [] + ) for meta_table in available_tables: # Add default value of empty list table = meta_table.alias yield {"table": table} - def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: + def path(self, stream_slice: Mapping[str, Any], **kwargs) -> str: # type: ignore target_table = stream_slice["table"] return f"employees/all/tables/{target_table}" @@ -174,7 +194,7 @@ def parse_response( response: requests.Response, stream_state: Mapping[str, Any] | None = None, stream_slice: Mapping[str, Any] | None = None, - **kwargs, + **kwargs, # type: ignore ) -> Iterable[Mapping[str, Any]]: try: # This will raise an exception if the response is not 2xx @@ -197,17 +217,17 @@ def parse_response( class CustomReportsStream(BambooHrStream): - primary_key = None + primary_key = None # type: ignore - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) + def __init__(self, *args, **kwargs): # type: ignore + super().__init__(*args, **kwargs) # type: ignore - def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: - available_fields : List[str] = self.config.get("available_fields", []) + def stream_slices(self, **kwargs) -> Iterable[Optional[Mapping[str, Any]]]: # type: ignore + available_fields: List[str] = self.config.get("available_fields", []) for fields in chunk_iterable(available_fields, 100): yield {"fields": fields} - def path(self, **kwargs) -> str: + def path(self, **kwargs) -> str: # type: ignore return "reports/custom" def read_records( @@ -221,7 +241,8 @@ def read_records( sync_mode, cursor_field, stream_slice, stream_state ): # Augment the record with the table name. - if record == {}: + if record == {} or not isinstance(record,Mapping): + self.logger.warn("Empty record or non-map record encountered in CustomReportsStream.") continue else: new_record = { @@ -333,16 +354,19 @@ def convert_field_to_id(field: BambooMetaField) -> str: else: return field.alias - - def request_body_json( - self, stream_slice: Mapping[str, Any] | None = None, **kwargs - ) -> Optional[Mapping]: - fields = stream_slice["fields"] if stream_slice is not None else [] + def request_body_json( # type: ignore + self, + stream_slice: Mapping[str, Any] | None = None, + **kwargs, # type: ignore + ) -> Optional[Mapping[str, Any]]: + fields: List[str] = stream_slice["fields"] if stream_slice is not None else [] return {"title": "Airbyte", "fields": fields} def parse_response( - self, response: requests.Response, **kwargs - ) -> Iterable[Mapping]: + self, + response: requests.Response, + **kwargs, # type: ignore + ) -> Iterable[Mapping[str, Any]]: yield from response.json()["employees"] @@ -352,20 +376,22 @@ class EmployeesDirectoryStream(BambooHrStream): https://documentation.bamboohr.com/reference/get-employees-directory-1 """ - primary_key = "id" + primary_key = "id" # type: ignore def parse_response( - self, response: requests.Response, **kwargs - ) -> Iterable[Mapping]: + self, + response: requests.Response, + **kwargs, # type: ignore + ) -> Iterable[Mapping[str, Any]]: yield from response.json()["employees"] - def path(self, **kwargs) -> str: + def path(self, **kwargs) -> str: # type: ignore return "employees/directory" class SourceBambooHr(AbstractSource): @staticmethod - def _get_authenticator(api_key): + def _get_authenticator(api_key: str): """ Returns a TokenAuthenticator. @@ -386,12 +412,14 @@ def add_authenticator_to_config(config: Dict[str, Any]) -> Dict[str, Any]: return config def check_connection( - self, logger: logging.Logger, config: Dict[str, Any] + self, logger: logging.Logger, config: Mapping[str, Any] ) -> Tuple[bool, Optional[Any]]: """ Verifies the config and attempts to fetch the fields from the meta/fields endpoint. """ - config = SourceBambooHr.add_authenticator_to_config(config) + config = SourceBambooHr.add_authenticator_to_config( + cast(Dict[str, Any], config) + ) available_fields = MetaFieldsStream(config).read_records( sync_mode=SyncMode.full_refresh @@ -399,24 +427,39 @@ def check_connection( try: # Check to see that we get some fields back. - next(available_fields) + next(available_fields) # type: ignore return True, None except StopIteration: return False, AvailableFieldsAccessDeniedError() - def streams(self, config: Dict[str, Any]) -> List[Stream]: - config = SourceBambooHr.add_authenticator_to_config(config) + def streams(self, config: Mapping[str, Any]) -> List[Stream]: + config = SourceBambooHr.add_authenticator_to_config( + cast(Dict[str, Any], config) + ) # Grabbing these early on and sending them through the config seemed # simpler than passing them along as parent streams. - available_fields : List[str]= list(map( - lambda field: CustomReportsStream.convert_field_to_id(BambooMetaField(**field)), - MetaFieldsStream(config).read_records(sync_mode=SyncMode.full_refresh) - )) + CustomReportsStream.get_default_bamboo_fields() + available_fields: List[str] = ( + list( + map( + lambda field: CustomReportsStream.convert_field_to_id( + BambooMetaField(**field) # type: ignore + ), + MetaFieldsStream(config).read_records( + sync_mode=SyncMode.full_refresh + ), + ) + ) + + CustomReportsStream.get_default_bamboo_fields() + ) available_tables = list( - map(lambda meta_table: TablesStream.convert_raw_meta_table_to_typed(meta_table), - MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh)) + map( + lambda meta_table: TablesStream.convert_raw_meta_table_to_typed( + meta_table # type: ignore + ), + MetaTablesStream(config).read_records(sync_mode=SyncMode.full_refresh), + ) ) """ From be13c53767762cf1ce5d7f74d7cb3b883c09aacd Mon Sep 17 00:00:00 2001 From: Nat Elkins Date: Mon, 25 Mar 2024 17:26:46 -0400 Subject: [PATCH 21/21] Removing acaStatus (deprecated) --- .../integration_tests/configured_catalog.json | 6 ------ .../source-bamboo-hr/sample_files/configured_catalog.json | 6 ------ .../connectors/source-bamboo-hr/source_bamboo_hr/source.py | 1 - 3 files changed, 13 deletions(-) diff --git a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json index 1fdde61fe203..b5f8e95d604c 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/integration_tests/configured_catalog.json @@ -68,12 +68,6 @@ "additionalProperties": true, "required": [], "properties": { - "acaStatus": { - "type": [ - "null", - "string" - ] - }, "acaStatusCategory": { "type": [ "null", diff --git a/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json b/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json index 827089f4d23d..72daf969d2bc 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json +++ b/airbyte-integrations/connectors/source-bamboo-hr/sample_files/configured_catalog.json @@ -67,12 +67,6 @@ ], "required": [], "properties": { - "acaStatus": { - "type": [ - "null", - "string" - ] - }, "acaStatusCategory": { "type": [ "null", diff --git a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py index 6758fcd7f592..94335dd39299 100644 --- a/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py +++ b/airbyte-integrations/connectors/source-bamboo-hr/source_bamboo_hr/source.py @@ -259,7 +259,6 @@ def http_method(self) -> str: def get_default_bamboo_fields() -> List[str]: # As per https://documentation.bamboohr.com/docs/list-of-field-names return [ - "acaStatus" "acaStatusCategory" "address1" "address2"